:root {
  --c-bg: #f6f3ec;
  --c-bg-alt: #ece7dc;
  --c-cream: #faf8f3;
  --c-forest: #1f3a2c;
  --c-moss: #4a6b4a;
  --c-sage: #8aa085;
  --c-bark: #594832;
  --c-sun: #c9a66b;
  --c-text: #243028;
  --c-text-soft: #5a6660;
  --c-line: rgba(31, 58, 44, 0.12);

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

  --radius: 18px;
  --radius-lg: 24px;
  --shadow-soft: 0 20px 60px -30px rgba(31, 58, 44, 0.25);
  --shadow-card: 0 14px 40px -20px rgba(31, 58, 44, 0.18);

  --max: 1320px;
  --section-y: 120px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; transition: opacity .3s, color .3s; }

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

h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--c-forest);
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 400; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.15rem; font-family: var(--font-sans); font-weight: 500; letter-spacing: 0; }
em { font-style: italic; color: var(--c-moss); }

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

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-moss);
  margin-bottom: 28px;
  font-weight: 500;
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-moss);
  margin-bottom: 18px;
  font-weight: 500;
}

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: all .4s ease;
  background: transparent;
}

.site-header.scrolled {
  background: rgba(246, 243, 236, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0;
  border-bottom: 1px solid var(--c-line);
}

.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.4rem;
  color: var(--c-forest);
  font-weight: 500;
}

.logo-mark {
  color: var(--c-moss);
  font-size: 1.6rem;
  display: inline-block;
  transition: transform .6s ease;
}
.logo:hover .logo-mark { transform: rotate(90deg); }

.nav-desktop {
  display: flex;
  gap: 38px;
}

.nav-desktop a {
  font-size: 0.92rem;
  color: var(--c-text);
  position: relative;
  padding: 4px 0;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--c-moss);
  transition: width .3s ease;
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after { width: 100%; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.menu-toggle span {
  width: 26px; height: 1.5px;
  background: var(--c-forest);
  transition: all .3s;
}

.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: 78%; max-width: 360px;
  height: 100vh;
  background: var(--c-cream);
  z-index: 200;
  padding: 80px 40px 40px;
  transition: right .5s cubic-bezier(.6,.05,.3,1);
  box-shadow: -20px 0 60px -20px rgba(0,0,0,0.2);
}
.mobile-menu.open { right: 0; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 22px; }
.mobile-menu nav a {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--c-forest);
}
.menu-close {
  position: absolute;
  top: 24px; right: 28px;
  background: none; border: none;
  font-size: 2.2rem;
  color: var(--c-forest);
  cursor: pointer;
  line-height: 1;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all .3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--c-forest);
  color: var(--c-cream);
}
.btn-primary:hover {
  background: var(--c-moss);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn-ghost {
  background: transparent;
  color: var(--c-cream);
  border: 1px solid rgba(250, 248, 243, 0.45);
}
.btn-ghost:hover {
  background: rgba(250, 248, 243, 0.12);
  border-color: var(--c-cream);
}

.link-arrow {
  display: inline-block;
  margin-top: 18px;
  color: var(--c-forest);
  font-weight: 500;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--c-line);
  padding-bottom: 4px;
  transition: all .3s;
}
.link-arrow:hover { color: var(--c-moss); border-color: var(--c-moss); }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--c-cream);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: slow-zoom 24s ease-out infinite alternate;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(31,58,44,0.45) 0%, rgba(31,58,44,0.65) 70%, rgba(31,58,44,0.8) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 140px;
  padding-bottom: 100px;
  max-width: 880px;
}
.hero-content .eyebrow { color: rgba(250,248,243,0.85); }

