/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --linen:        #FAF7F2;
  --sand:         #F0E9DA;
  --parchment:    #E8DDD0;
  --walnut:       #2C2018;
  --amber:        #8B6535;
  --honey:        #C8A878;
  --umber:        #4A3828;
  --stone:        #7A6B5C;
  --white:        #FFFFFF;
  --amber-tint:   rgba(139,101,53,0.08);
  --amber-border: rgba(200,168,120,0.4);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --max-w:        1160px;
  --radius:       3px;
}

html { font-size: 16px; scroll-behavior: smooth; }
@media (min-width: 768px) { html { font-size: 140%; } }

body {
  background: var(--linen);
  color: var(--umber);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }

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

/* ============================================================
   TYPOGRAPHY
============================================================ */
h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--linen);
}
h1 em { font-style: italic; color: var(--honey); }

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--walnut);
}
h2 em { font-style: italic; color: var(--amber); }

h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--walnut);
}

.label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
}

p { color: var(--stone); line-height: 1.7; }

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--amber);
  color: var(--linen);
}
.btn-primary:hover { filter: brightness(1.1); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--linen);
  border: 1.5px solid rgba(250,247,242,0.45);
}
.btn-outline:hover { border-color: var(--honey); color: var(--honey); }

/* ============================================================
   NAVIGATION
============================================================ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.3s, padding 0.3s;
}
#nav.scrolled {
  background: rgba(44,32,24,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 13px 0;
  border-bottom: 1px solid rgba(200,168,120,0.2);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo img {
  height: 42px;
  width: auto;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 0.84rem;
  font-weight: 500;
  color: rgba(250,247,242,0.8);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--honey); }
.nav-cta { display: flex; gap: 10px; align-items: center; }
.nav-cta .btn { padding: 10px 20px; font-size: 0.8rem; }

@media (max-width: 767px) {
  .nav-links { display: none; }
}

/* ============================================================
   HERO
============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { object-position: center 40%; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(44,32,24,0.82) 0%,
    rgba(44,32,24,0.62) 55%,
    rgba(44,32,24,0.42) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 130px 24px 80px;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.hero-content .label { color: var(--honey); margin-bottom: 18px; }
.hero-content h1 { margin-bottom: 20px; max-width: 850px; }
.hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.08rem);
  color: rgba(250,247,242,0.78);
  font-weight: 300;
  max-width: 600px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 44px;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 10px;
}
.stars { display: flex; gap: 2px; }
.stars svg { width: 16px; height: 16px; fill: var(--honey); }
.proof-text { font-size: 0.84rem; color: rgba(250,247,242,0.65); }
.proof-text strong { color: var(--linen); font-weight: 600; }

/* ============================================================
   TRUST BAR
============================================================ */
#trust {
  background: var(--walnut);
  padding: 28px 0;
  border-bottom: 1px solid rgba(200,168,120,0.12);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 10px 8px;
}
.trust-icon svg {
  width: 26px; height: 26px;
  stroke: var(--honey);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.trust-copy strong {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--linen);
  margin-bottom: 2px;
}
.trust-copy span {
  font-size: 0.73rem;
  color: rgba(240,233,218,0.6);
  line-height: 1.4;
}

@media (max-width: 767px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .trust-grid .trust-item:last-child { grid-column: 1 / -1; }
}

/* ============================================================
   SERVICES
============================================================ */
#services { padding: 80px 24px; background: var(--linen); }

.section-header { text-align: center; margin-bottom: 52px; }
.section-header .label { margin-bottom: 10px; }
.section-header h2 { margin-bottom: 14px; }
.section-divider {
  width: 44px; height: 2px;
  background: var(--amber);
  margin: 0 auto 14px;
}
.section-header p { max-width: 520px; margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--parchment);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(44,32,24,0.06);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(44,32,24,0.1);
  border-color: var(--honey);
}
.service-card-img { height: 185px; overflow: hidden; }
.service-card-img img { transition: transform 0.4s; }
.service-card:hover .service-card-img img { transform: scale(1.04); }

