:root {
  --green: #2D3F2A;
  --green-dark: #1F2C1D;
  --gold: #C9A658;
  --gold-dark: #A8893F;
  --cream: #F7F1E5;
  --beige: #E8DBC2;
  --ink: #1F2A1C;
  --muted: #5A6253;
  --white: #FFFFFF;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--green);
  line-height: 1.15;
  font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 1rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; color: var(--muted); }

a { color: var(--gold-dark); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--green); }

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Navigation */
.nav {
  background: var(--cream);
  border-bottom: 1px solid rgba(45, 63, 42, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  max-width: 1140px;
  margin: 0 auto;
}

.brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.02em;
}

.brand-mark {
  color: var(--gold-dark);
  font-style: italic;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--green);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--gold);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--green);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  background: var(--green);
  color: var(--cream);
  border-radius: 2px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: background 0.2s, transform 0.2s;
  border: 0;
  cursor: pointer;
}

.btn:hover {
  background: var(--green-dark);
  color: var(--cream);
  transform: translateY(-1px);
}

.btn-gold {
  background: var(--gold);
  color: var(--green-dark);
}

.btn-gold:hover {
  background: var(--gold-dark);
  color: var(--cream);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--green);
  color: var(--green);
}

.btn-outline:hover {
  background: var(--green);
  color: var(--cream);
}

/* Hero */
.hero {
  background: var(--cream);
  padding: 5rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.hero h1 {
  margin-bottom: 1rem;
}

.hero h1 .accent {
  font-style: italic;
  color: var(--gold-dark);
  font-weight: 400;
}

.hero-tagline {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
}

.hero-tagline span { display: block; }

.hero-body {
  font-style: italic;
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  background: var(--beige);
  border-radius: 4px;
  aspect-ratio: 4 / 5;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-visual::before {
  content: '';
  position: absolute;
  inset: 1.5rem;
  border: 1px solid rgba(247, 241, 229, 0.4);
  pointer-events: none;
  z-index: 2;
}

.hero-visual img,
.split-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.split-image {
  overflow: hidden;
  position: relative;
}

/* Sections */
section {
  padding: 5rem 0;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.section-head .eyebrow { margin-bottom: 0.75rem; }

.section-head h2 { margin-bottom: 1rem; }

.section-green {
  background: var(--green);
  color: var(--cream);
}

.section-green h2,
.section-green h3 { color: var(--cream); }

.section-green p { color: rgba(247, 241, 229, 0.8); }

.section-green .eyebrow { color: var(--gold); border-color: var(--gold); }

.section-beige { background: var(--beige); }

/* Service cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--cream);
  padding: 2rem 1.75rem;
  border-radius: 4px;
  border-left: 3px solid var(--gold);
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(31, 44, 29, 0.08);
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.service-meta {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Two-column block */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split-image {
  background: var(--beige);
  aspect-ratio: 1;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  color: var(--green);
  opacity: 0.9;
  font-size: 4rem;
  font-style: italic;
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.value {
  text-align: center;
}

.value-num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.value h3 {
  color: var(--cream);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.contact-list {
  list-style: none;
  padding: 0;
}

.contact-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(45, 63, 42, 0.1);
}

.contact-list li:last-child { border-bottom: 0; }

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.contact-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  display: block;
  margin-bottom: 0.15rem;
}

.contact-value {
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 500;
}

/* Form */
.form {
  background: var(--cream);
  padding: 2.5rem;
  border-radius: 4px;
  border-top: 3px solid var(--gold);
}

.field {
  margin-bottom: 1.25rem;
}

.field label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(45, 63, 42, 0.2);
  border-radius: 2px;
  background: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.2s;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--gold);
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 1rem;
  font-style: italic;
}

/* Footer */
.footer {
  background: var(--green-dark);
  color: var(--cream);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer h4 {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.footer p,
.footer a,
.footer li {
  color: rgba(247, 241, 229, 0.75);
  font-size: 0.95rem;
}

.footer a:hover { color: var(--gold); }

.footer ul { list-style: none; }
.footer ul li { padding: 0.3rem 0; }

.footer-brand .brand {
  color: var(--cream);
  font-size: 1.4rem;
  display: block;
  margin-bottom: 0.75rem;
}

.footer-bottom {
  border-top: 1px solid rgba(247, 241, 229, 0.15);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p { font-size: 0.85rem; margin: 0; }

.footer-tagline {
  background: var(--gold);
  color: var(--green-dark);
  text-align: center;
  padding: 1rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

/* Page header */
.page-head {
  background: var(--beige);
  padding: 4rem 0 3rem;
  text-align: center;
}

.page-head h1 {
  margin-bottom: 0.75rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.page-head p {
  font-style: italic;
  color: var(--muted);
}

/* Service detail list (services page) */
.service-detail {
  background: var(--cream);
  padding: 2.5rem;
  border-radius: 4px;
  border-left: 3px solid var(--gold);
  margin-bottom: 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
}

.service-detail-num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
}

.service-detail h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 880px) {
  .hero-grid,
  .split,
  .contact-grid,
  .footer-grid { grid-template-columns: 1fr; }

  .hero-visual { aspect-ratio: 16 / 10; max-height: 320px; }

  .nav-toggle { display: block; }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(45, 63, 42, 0.1);
    display: none;
  }

  .nav-links.open { display: flex; }

  .nav-links li { padding: 0.6rem 0; }

  section { padding: 3.5rem 0; }

  .form { padding: 1.75rem; }

  .service-detail {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 1.75rem;
  }
}
