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

:root {
  --dark: #1a1f18;
  --green: #2d4a2a;
  --sage: #5a7a52;
  --gold: #c8a96e;
  --cream: #f5f0e8;
  --light: #faf8f4;
  --red: #8b2e2e;
  --bg-alt: #f0ede6;
  --ink-soft: rgba(26, 31, 24, 0.68);
  --cream-soft: rgba(245, 240, 232, 0.62);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--dark);
  background: var(--light);
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.bg-dark { background: var(--dark); }
.bg-green { background: var(--green); }
.bg-cream { background: var(--cream); }
.bg-light { background: var(--light); }
.bg-alt { background: var(--bg-alt); }

.container {
  width: min(100%, 1100px);
  margin: 0 auto;
  padding: 0 40px;
}

section {
  padding: 100px 40px;
}

.centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 80px;
  align-items: center;
}

.three-col {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
}

.section-label {
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 6px;
  line-height: 1.6;
  text-transform: uppercase;
}

.section-title {
  margin-bottom: 40px;
  color: var(--dark);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  line-height: 1.08;
}

.body-text {
  margin-bottom: 20px;
  color: #3a3a3a;
  font-size: 16px;
  line-height: 1.85;
}

.eyebrow-text {
  color: var(--sage);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 3px;
  line-height: 1.8;
  text-transform: uppercase;
}

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 72px;
  background: rgba(26, 31, 24, 0.96);
  border-bottom: 1px solid rgba(200, 169, 110, 0.08);
  backdrop-filter: blur(8px);
}

.nav-inner {
  width: min(100%, 1100px);
  height: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo,
.footer-logo {
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  letter-spacing: -1px;
}

.nav-logo {
  font-size: 28px;
  line-height: 1;
}

.nav-logo span,
.footer-logo span {
  color: var(--gold);
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  color: rgba(245, 240, 232, 0.62);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

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

.btn-ghost-nav,
.btn-primary,
.btn-ghost {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  line-height: 1.2;
  text-transform: uppercase;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  padding: 18px 48px;
}

.btn-primary:hover {
  background: #b8946a;
  transform: translateY(-2px);
}

.btn-ghost,
.btn-ghost-nav {
  background: transparent;
  border: 1px solid rgba(200, 169, 110, 0.48);
  color: var(--gold);
}

.btn-ghost {
  padding: 16px 40px;
}

.btn-ghost-nav {
  min-height: auto;
  padding: 10px 24px;
  font-size: 10px;
  letter-spacing: 3px;
}

.btn-ghost:hover,
.btn-ghost-nav:hover {
  border-color: var(--gold);
  color: var(--cream);
}

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(200, 169, 110, 0.35);
  color: var(--gold);
  cursor: pointer;
}

.menu-btn span,
.menu-btn::before,
.menu-btn::after {
  content: '';
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
  position: absolute;
}

.menu-btn {
  position: relative;
}

.menu-btn::before { transform: translateY(-6px); }
.menu-btn::after { transform: translateY(6px); }

.hero {
  min-height: 100vh;
  padding: 120px 40px 70px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 80% at 15% 50%, rgba(45, 74, 42, 0.4) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 85% 20%, rgba(90, 122, 82, 0.15) 0%, transparent 60%),
    var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-ghost,
.page-ghost {
  position: absolute;
  pointer-events: none;
  user-select: none;
  color: rgba(255, 255, 255, 0.032);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1;
}

.hero-ghost {
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(220px, 38vw, 420px);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, 860px);
  text-align: center;
}