.service-card-body { padding: 20px 20px 24px; }
.service-card-icon { margin-bottom: 12px; }
.service-card-icon svg {
  width: 34px; height: 34px;
  stroke: var(--amber);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card-body h3 { margin-bottom: 8px; }
.service-card-body p { font-size: 0.87rem; line-height: 1.6; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 14px;
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  transition: gap 0.2s;
}
.service-link:hover { gap: 9px; }
.service-link svg {
  width: 13px; height: 13px;
  stroke: currentColor; fill: none;
  stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}

@media (max-width: 1023px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .services-grid { grid-template-columns: 1fr; } }

/* ============================================================
   ABOUT
============================================================ */
#about { position: relative; padding: 80px 24px; overflow: hidden; }
.about-bg { position: absolute; inset: 0; }
.about-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(44,32,24,0.93) 45%, rgba(44,32,24,0.78) 100%);
}
.about-inner {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.about-text .label { color: var(--honey); margin-bottom: 14px; }
.about-text h2 { color: var(--linen); margin-bottom: 20px; }
.about-text h2 em { color: var(--honey); }
.about-text p { color: rgba(240,233,218,0.72); margin-bottom: 15px; font-size: 0.95rem; line-height: 1.75; }

.about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 6px; }
.pillar { display: flex; align-items: flex-start; gap: 10px; }
.pillar svg {
  width: 15px; height: 15px;
  stroke: var(--honey); fill: none;
  stroke-width: 2.5; flex-shrink: 0; margin-top: 3px;
}
.pillar span { font-size: 0.86rem; font-weight: 500; color: rgba(250,247,242,0.88); }

.about-quote {
  background: rgba(250,247,242,0.05);
  border: 1px solid rgba(200,168,120,0.28);
  border-left: 3px solid var(--honey);
  border-radius: var(--radius);
  padding: 32px;
}
.quote-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.quote-stars svg { width: 13px; height: 13px; fill: var(--honey); }
.about-quote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  color: var(--honey);
  line-height: 1.65;
  margin-bottom: 18px;
}
.quote-author {
  font-size: 0.73rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(240,233,218,0.5);
}
.quote-author span { color: rgba(250,247,242,0.82); }

@media (max-width: 767px) {
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-pillars { grid-template-columns: 1fr; }
}

/* ============================================================
   REVIEWS
============================================================ */
#reviews { padding: 80px 24px; background: var(--sand); }
#reviews .section-header h2 { color: var(--walnut); }

.rating-badge {
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  margin: 36px 0 48px;
}
.rating-score {
  font-family: var(--font-display);
  font-size: 3.5rem; font-weight: 700;
  color: var(--amber); line-height: 1;
}
.rating-badge .stars svg { width: 18px; height: 18px; }
.rating-badge p { font-size: 0.82rem; color: var(--stone); }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card {
  background: var(--white);
  border: 1px solid var(--parchment);
  border-left: 3px solid var(--honey);
  border-radius: var(--radius);
  padding: 26px 24px 22px;
  display: flex; flex-direction: column;
  box-shadow: 0 1px 6px rgba(44,32,24,0.05);
}
.review-card .stars { margin-bottom: 14px; }
.review-card .stars svg { width: 13px; height: 13px; }
.review-card blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem; color: var(--umber);
  line-height: 1.65; flex: 1; margin-bottom: 18px;
}
.review-author {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--stone);
}
.review-author span { color: var(--walnut); }

@media (max-width: 767px) { .reviews-grid { grid-template-columns: 1fr; } }
@media (max-width: 1023px) and (min-width: 768px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid .review-card:last-child { grid-column: 1 / -1; }
}

