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

:root {
  --black:      #0A0A0A;
  --charcoal:   #161616;
  --dark:       #1E1E1E;
  --gold:       #C5A55A;
  --gold-light: #E2CB8E;
  --gold-muted: #8A6E32;
  --cream:      #F9F5EE;
  --warm:       #F2EDE3;
  --text:       #1A1A1A;
  --muted:      #6B6866;
  --border:     rgba(197,165,90,0.2);
  --border-light: #E8E8E8;
  --white:      #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  font-weight: 400;
}

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

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

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.eyebrow.light { color: var(--gold); }

.section-head { margin-bottom: 56px; }
.section-head.centered { text-align: center; }
.section-head h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.75;
}
.section-head.centered .section-sub { margin: 0 auto; }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.08);
  z-index: 9999;
  padding: 16px 24px;
}
.cookie-content {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-content p { flex: 1; font-size: 13px; color: var(--muted); }
.cookie-buttons { display: flex; gap: 10px; flex-shrink: 0; }

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-box {
  background: var(--white);
  border-radius: 4px;
  padding: 40px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}
.modal-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--text);
}
.cookie-option { margin-bottom: 18px; }
.cookie-option label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}
.cookie-option label input { width: 15px; height: 15px; accent-color: var(--gold); }
.cookie-option p { font-size: 13px; color: var(--muted); margin-top: 4px; padding-left: 25px; }

.modal-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--muted);
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.modal-close:hover { color: var(--text); }

.contact-form-box { position: relative; max-width: 580px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  padding: 13px 30px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  font-family: 'Inter', sans-serif;
  text-align: center;
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
}
.btn-gold.btn-lg { padding: 16px 36px; font-size: 15px; }
.btn-gold.btn-full { width: 100%; }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  padding: 13px 30px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid var(--border-light);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  font-family: 'Inter', sans-serif;
}
.btn-ghost:hover { border-color: var(--gold); }

.btn-ghost-white {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 16px 36px;
  border-radius: 2px;
  font-size: 15px;
  font-weight: 500;
  border: 1.5px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  font-family: 'Inter', sans-serif;
}
.btn-ghost-white:hover {
  border-color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.06);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border-light);
  height: 68px;
  backdrop-filter: blur(12px);
}
.nav-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.5px;
}
.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.3px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-links .nav-cta {
  background: var(--gold);
  color: var(--black) !important;
  padding: 9px 20px;
  border-radius: 2px;
  font-weight: 600;
  font-size: 13px;
  transition: background 0.2s !important;
}
.nav-links .nav-cta:hover { background: var(--gold-light) !important; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.52) 55%, rgba(0,0,0,0.18) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 640px;
  padding: 0 28px;
  margin-left: calc((100vw - 1140px) / 2);
}
.hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  border-left: 2px solid var(--gold);
  padding-left: 12px;
}
.hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 6vw, 78px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 22px;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-content p {
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.45);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(197,165,90,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ============================================================
   FEATURE STRIP
   ============================================================ */
.feature-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  border-top: 1px solid var(--border-light);
  padding: 40px 0;
}
.strip-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.strip-item {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}
.strip-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.strip-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--muted);
  text-transform: uppercase;
}
.strip-divider {
  width: 1px;
  height: 50px;
  background: var(--border-light);
  flex-shrink: 0;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process {
  padding: 110px 0;
  background: var(--white);
}
.process .section-head h2 { color: var(--text); }
.process .section-sub { color: var(--muted); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.process-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  padding: 40px 28px;
  border-top: 2px solid var(--border-light);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  position: relative;
}
.process-card:hover {
  border-color: var(--gold);
  border-top-color: var(--gold);
  background: var(--cream);
  box-shadow: 0 8px 32px rgba(197,165,90,0.1);
}
.process-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 20px;
  transition: opacity 0.2s;
}
.process-card:hover .process-num { opacity: 0.6; }
.process-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}
.process-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 110px 0;
  background: #FAFAFA;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.testimonials .section-head h2 { color: var(--text); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 0 0 32px;
  overflow: hidden;
  position: relative;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.testimonial-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(197,165,90,0.12);
}
.testimonial-photo {
  width: 100%;
  height: 220px;
  overflow: hidden;
  margin-bottom: 24px;
}
.testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.testimonial-card:hover .testimonial-photo img { transform: scale(1.04); }
.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  color: var(--gold);
  opacity: 0.35;
  line-height: 0.6;
  margin-bottom: 14px;
  display: block;
  padding: 0 28px;
}
.testimonial-card > p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
  padding: 0 28px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 28px;
}
.testimonial-author strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.testimonial-author span {
  font-size: 12px;
  color: var(--muted);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 110px 0;
  background: var(--white);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-info-side .eyebrow { display: block; }
.contact-info-side h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
}
.contact-info-side > p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 40px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-detail-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.detail-icon {
  font-size: 18px;
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}
.contact-detail-item strong {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 4px;
}
.contact-detail-item p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
}
.contact-detail-item a {
  color: var(--gold-muted);
  transition: color 0.2s;
}
.contact-detail-item a:hover { color: var(--gold); }

/* Contact Form */
.contact-form {
  background: var(--white);
  padding: 44px 40px;
  border-radius: 4px;
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 40px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text);
}
.form-group input,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--border-light);
  border-radius: 2px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  background: #FAFAFA;
  color: var(--text);
  transition: border-color 0.2s, background 0.2s;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #bbb; }

/* ============================================================
   MAP SECTION
   ============================================================ */
.map-section {
  display: flex;
  flex-direction: column;
}
.map-label {
  background: var(--white);
  padding: 36px 28px;
  text-align: center;
  border-top: 1px solid var(--border-light);
}
.map-label p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 6px;
}
.map-embed {
  width: 100%;
  height: 420px;
  display: block;
  filter: grayscale(0.2) contrast(1.02);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--text);
  color: #888;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.3fr 1fr;
  gap: 48px;
  padding: 72px 0 56px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand .nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  display: block;
}
.footer-brand p { font-size: 13px; color: #888; line-height: 1.7; margin-bottom: 10px; }
.footer-brand .disclaimer { font-size: 11px; color: #555; font-style: italic; }
.footer-nav-group h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-nav-group ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-nav-group a { font-size: 13px; color: #777; transition: color 0.2s; }
.footer-nav-group a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 12px;
  color: #555;
  flex-wrap: wrap;
  gap: 10px;
}
.cookie-pref-btn {
  background: none;
  border: 1px solid #333;
  color: #666;
  padding: 6px 14px;
  border-radius: 2px;
  cursor: pointer;
  font-size: 11px;
  letter-spacing: 0.5px;
  transition: border-color 0.2s, color 0.2s;
}
.cookie-pref-btn:hover { border-color: #666; color: #999; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hero-content { margin-left: 28px; }
}

@media (max-width: 960px) {
  .process-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .strip-grid { flex-wrap: wrap; }
  .strip-divider { display: none; }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
    padding: 8px 0;
    align-items: flex-start;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links li a { display: block; padding: 14px 28px; font-size: 15px; color: var(--muted); }
  .nav-links .nav-cta { background: transparent; border-radius: 0; padding: 14px 28px; }
  .burger { display: flex; }

  .hero { justify-content: center; }
  .hero-content { margin-left: 0; text-align: center; padding: 0 20px; }
  .hero-eyebrow { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-content p { margin-left: auto; margin-right: auto; }

  .process-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .strip-item { flex: 0 1 45%; }
}