.brand-tag,
.hero-logo,
.hero-sub,
.hero-tagline,
.hero-cta-wrap,
.hero .divider-gold {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.brand-tag {
  margin-bottom: 40px;
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 6px;
  line-height: 1.6;
  text-transform: uppercase;
  animation-delay: 0.1s;
}

.hero-logo {
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(72px, 14vw, 140px);
  font-weight: 300;
  letter-spacing: -2px;
  line-height: 1;
  animation-delay: 0.25s;
}

.hero-logo .dot {
  color: var(--gold);
}

.hero-sub {
  margin-top: 16px;
  color: var(--gold);
  font-size: clamp(14px, 2.2vw, 28px);
  font-weight: 600;
  letter-spacing: clamp(6px, 1.1vw, 10px);
  line-height: 1.4;
  text-transform: uppercase;
  animation-delay: 0.42s;
}

.divider-gold {
  width: 60px;
  height: 1px;
  margin: 40px auto;
  background: var(--gold);
}

.hero .divider-gold {
  animation-name: fadeIn;
  animation-delay: 0.58s;
}

.hero-tagline {
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 3vw, 28px);
  font-style: italic;
  font-weight: 300;
  animation-delay: 0.74s;
}

.hero-cta-wrap {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation-delay: 0.9s;
}

.hero-tree {
  position: absolute;
  right: max(24px, 8vw);
  bottom: 24px;
  width: min(24vw, 220px);
  min-width: 130px;
  opacity: 0.22;
}

