@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=Jost:wght@200;300;400&display=swap');

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

:root {
  --gold: #B8922A;
  --gold-light: #D4AE5A;
  --gold-pale: #F5EDD8;
  --white: #FFFFFF;
  --off-white: #FAFAF8;
  --stone: #F0EDE6;
  --stone-mid: #E2DDD4;
  --stone-dark: #C8C0B0;
  --text-dark: #1C1916;
  --text-mid: #5A5248;
  --text-light: #9A9088;
  --nav-height: 88px;
  --site-max: 1320px;
  --site-pad: 60px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  letter-spacing: 0.04em;
}

p { line-height: 1.85; color: var(--text-mid); }

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

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


/* CONTAINER — the single source of truth for width control */

.container {
  width: 100%;
  max-width: var(--site-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--site-pad);
  padding-right: var(--site-pad);
}


/* NAV */

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 0.5px solid var(--stone-mid);
  z-index: 100;
}

.nav-inner {
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 0 var(--site-pad);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img { height: 48px; width: auto; }

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

.nav-links a {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color 0.25s;
}

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

.nav-book {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 0.5px solid var(--gold);
  padding: 10px 24px;
  transition: background 0.25s, color 0.25s;
}

.nav-book:hover { background: var(--gold); color: var(--white); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 0.5px;
  background: var(--text-dark);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 0.5px solid var(--stone-mid);
  padding: 32px 40px;
  z-index: 99;
  flex-direction: column;
  gap: 24px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.mobile-menu a.active,
.mobile-menu a:hover { color: var(--gold); }


/* HERO */

.hero {
  position: relative;
  height: 92vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(255,255,255,0.88) 0%, rgba(255,255,255,0.55) 55%, rgba(255,255,255,0.2) 100%);
}

.hero-content {
  position: relative;
  width: 100%;
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 0 var(--site-pad);
}

.hero-text { max-width: 600px; }

.hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(52px, 6vw, 96px);
  line-height: 1.0;
  color: var(--text-dark);
  margin-bottom: 28px;
}

.hero-title em { font-style: italic; color: var(--gold); }

.hero-body {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 44px;
  max-width: 460px;
}

.btn-primary {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--gold);
  padding: 16px 36px;
  transition: background 0.25s;
}

.btn-primary:hover { background: var(--text-dark); }

.btn-outline {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 0.5px solid var(--gold);
  padding: 16px 36px;
  transition: background 0.25s, color 0.25s;
}

.btn-outline:hover { background: var(--gold); color: var(--white); }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 100%;
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 0 var(--site-pad);
  display: flex;
  align-items: center;
  gap: 16px;
  pointer-events: none;
}

.hero-scroll-line {
  width: 40px;
  height: 0.5px;
  background: var(--gold);
}

.hero-scroll span {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-light);
}


/* SECTION SHARED */

section { position: relative; }

.section-pad { padding: 120px 0; }
.section-pad-sm { padding: 80px 0; }

.label {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.section-title {
  font-size: clamp(32px, 3.5vw, 52px);
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.section-title em { font-style: italic; color: var(--gold); }

.section-intro {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-mid);
  max-width: 580px;
}

.divider {
  width: 40px;
  height: 0.5px;
  background: var(--gold);
  margin: 32px 0;
}


/* HOME: INTRO */

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.intro-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.intro-image img,
.intro-image svg { width: 100%; height: 100%; object-fit: cover; }

.intro-image-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 120px;
  height: 120px;
  border: 0.5px solid var(--gold);
  z-index: -1;
}


/* HOME: SERVICES */

.services-bg { background: var(--off-white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
}

.service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--stone);
}

.service-card-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transition: transform 0.7s ease;
}

.service-card:hover .service-card-media { transform: scale(1.04); }

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(28,25,22,0.75) 100%);
}

.service-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px 36px;
  color: var(--white);
}

.service-card-number {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 12px;
  display: block;
}

.service-card-title {
  font-size: 28px;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 16px;
}

.service-card-body {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
  display: none;
}

.service-card:hover .service-card-body { display: block; }

.service-card-link {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-card-link::after {
  content: '';
  display: block;
  width: 24px;
  height: 0.5px;
  background: var(--gold-light);
  transition: width 0.3s;
}

.service-card:hover .service-card-link::after { width: 40px; }


/* HOME: MARLEY */

.marley-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.marley-image {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--stone);
}