/* ============================================================
   CTA BAND
============================================================ */
#cta-band {
  padding: 80px 24px;
  background: linear-gradient(135deg, #8B6535 0%, #7A5628 100%);
  text-align: center;
}
#cta-band .label { color: rgba(250,247,242,0.65); margin-bottom: 14px; }
#cta-band h2 { color: var(--linen); margin-bottom: 12px; }
#cta-band p {
  color: rgba(250,247,242,0.68);
  margin-bottom: 36px; font-size: 0.97rem;
  max-width: 440px; margin-left: auto; margin-right: auto;
}
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.btn-linen { background: var(--linen); color: var(--amber); }
.btn-linen:hover { background: #fff; transform: translateY(-1px); }
.btn-outline-linen {
  background: transparent; color: var(--linen);
  border: 1.5px solid rgba(250,247,242,0.45);
}
.btn-outline-linen:hover { border-color: var(--linen); }

/* ============================================================
   FOOTER
============================================================ */
#footer {
  background: var(--walnut);
  border-top: 1px solid rgba(200,168,120,0.12);
  padding: 56px 24px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  max-width: var(--max-w); margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(250,247,242,0.07);
}
.footer-logo { height: 40px; width: auto; object-fit: contain; margin-bottom: 14px; }
.footer-brand p { font-size: 0.87rem; color: rgba(240,233,218,0.58); line-height: 1.6; max-width: 260px; }
.footer-col h4 {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--honey); margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { font-size: 0.86rem; color: rgba(240,233,218,0.58); margin-bottom: 8px; line-height: 1.55; }
.footer-col ul li a { transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--honey); }
.footer-bottom {
  max-width: var(--max-w); margin: 26px auto 0;
  display: flex; flex-wrap: wrap;
  justify-content: space-between; gap: 10px;
  font-size: 0.75rem; color: rgba(240,233,218,0.32);
}

@media (max-width: 767px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }

/* ============================================================
   FLOATING MOBILE CTA
============================================================ */
#mobile-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--amber); color: var(--linen);
  padding: 15px 24px;
  font-family: var(--font-body); font-size: 0.88rem;
  font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
  align-items: center; justify-content: center; gap: 10px;
  border-top: 1px solid rgba(250,247,242,0.18);
  transition: filter 0.2s; text-decoration: none;
}
#mobile-cta:hover { filter: brightness(1.08); }
#mobile-cta svg {
  width: 17px; height: 17px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  #mobile-cta { display: flex; }
  body { padding-bottom: 60px; }
}

/* ============================================================
   COOKIE BANNER
============================================================ */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: rgba(44,32,24,0.97);
  border-top: 1px solid rgba(200,168,120,0.18);
  backdrop-filter: blur(10px);
  padding: 16px 24px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px; flex-wrap: wrap;
  transition: transform 0.3s;
}
#cookie-banner.hidden { transform: translateY(100%); }
#cookie-banner p { font-size: 0.81rem; color: rgba(240,233,218,0.62); flex: 1; min-width: 240px; }
#cookie-banner a { color: var(--honey); text-decoration: underline; }
#cookie-accept {
  background: var(--amber); color: var(--linen); border: none;
  padding: 9px 22px; border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.8rem;
  font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase;
  cursor: pointer; white-space: nowrap; transition: filter 0.2s;
}
#cookie-accept:hover { filter: brightness(1.1); }

@media (max-width: 767px) {
  #cookie-banner { bottom: 60px; }
  #cookie-banner.hidden { transform: translateY(calc(100% + 60px)); }
}

/* ============================================================
   FAQ
============================================================ */
#faq {
  background: var(--linen);
  padding: 80px 24px;
}
#faq h2 {
  text-align: center;
  margin-bottom: 60px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--umber);
  letter-spacing: -0.01em;
}
.faq-grid {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--parchment);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.faq-item:hover {
  box-shadow: 0 2px 12px rgba(44,32,24,0.08);
  border-color: var(--honey);
}
.faq-trigger {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--umber);
  text-align: left;
  transition: color 0.2s;
}
.faq-trigger:hover {
  color: var(--amber);
}
.faq-question {
  flex: 1;
}
.faq-icon {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-trigger[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}
.faq-answer {
  padding: 0 22px 22px;
  color: var(--stone);
  font-size: 0.95rem;
  line-height: 1.65;
  animation: slideDown 0.3s ease-out;
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.faq-answer p {
  margin: 0;
}

/* ============================================================
   SCROLL REVEAL
============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@media (max-width: 767px) {
  #services, #about, #reviews { padding: 60px 20px; }
  #cta-band { padding: 60px 20px; }
  #faq { padding: 60px 20px; }
}
