:root {
  --color-bg: #f6f3ec;
  --color-bg-alt: #efeae0;
  --color-cream: #faf8f3;
  --color-moss: #5a6f4e;
  --color-deep-green: #2f3e2c;
  --color-forest: #1f2a1d;
  --color-sage: #8ea183;
  --color-sand: #c9b48a;
  --color-sun: #d8b770;
  --color-text: #2b2f28;
  --color-text-soft: #5d6259;
  --color-text-muted: #8a8e85;
  --color-border: rgba(47, 62, 44, 0.12);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-width: 1320px;
  --radius: 18px;
  --radius-lg: 24px;

  --shadow-sm: 0 4px 20px rgba(31, 42, 29, 0.06);
  --shadow-md: 0 12px 40px rgba(31, 42, 29, 0.08);
  --shadow-lg: 0 24px 60px rgba(31, 42, 29, 0.12);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-text);
  font-weight: 300;
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .3s var(--ease); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

/* Typography */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.15;
  color: var(--color-forest);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.8rem, 6vw, 5.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.15rem; font-family: var(--font-sans); font-weight: 500; letter-spacing: 0.02em; }
em { font-style: italic; color: var(--color-moss); }

p { color: var(--color-text-soft); }

.section { padding: 120px 0; }
.section-label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-moss);
  font-weight: 500;
  display: block;
  margin-bottom: 20px;
}
.section-head { max-width: 720px; margin-bottom: 70px; }
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-moss);
  margin-bottom: 28px;
  font-weight: 500;
}

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: all .4s var(--ease);
  background: transparent;
}
.site-header.scrolled {
  background: rgba(246, 243, 236, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 1px 0 var(--color-border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--color-forest);
}
.logo-mark { color: var(--color-moss); font-size: 1.6rem; }

.nav-desktop {
  display: flex;
  gap: 38px;
}
.nav-desktop a {
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--color-text);
  position: relative;
  padding: 4px 0;
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--color-moss);
  transition: width .3s var(--ease);
}
.nav-desktop a:hover::after,
.nav-desktop a.active::after { width: 100%; }
.nav-desktop a:hover, .nav-desktop a.active { color: var(--color-moss); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 36px; height: 30px;
  flex-direction: column;
  justify-content: space-between;
  padding: 4px 0;
}
.menu-toggle span {
  height: 1.5px;
  background: var(--color-forest);
  border-radius: 2px;
  transition: all .3s var(--ease);
}

.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: 100%; max-width: 420px;
  height: 100vh;
  background: var(--color-cream);
  z-index: 200;
  transform: translateX(100%);
  transition: transform .5s var(--ease);
  padding: 100px 50px 50px;
  box-shadow: -10px 0 40px rgba(0,0,0,0.1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu nav { display: flex; flex-direction: column; gap: 24px; }
.mobile-menu nav a {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--color-forest);
}
.menu-close {
  position: absolute;
  top: 28px; right: 36px;
  background: none;
  border: none;
  font-size: 2.4rem;
  color: var(--color-forest);
  cursor: pointer;
  line-height: 1;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 60px;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all .35s var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--color-deep-green);
  color: var(--color-cream);
}
.btn-primary:hover {
  background: var(--color-forest);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  background: transparent;
  color: var(--color-forest);
  border-color: var(--color-deep-green);
}
.btn-ghost:hover {
  background: var(--color-deep-green);
  color: var(--color-cream);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(31, 42, 29, 0.55) 0%, rgba(47, 62, 44, 0.35) 60%, rgba(246, 243, 236, 0.2) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
}
.hero-content .eyebrow { color: rgba(255,255,255,0.85); }
.hero-content h1 {
  color: #fff;
  font-weight: 400;
}
.hero-content h1 em {
  color: var(--color-sun);
  font-weight: 500;
}
.hero-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.88);
  margin: 32px 0 44px;
  max-width: 580px;
  font-weight: 300;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-cta .btn-ghost {
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}
.hero-cta .btn-ghost:hover {
  background: #fff;
  color: var(--color-forest);
}
.scroll-hint {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
}
.scroll-hint span {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.5);
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.scroll-hint span::after {
  content: '';
  position: absolute;
  top: -20px; left: 0;
  width: 100%; height: 20px;
  background: var(--color-sun);
  animation: scrollLine 2.5s var(--ease) infinite;
}
@keyframes scrollLine {
  0% { top: -20px; } 100% { top: 40px; }
}

/* Page Hero */
.page-hero {
  padding: 200px 0 100px;
  background: linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
}
.page-hero.short { padding: 180px 0 80px; }
.page-hero h1 {
  margin-bottom: 24px;
  font-weight: 400;
}
.page-hero p {
  font-size: 1.2rem;
  max-width: 600px;
  font-weight: 300;
}

/* Intro */
.intro { padding: 100px 0 40px; }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-text {
  font-size: 1.15rem;
  color: var(--color-text);
  font-weight: 300;
  line-height: 1.8;
}