.marley-image img,
.marley-image svg { width: 100%; height: 100%; object-fit: cover; }

.marley-credentials {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

.credential {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 0.5px solid var(--stone-mid);
}

.credential-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 8px;
  flex-shrink: 0;
}

.credential p { font-size: 13px; line-height: 1.6; color: var(--text-mid); }


/* PAGE HERO (inner pages) */

.page-hero {
  padding-top: var(--nav-height);
  background: var(--off-white);
  overflow: hidden;
}

.page-hero-inner {
  max-width: var(--site-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.page-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px var(--site-pad) 80px var(--site-pad);
}

.page-hero-image {
  position: relative;
  overflow: hidden;
}

.page-hero-image img,
.page-hero-image svg { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }


/* SERVICE PAGE */

.service-what {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.service-what .section-title { margin-bottom: 24px; }

.benefits-section { background: var(--stone); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  margin-top: 56px;
}

.benefit-item {
  background: var(--white);
  padding: 40px 36px;
}

.benefit-check {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.benefit-title { font-size: 18px; color: var(--text-dark); margin-bottom: 10px; }

.benefit-body { font-size: 14px; line-height: 1.8; color: var(--text-mid); }

.steps-section { background: var(--off-white); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-top: 56px;
}

.step-item { position: relative; }

.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--stone-mid);
  line-height: 1;
  margin-bottom: 16px;
}

.step-title { font-size: 16px; color: var(--text-dark); margin-bottom: 10px; }

.step-body { font-size: 13px; line-height: 1.8; color: var(--text-mid); }

.right-for-you { max-width: 760px; margin: 0 auto; }

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-mid);
}

.checklist-mark {
  width: 18px;
  height: 18px;
  border: 0.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 3px;
}

.checklist-mark::after {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
}


/* CTA STRIP */

.cta-strip {
  background: var(--text-dark);
  padding: 100px 0;
  text-align: center;
}

.cta-strip .section-title { color: var(--white); }
.cta-strip .section-title em { color: var(--gold-light); }
.cta-strip .section-intro { color: rgba(255,255,255,0.6); margin: 0 auto 44px; }
.cta-strip .label { justify-content: center; display: flex; }

.cta-contact {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.cta-contact-item span { color: var(--white); }


/* ABOUT PAGE */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.about-image {
  position: sticky;
  top: calc(var(--nav-height) + 40px);
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--stone);
}

.about-image img,
.about-image svg { width: 100%; height: 100%; object-fit: cover; }

.about-body p {
  font-size: 16px;
  line-height: 1.95;
  color: var(--text-mid);
  margin-bottom: 28px;
}

.about-qualifications {
  background: var(--off-white);
  padding: 40px;
  margin-top: 48px;
}

.about-qualifications h3 {
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

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

.qual-list li {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-mid);
  padding-left: 20px;
  position: relative;
}

.qual-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 0.5px;
  background: var(--gold);
}


/* FOOTER */

footer {
  background: var(--off-white);
  border-top: 0.5px solid var(--stone-mid);
  padding: 60px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.footer-logo img { height: 36px; width: auto; margin-bottom: 20px; }

.footer-tagline {
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 240px;
}

.footer-nav-label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a { font-size: 13px; color: var(--text-light); transition: color 0.2s; }
.footer-nav a:hover { color: var(--gold); }

.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact p { font-size: 13px; color: var(--text-light); line-height: 1.6; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 0.5px solid var(--stone-mid);
}

.footer-bottom p {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-light);
}


/* RESPONSIVE */

@media (max-width: 1024px) {
  :root { --site-pad: 40px; }
  .intro-grid, .marley-grid, .about-grid { gap: 60px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .section-pad { padding: 80px 0; }
  .section-pad-sm { padding: 60px 0; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; --site-pad: 24px; }
  .nav-links { display: none; }
  .nav-book { display: none; }
  .nav-hamburger { display: flex; }
  .section-pad { padding: 64px 0; }
  .section-pad-sm { padding: 48px 0; }
  .intro-grid, .marley-grid, .about-grid { grid-template-columns: 1fr; }
  .intro-image, .marley-image { display: none; }
  .page-hero-inner { grid-template-columns: 1fr; }
  .page-hero-image { height: 280px; }
  .page-hero-content { padding: 48px var(--site-pad); }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { aspect-ratio: 4/3; }
  .service-card-body { display: block; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .cta-strip { padding: 64px 0; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
}