.hero-title {
  color: var(--c-cream);
  font-size: clamp(2.8rem, 6.5vw, 5.8rem);
  margin-bottom: 32px;
}
.hero-title em { color: #d4c896; }

.hero-sub {
  color: rgba(250,248,243,0.85);
  font-size: 1.15rem;
  max-width: 560px;
  margin-bottom: 44px;
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  color: rgba(250,248,243,0.7);
}
.hero-scroll span {
  display: block;
  width: 1px; height: 50px;
  background: rgba(250,248,243,0.5);
  margin: 0 auto 10px;
  animation: scroll-line 2.4s ease-in-out infinite;
}
.hero-scroll p { font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: inherit; }

/* Intro */
.intro { padding: var(--section-y) 0; background: var(--c-bg); }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.intro-text h2 { max-width: 460px; }
.intro-body p { font-size: 1.08rem; }

/* Sections */
.section-head { margin-bottom: 70px; max-width: 700px; }
.section-head h2 { margin-top: 8px; }

/* Services */
.services { padding: var(--section-y) 0; background: var(--c-bg-alt); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.service-card {
  background: var(--c-cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .5s ease, box-shadow .5s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.service-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.service-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.service-card:hover .service-img img { transform: scale(1.06); }
.service-card h3 { padding: 30px 30px 8px; }
.service-card p { padding: 0 30px 32px; }

/* Showcase */
.showcase { padding: var(--section-y) 0; background: var(--c-bg); }
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 24px;
}
.showcase-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
}
.showcase-item.large {
  grid-column: span 2;
  grid-row: span 2;
}
.showcase-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s ease;
}
.showcase-item:hover img { transform: scale(1.05); }
.showcase-meta {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
  background: linear-gradient(to top, rgba(31,58,44,0.85), transparent);
  color: var(--c-cream);
}
.showcase-meta span {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.85;
}
.showcase-meta h4 {
  color: var(--c-cream);
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  margin-top: 6px;
}

/* Why Us */
.why-us { padding: var(--section-y) 0; background: var(--c-forest); color: var(--c-cream); }
.why-us h2, .why-us h4 { color: var(--c-cream); }
.why-us p { color: rgba(250,248,243,0.78); }
.why-us .section-label { color: #c9a66b; }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.why-image img { width: 100%; height: 100%; object-fit: cover; }

.principles {
  list-style: none;
  margin-top: 36px;
}
.principles li {
  padding: 28px 0;
  border-top: 1px solid rgba(250,248,243,0.15);
}
.principles li:last-child { border-bottom: 1px solid rgba(250,248,243,0.15); }
.principles h4 { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 500; margin-bottom: 8px; }

/* Testimonials */
.testimonials { padding: var(--section-y) 0; background: var(--c-bg); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.testimonial-grid blockquote {
  background: var(--c-cream);
  padding: 40px;
  border-radius: var(--radius-lg);
  border-left: 2px solid var(--c-sage);
}
.testimonial-grid p {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--c-text);
  line-height: 1.5;
}
.testimonial-grid footer {
  margin-top: 22px;
  font-size: 0.85rem;
  color: var(--c-moss);
  letter-spacing: 0.04em;
}

/* CTA */
.cta-section {
  padding: var(--section-y) 0;
  background: var(--c-bg-alt);
  text-align: center;
}
.cta-inner { max-width: 680px; margin: 0 auto; }
.cta-inner h2 { margin-bottom: 18px; }
.cta-inner p { margin-bottom: 36px; font-size: 1.1rem; }

/* Page Hero */
.page-hero {
  padding: 200px 0 100px;
  background: var(--c-bg-alt);
  border-bottom: 1px solid var(--c-line);
}
.page-hero.short { padding: 200px 0 80px; }
.page-hero h1 { margin-bottom: 24px; }
.page-hero-sub {
  font-size: 1.15rem;
  max-width: 620px;
  color: var(--c-text-soft);
}

/* Story */
.story { padding: var(--section-y) 0; }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.story-image img { width: 100%; height: 100%; object-fit: cover; }
.story-text h2 { margin-bottom: 20px; }
.story-text p { margin-bottom: 16px; font-size: 1.05rem; }

/* Philosophy */
.philosophy { padding: var(--section-y) 0; background: var(--c-bg-alt); }
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.philosophy-card {
  background: var(--c-cream);
  padding: 44px 36px;
  border-radius: var(--radius-lg);
}
.philosophy-card h3 {
  font-size: 1.6rem;
  margin-bottom: 14px;
  color: var(--c-forest);
}

/* Approach */
.approach { padding: var(--section-y) 0; }
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.approach-steps { list-style: none; }
.approach-steps li {
  display: flex;
  gap: 30px;
  padding: 30px 0;
  border-top: 1px solid var(--c-line);
}
.approach-steps li:last-child { border-bottom: 1px solid var(--c-line); }
.approach-steps span {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--c-moss);
  min-width: 60px;
}
.approach-steps h4 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 6px;
}

/* Contact */
.contact-section { padding: var(--section-y) 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-moss);
  font-weight: 500;
  margin-bottom: 10px;
  margin-top: 32px;
}
.contact-info h3:first-child { margin-top: 0; }
.contact-info p, .contact-info address {
  font-style: normal;
  color: var(--c-text);
  font-size: 1.05rem;
}
.contact-info a:hover { color: var(--c-moss); }

.contact-form {
  background: var(--c-cream);
  padding: 50px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-moss);
  font-weight: 500;
}
.field input, .field select, .field textarea {
  padding: 14px 18px;
  border: 1px solid var(--c-line);
  border-radius: 12px;
  background: var(--c-bg);
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--c-text);
  transition: border-color .3s, background .3s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--c-moss);
  background: #fff;
}
.field textarea { resize: vertical; min-height: 120px; }

.form-sent {
  display: none;
  margin-top: 12px;
  padding: 14px;
  background: rgba(74, 107, 74, 0.1);
  border-radius: 12px;
  color: var(--c-forest);
  font-size: 0.95rem;
}

/* Legal */
.legal { padding: 80px 0 var(--section-y); }
.legal-content {
  max-width: 780px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: 1.5rem;
  margin: 40px 0 14px;
  color: var(--c-forest);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li {
  margin-bottom: 14px;
  color: var(--c-text-soft);
  line-height: 1.8;
}
.legal-content ul { padding-left: 20px; margin-bottom: 14px; }
.legal-content a { color: var(--c-moss); border-bottom: 1px solid var(--c-line); }
.legal-content a:hover { color: var(--c-forest); }

/* Footer */
.site-footer {
  background: var(--c-forest);
  color: rgba(250,248,243,0.78);
  padding: 80px 0 30px;
}
.site-footer .logo { color: var(--c-cream); }
.site-footer .logo-mark { color: var(--c-sun); }
.site-footer h5 {
  color: var(--c-cream);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 18px;
}
.site-footer p { color: rgba(250,248,243,0.7); line-height: 1.8; }
.site-footer a { color: rgba(250,248,243,0.78); }
.site-footer a:hover { color: var(--c-sun); }

.footer-tag { margin-top: 18px; max-width: 280px; font-size: 0.92rem; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(250,248,243,0.12);
}

.footer-nav { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-size: 0.95rem; }

.footer-bottom {
  padding-top: 30px;
  text-align: center;
}
.footer-bottom p { font-size: 0.85rem; color: rgba(250,248,243,0.55); }