/* Services */
.services { background: var(--color-bg-alt); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 60px;
}
.service-card {
  background: var(--color-cream);
  padding: 0 0 36px;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-img {
  width: 100%;
  height: 280px;
  overflow: hidden;
}
.service-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.service-card:hover .service-img img { transform: scale(1.06); }
.service-card h3 { padding: 32px 36px 12px; }
.service-card p { padding: 0 36px; }

/* Showcase */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 380px 380px;
  gap: 24px;
}
.showcase-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.showcase-item.large {
  grid-column: span 2;
  grid-row: span 2;
}
.showcase-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.showcase-item:hover img { transform: scale(1.05); }
.showcase-item figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 30px;
  background: linear-gradient(180deg, transparent 0%, rgba(31, 42, 29, 0.85) 100%);
  color: #fff;
  transform: translateY(20px);
  opacity: 0.9;
  transition: all .5s var(--ease);
}
.showcase-item:hover figcaption {
  transform: translateY(0);
  opacity: 1;
}
.showcase-item figcaption span {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-sun);
  display: block;
  margin-bottom: 8px;
}
.showcase-item figcaption h4 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: #fff;
  font-weight: 500;
}

/* Why us */
.why-us { background: var(--color-deep-green); color: var(--color-cream); }
.why-us h2, .why-us h3, .why-us h4 { color: var(--color-cream); }
.why-us .section-label { color: var(--color-sun); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.why-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 580px;
}
.why-image img { width:100%; height:100%; object-fit: cover; }
.why-list { list-style: none; margin-top: 50px; }
.why-list li {
  display: flex;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(250, 248, 243, 0.12);
}
.why-list li:last-child { border-bottom: none; }
.why-list span {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--color-sun);
  font-style: italic;
  min-width: 40px;
}
.why-list h4 { margin-bottom: 6px; font-weight: 500; }
.why-list p { color: rgba(250, 248, 243, 0.7); }

/* Testimonials */
.testimonials { background: var(--color-bg-alt); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.testimonial-grid blockquote {
  background: var(--color-cream);
  padding: 44px 38px;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}
.testimonial-grid p {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--color-forest);
  font-style: italic;
  margin-bottom: 28px;
}
.testimonial-grid footer {
  font-size: 0.9rem;
  color: var(--color-text);
  font-weight: 500;
}
.testimonial-grid footer span {
  display: block;
  color: var(--color-text-muted);
  font-weight: 300;
  margin-top: 4px;
}

/* CTA */
.cta-section {
  text-align: center;
  background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
}
.cta-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.cta-inner h2 { margin-bottom: 20px; }
.cta-inner p { font-size: 1.15rem; margin-bottom: 40px; }

/* About page */
.about-block { padding-top: 80px; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 600px;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-text h2 { margin-bottom: 28px; }
.about-text p {
  font-size: 1.08rem;
  margin-bottom: 20px;
  line-height: 1.8;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.approach-card {
  background: var(--color-cream);
  padding: 50px 40px;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}
.approach-card .num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--color-moss);
  display: block;
  margin-bottom: 18px;
}
.approach-card h3 { margin-bottom: 14px; }

.values { background: var(--color-bg-alt); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}
.values-grid h3 { margin-bottom: 16px; }

/* Contact */
.contact-section { padding-top: 80px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
}
.contact-info h2 { margin-bottom: 50px; }
.info-block { margin-bottom: 32px; }
.info-block h4 {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-moss);
  margin-bottom: 10px;
  font-weight: 500;
}
.info-block p, .info-block a {
  font-size: 1.05rem;
  color: var(--color-forest);
  line-height: 1.6;
}
.info-block a:hover { color: var(--color-moss); }

.contact-form {
  background: var(--color-cream);
  padding: 50px 48px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-moss);
  font-weight: 500;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 300;
  padding: 14px 18px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: var(--color-bg);
  color: var(--color-forest);
  transition: border-color .3s var(--ease);
  letter-spacing: normal;
  text-transform: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-moss);
}
.contact-form textarea { resize: vertical; }
.contact-form button { align-self: flex-start; margin-top: 10px; }
.form-success {
  display: none;
  color: var(--color-moss);
  font-size: 0.95rem;
  font-weight: 400;
}
.form-success.show { display: block; }

/* Legal */
.legal { padding-top: 80px; }
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content article { margin-bottom: 50px; }
.legal-content h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
  font-weight: 500;
}
.legal-content p {
  font-size: 1.02rem;
  line-height: 1.8;
}
.legal-content a { color: var(--color-moss); text-decoration: underline; }

/* Footer */
.site-footer {
  background: var(--color-forest);
  color: rgba(250, 248, 243, 0.75);
  padding: 100px 0 30px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 60px;
  padding-bottom: 70px;
  border-bottom: 1px solid rgba(250, 248, 243, 0.1);
}
.footer-brand h3 {
  color: var(--color-cream);
  font-size: 1.6rem;
  margin: 12px 0 16px;
  font-weight: 500;
}
.footer-brand p { color: rgba(250, 248, 243, 0.55); font-size: 0.95rem; max-width: 280px; }
.footer-brand .logo-mark { color: var(--color-sun); font-size: 1.6rem; }
.footer-col h5 {
  color: var(--color-sun);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 22px;
  font-weight: 500;
}
.footer-col a, .footer-col p {
  display: block;
  color: rgba(250, 248, 243, 0.7);
  font-size: 0.95rem;
  margin-bottom: 10px;
  line-height: 1.7;
}
.footer-col a:hover { color: var(--color-sun); }
.footer-bottom {
  padding-top: 30px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(250, 248, 243, 0.4);
}