/* ── Tokens ── */
:root {
  --stone:    #2c2c2c;
  --charcoal: #1a1a1a;
  --gold:     #b89c6e;
  --cream:    #f5f0e8;
  --muted:    #6b6560;
  --light:    #e8e2d9;
  --white:    #ffffff;

  --serif: 'Cormorant Garamond', 'Georgia', serif;
  --sans:  'Jost', 'Helvetica Neue', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--stone);
  background: var(--white);
  line-height: 1.7;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.2;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
p  { font-size: 1rem; color: var(--muted); max-width: 65ch; }

.section-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* ── Layout ── */
.container {
  width: min(1200px, 90%);
  margin-inline: auto;
}
section { padding: 4rem 0; }

/* ── Header / Nav ── */
header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(26,26,26,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(184,156,110,0.2);
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  width: min(1200px, 90%);
  margin-inline: auto;
}
.nav-logo { text-decoration: none; display: flex; flex-direction: column; line-height: 1.2; border-left: 3px solid var(--gold); padding-left: 0.9rem; }
.nav-logo-primary { font-family: var(--serif); font-size: 1.9rem; font-weight: 400; color: var(--white); letter-spacing: 0.04em; white-space: nowrap; }
.nav-logo-sub { font-family: var(--sans); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links .has-dropdown { position: relative; }
.nav-links .has-dropdown > a::after { content: ' ▾'; font-size: 0.7rem; }
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  background: var(--charcoal);
  border: 1px solid rgba(184,156,110,0.2);
  min-width: 220px;
  list-style: none;
  padding: 0.5rem 0;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown li a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  text-transform: none;
  letter-spacing: 0.02em;
}
.dropdown li a:hover { color: var(--gold); background: rgba(255,255,255,0.04); }
.nav-cta {
  background: var(--gold);
  color: var(--charcoal) !important;
  padding: 0.5rem 1.25rem;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: #a08858 !important; color: var(--white) !important; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; transition: 0.3s; }

/* ── Hero ── */
#hero {
  position: relative;
  height: 80vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/pic04-edited.jpg');
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.45);
}
.hero-content {
  position: relative;
  color: var(--white);
  max-width: 700px;
}
.hero-content .section-label { color: var(--gold); }
.hero-content h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero-content p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 55ch; margin-bottom: 2rem; }
.hero-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.2s;
  cursor: pointer;
}
.btn-primary {
  background: var(--gold);
  color: var(--charcoal);
  margin-right: 1rem;
}
.btn-primary:hover { background: #a08858; color: var(--white); }
.btn-outline {
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ── Values strip ── */
#values {
  background: var(--charcoal);
  padding: 2rem 0;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(184,156,110,0.2);
  border: 1px solid rgba(184,156,110,0.2);
}
.value-item {
  background: var(--charcoal);
  padding: 1.5rem 2rem;
  text-align: center;
}
.value-item .icon {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--gold);
}
.value-item h3 { color: var(--white); margin-bottom: 0.5rem; }
.value-item p  { color: rgba(255,255,255,0.55); max-width: none; font-size: 0.9rem; }

/* ── About intro ── */
#about-intro {
  background: var(--cream);
  padding: 2.5rem 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about-img-wrap::before {
  content: '';
  position: absolute;
  inset: -16px 16px 16px -16px;
  border: 1px solid var(--gold);
  z-index: -1;
}
.about-text h2 { margin-bottom: 1.5rem; }
.about-text p  { margin-bottom: 1.25rem; }
.about-text .btn-dark {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--charcoal);
  color: var(--white);
  margin-top: 1rem;
  transition: background 0.2s;
}
.about-text .btn-dark:hover { background: var(--stone); }

/* ── Services ── */
#services { background: var(--white); }
#services h2 { text-align: center; margin-bottom: 0.75rem; }
#services > .container > p { text-align: center; margin-inline: auto; margin-bottom: 3.5rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.service-card {
  border: 1px solid var(--light);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.service-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.service-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.4s;
}
.service-card:hover img { transform: scale(1.03); }
.service-card-body { padding: 1.5rem; }
.service-card-body h3 { margin-bottom: 0.5rem; }
.service-card-body p  { font-size: 0.9rem; margin-bottom: 1rem; }
.service-card-body a  {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
}

/* ── Process teaser ── */
#process-teaser {
  background: var(--charcoal);
  color: var(--white);
}
.process-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.process-text .section-label { color: var(--gold); }
.process-text h2 { color: var(--white); margin-bottom: 1.25rem; }
.process-text p  { color: rgba(255,255,255,0.65); margin-bottom: 2rem; }
.process-steps { display: flex; flex-direction: column; gap: 1.25rem; }
.process-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.step-num {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
  min-width: 2rem;
  opacity: 0.7;
}
.step-body h4  { color: var(--white); font-family: var(--sans); font-weight: 600; font-size: 0.9rem; margin-bottom: 0.2rem; }
.step-body p   { color: rgba(255,255,255,0.55); font-size: 0.85rem; max-width: none; }

/* ── Reviews ── */
#reviews { background: var(--cream); }
#reviews h2 { text-align: center; margin-bottom: 0.5rem; }
#reviews > .container > p { text-align: center; margin-inline: auto; margin-bottom: 3.5rem; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.review-card {
  background: var(--white);
  padding: 2rem;
  border-top: 3px solid var(--gold);
}
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 0.75rem; letter-spacing: 0.1em; }
.review-card blockquote {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--stone);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.reviewer { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.reviews-cta { text-align: center; margin-top: 3rem; }
.reviews-cta a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

/* ── Brochure CTA ── */
#brochure-cta {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
}
.brochure-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/about03-1.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.3);
}
.brochure-inner {
  position: relative;
  text-align: center;
  color: var(--white);
}
.brochure-inner .section-label { color: var(--gold); justify-content: center; display: block; }
.brochure-inner h2 { color: var(--white); margin-bottom: 1rem; }
.brochure-inner p  { color: rgba(255,255,255,0.7); margin-inline: auto; margin-bottom: 2rem; }

/* ── Contact strip ── */
#contact-strip {
  background: var(--white);
  padding: 5rem 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.contact-item .icon { font-size: 1.25rem; color: var(--gold); margin-bottom: 0.75rem; line-height: 1; }
.contact-item h4 { font-family: var(--sans); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.4rem; }
.contact-item p, .contact-item a { font-size: 0.95rem; color: var(--stone); max-width: none; }
.contact-item a:hover { color: var(--gold); }

/* ── Footer ── */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.5);
  padding: 3rem 0 2rem;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
footer img { height: 36px; filter: brightness(0) invert(1); opacity: 0.6; }
.footer-links { display: flex; gap: 1.5rem; list-style: none; }
.footer-links a { font-size: 0.8rem; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 0.78rem; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .values-grid,
  .reviews-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .about-grid,
  .process-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-wrap { max-width: 480px; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--charcoal); padding: 1rem 0; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .values-grid,
  .services-grid,
  .reviews-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
}