.tree-visual,
.intro-visual,
.service-visual {
  position: relative;
  min-height: 420px;
  border: 1px solid rgba(200, 169, 110, 0.16);
  background:
    linear-gradient(135deg, rgba(45, 74, 42, 0.08), rgba(200, 169, 110, 0.08)),
    var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.tree-visual img,
.intro-visual img {
  width: min(82%, 420px);
  opacity: 0.95;
}

.corner-mark {
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: rgba(200, 169, 110, 0.32);
}

.corner-mark.top-left {
  top: 24px;
  left: 24px;
  border-top: 1px solid;
  border-left: 1px solid;
}

.corner-mark.bottom-right {
  right: 24px;
  bottom: 24px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.page-hero {
  min-height: 50vh;
  padding: 160px 40px 86px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-hero.bg-dark {
  background:
    radial-gradient(ellipse 55% 70% at 20% 40%, rgba(45, 74, 42, 0.35), transparent 70%),
    var(--dark);
}

.page-hero.bg-green {
  background:
    radial-gradient(ellipse 55% 70% at 80% 20%, rgba(200, 169, 110, 0.14), transparent 70%),
    var(--green);
}

.page-ghost {
  right: -30px;
  bottom: -40px;
  font-size: clamp(180px, 30vw, 330px);
}

.page-title {
  margin-bottom: 24px;
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 300;
  letter-spacing: -2px;
  line-height: 1;
}

.page-hero-sub {
  max-width: 680px;
  color: var(--cream-soft);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(19px, 2.4vw, 28px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.45;
}

.card {
  min-height: 100%;
  padding: 48px 36px;
  border: 1px solid rgba(200, 169, 110, 0.1);
  background: rgba(255, 255, 255, 0.04);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(200, 169, 110, 0.3);
}

.card.light {
  background: rgba(255, 255, 255, 0.52);
  border-color: rgba(26, 31, 24, 0.08);
}

.card.light:hover {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(200, 169, 110, 0.42);
}

.card-num {
  margin-bottom: 20px;
  color: rgba(200, 169, 110, 0.24);
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 300;
  line-height: 1;
}

.card-title {
  margin-bottom: 12px;
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.1;
}

.card.light .card-title {
  color: var(--dark);
}

.card-body {
  color: rgba(245, 240, 232, 0.55);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
}

.card.light .card-body {
  color: var(--ink-soft);
}

.intro-copy {
  max-width: 520px;
}

.section-cta {
  margin-top: 44px;
  text-align: center;
}

.tagline-band {
  padding: 80px 40px;
}

.tagline-display {
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 52px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.35;
}

.tagline-display span {
  color: var(--gold);
}

.cta-band {
  position: relative;
  overflow: hidden;
}

.cta-band::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(to right, var(--green), var(--gold) 40%, var(--gold) 60%, var(--green));
}

.founder-photo {
  min-height: 500px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(to top, rgba(26, 31, 24, 0.96), rgba(26, 31, 24, 0.12) 45%, transparent),
    radial-gradient(circle at 58% 24%, rgba(200, 169, 110, 0.16), transparent 28%),
    var(--green);
  border: 1px solid rgba(200, 169, 110, 0.16);
}

.founder-photo::before {
  content: 'OP';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 240, 232, 0.12);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(96px, 16vw, 170px);
  font-weight: 300;
}

.founder-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 28px;
  background: linear-gradient(transparent, rgba(26, 31, 24, 0.94));
}

.founder-name {
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 300;
}

.founder-role {
  margin-top: 8px;
  color: rgba(200, 169, 110, 0.78);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.founder-credentials {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.credential {
  border-top: 1px solid rgba(200, 169, 110, 0.26);
  padding-top: 18px;
}

.credential-num {
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  line-height: 1;
}

.credential-label {
  margin-top: 10px;
  color: rgba(245, 240, 232, 0.44);
  font-size: 10px;
  letter-spacing: 2px;
  line-height: 1.6;
  text-transform: uppercase;
}

.value-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-main .two-col {
  align-items: start;
}

.contact-form {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  color: var(--sage);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.form-input {
  width: 100%;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid rgba(26, 31, 24, 0.2);
  outline: 0;
  background: transparent;
  color: var(--dark);
  font-size: 15px;
  font-weight: 300;
  transition: border-color 0.25s ease;
}

.form-input:focus {
  border-bottom-color: var(--gold);
}

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

.form-message {
  display: none;
  color: var(--sage);
  font-size: 13px;
  line-height: 1.6;
}

.form-message.visible {
  display: block;
}

.contact-details {
  margin-top: 36px;
}

.contact-item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(26, 31, 24, 0.08);
}

.contact-item-label {
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.contact-item-value {
  color: var(--dark);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(21px, 2.2vw, 27px);
  font-weight: 300;
  line-height: 1.25;
}

.contact-tagline-box {
  margin-top: 40px;
  padding: 36px;
  background: var(--green);
  border: 1px solid rgba(200, 169, 110, 0.18);
}

.contact-tagline-box p {
  color: rgba(245, 240, 232, 0.82);
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.45;
}

.contact-tagline-box span {
  color: var(--gold);
}

.footer {
  padding: 78px 40px 36px;
  background: var(--dark);
  border-top: 1px solid rgba(200, 169, 110, 0.15);
}

.footer-inner {
  width: min(100%, 1100px);
  margin: 0 auto 56px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer-logo {
  display: block;
  margin-bottom: 8px;
  font-size: 36px;
}

.footer-tagline {
  max-width: 320px;
  color: rgba(200, 169, 110, 0.68);
  font-size: 11px;
  letter-spacing: 4px;
  line-height: 1.8;
  text-transform: uppercase;
}

.footer-col-title {
  display: block;
  margin-bottom: 20px;
  color: rgba(245, 240, 232, 0.3);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.footer-col-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-links a,
.footer-note {
  color: rgba(245, 240, 232, 0.52);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  transition: color 0.25s ease;
}

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

.footer-bottom {
  width: min(100%, 1100px);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(245, 240, 232, 0.16);
  font-size: 10px;
  letter-spacing: 3px;
  text-align: center;
  text-transform: uppercase;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 900px) {
  .nav-inner {
    padding: 0 24px;
  }

  .btn-ghost-nav {
    display: none;
  }

  .menu-btn {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    padding: 28px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    background: rgba(26, 31, 24, 0.98);
    border-bottom: 1px solid rgba(200, 169, 110, 0.12);
  }

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

  section {
    padding: 72px 24px;
  }

  .container {
    padding: 0;
  }

  .two-col,
  .three-col,
  .value-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .two-col {
    gap: 44px;
  }

  .hero {
    padding: 120px 24px 64px;
  }

  .hero-ghost {
    display: none;
  }

  .hero-tree {
    opacity: 0.14;
    right: 10px;
  }

  .page-hero {
    padding: 138px 24px 72px;
  }

  .intro-copy {
    max-width: none;
  }

  .founder-credentials {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .section-label,
  .brand-tag {
    letter-spacing: 4px;
  }

  .hero-cta-wrap {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }

  .card {
    padding: 38px 28px;
  }

  .tree-visual,
  .intro-visual,
  .service-visual {
    min-height: 320px;
  }

  .footer {
    padding-left: 24px;
    padding-right: 24px;
  }
}
