/* ============================================================
   Custom Properties
   ============================================================ */
:root {
  --color-bg:           #faf8f5;
  --color-bg-alt:       #f0ebe3;
  --color-bg-dark:      #2e2520;
  --color-text:         #3d3530;
  --color-text-muted:   #8a7e78;
  --color-accent:       #8b6f5e;
  --color-accent-light: #c4a882;
  --color-btn:          #6b5344;
  --color-btn-hover:    #4a3728;
  --color-divider:      #ddd5cc;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Source Sans 3', system-ui, sans-serif;

  --max-width: 860px;
  --section-pad: 5rem 1.5rem;
  --header-h: 60px;
}

/* ============================================================
   Reset & Base
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: var(--color-accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ============================================================
   Typography helpers
   ============================================================ */
h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-text);
}

h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ============================================================
   Layout
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================================
   Header
   ============================================================ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(250, 248, 245, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--color-divider);
  display: flex;
  align-items: center;
}

#site-header .container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#site-header .site-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text);
  text-decoration: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.6rem 1.6rem;
  background: var(--color-btn);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn:hover {
  background: var(--color-btn-hover);
  text-decoration: none;
  color: #fff;
}

/* ============================================================
   Hero
   ============================================================ */
#hero {
  position: relative;
  height: calc(100vh - var(--header-h));
  height: calc(100svh - var(--header-h));
  min-height: 480px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

#hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(46, 37, 32, 0.72) 0%,
    rgba(46, 37, 32, 0.15) 60%,
    transparent 100%
  );
}

#hero-text {
  position: relative;
  z-index: 1;
  padding: 3rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

#hero-text p {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 2.8rem);
  font-weight: 400;
  color: #faf8f5;
  line-height: 1.25;
  margin: 0;
  letter-spacing: 0.01em;
}

/* ============================================================
   About
   ============================================================ */
#about {
  padding: var(--section-pad);
  background: var(--color-bg);
}

#about .inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

#about .label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

#about h2 {
  margin-bottom: 1.75rem;
}

#about .note {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  border-left: 2px solid var(--color-accent-light);
  background: var(--color-bg-alt);
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* ============================================================
   Services
   ============================================================ */
#services {
  padding: var(--section-pad);
  background: var(--color-bg-alt);
}

#services .inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

#services .label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

#services h2 {
  margin-bottom: 2rem;
}

#services ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 2rem;
}

#services ul li {
  font-size: 0.97rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--color-divider);
  color: var(--color-text);
}

/* ============================================================
   Rates
   ============================================================ */
#rates {
  padding: var(--section-pad);
  background: var(--color-bg);
}

#rates .inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

#rates .label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

#rates h2 {
  margin-bottom: 2rem;
}

.rates-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.rate-card {
  padding: 2rem;
  background: var(--color-bg-alt);
  border-top: 2px solid var(--color-accent-light);
}

.rate-card h3 {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.rate-card .price {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  color: var(--color-text);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.rate-card .duration {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ============================================================
   Book
   ============================================================ */
#book {
  padding: var(--section-pad);
  background: var(--color-bg-dark);
  color: #faf8f5;
  text-align: center;
}

#book .inner {
  max-width: 600px;
  margin: 0 auto;
}

#book h2 {
  color: #faf8f5;
  margin-bottom: 1rem;
}

#book p {
  color: rgba(250, 248, 245, 0.7);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

#book .contact-methods {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: rgba(250, 248, 245, 0.55);
}

#book .contact-methods span {
  display: block;
}

/* ============================================================
   Footer
   ============================================================ */
#site-footer {
  padding: 1.5rem;
  text-align: center;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-divider);
  background: var(--color-bg);
}

/* ============================================================
   Responsive — mobile-first adjustments
   ============================================================ */
@media (max-width: 640px) {
  :root {
    --section-pad: 3rem 1.25rem;
  }

  #site-header .site-name {
    font-size: 0.82rem;
    letter-spacing: 0.08em;
  }

  #hero-text {
    padding: 2rem 1.25rem;
  }

  #about h2,
  #services h2,
  #rates h2 {
    font-size: 1.7rem;
  }

  #services ul {
    grid-template-columns: 1fr;
  }

  .rates-grid {
    grid-template-columns: 1fr;
  }

  /* Full-width book button on mobile for easier tapping */
  #book .btn {
    display: flex;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
}
