@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Open+Sans:wght@300;400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; color: #333; background: #fff; font-size: 16px; line-height: 1.7; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

:root {
  --gold: #b8a063;
  --gold-hover: #a89255;
  --gold-footer: #baa368;
  --dark-hero: #1a1a1a;
  --dark-cta: #2a2a2a;
  --text-black: #222;
  --text-body: #333;
  --text-muted: #666;
  --bg-off-white: #f7f5f1;
  --bg-tan: #f0ece3;
  --white: #fff;
}

/* CONTAINER */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ============================
   HEADER
============================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: background 0.3s, padding 0.3s, box-shadow 0.3s;
  background: transparent;
}
.site-header.scrolled {
  background: var(--dark-hero);
  padding: 14px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo-wrap { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-svg { width: 48px; height: 48px; flex-shrink: 0; }
.logo-text { font-family: 'Playfair Display', serif; color: var(--white); font-size: 18px; line-height: 1.15; }
.logo-text span { display: block; font-size: 11px; letter-spacing: 2px; color: var(--gold); font-family: 'Open Sans', sans-serif; font-weight: 400; text-transform: uppercase; }

/* NAV */
.main-nav ul { display: flex; gap: 36px; }
.main-nav a {
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.25s;
}
.main-nav a:hover { color: var(--gold); }
.main-nav a:hover::after { width: 100%; }
.main-nav a.active { color: var(--gold); }

/* HAMBURGER */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE NAV */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--dark-hero);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 22px;
  font-family: 'Playfair Display', serif;
  color: var(--white);
  letter-spacing: 1px;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-close {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 28px;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}

/* ============================
   HERO
============================ */
.hero {
  min-height: 100vh;
  background-color: var(--dark-hero);
  background-image: url('../photo/hero-bg.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,26,26,0.72) 0%, rgba(26,26,26,0.58) 60%, rgba(26,26,26,0.8) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 0 24px;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
  display: block;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 64px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 26px;
}
.hero-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.75;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 14px 34px;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  border: 2px solid var(--gold);
  transition: background 0.25s, color 0.25s;
  cursor: pointer;
}
.btn-gold:hover { background: var(--gold-hover); border-color: var(--gold-hover); }
.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 14px 34px;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.65);
  transition: background 0.25s, border-color 0.25s;
  cursor: pointer;
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

/* ============================
   PROFILE CARDS
============================ */
.profile-cards-section {
  background: var(--bg-tan);
  padding: 90px 0;
}
.profile-cards-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.profile-card {
  background: var(--white);
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 340px;
}
.profile-card-img {
  width: 220px;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  flex-shrink: 0;
}
.profile-card-body { padding: 36px 32px; }
.profile-card-eyebrow {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}
.profile-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--text-black);
  margin-bottom: 18px;
  line-height: 1.25;
}
.profile-card-body ul { margin-bottom: 24px; }
.profile-card-body ul li {
  font-size: 14px;
  color: var(--text-body);
  padding: 5px 0;
  border-bottom: 1px solid #ede9e0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
}
.profile-card-body ul li i { color: var(--gold); font-size: 12px; margin-top: 3px; flex-shrink: 0; }
.btn-dark {
  display: inline-block;
  background: var(--text-black);
  color: var(--white);
  padding: 11px 26px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  border: 2px solid var(--text-black);
  transition: background 0.25s, color 0.25s;
}
.btn-dark:hover { background: var(--gold); border-color: var(--gold); }

/* ============================
   INTRO SPLIT
============================ */
.intro-split { padding: 100px 0; background: var(--white); }
.intro-split-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.intro-text .gold-rule { width: 48px; height: 2px; background: var(--gold); margin-bottom: 22px; }
.intro-text .eyebrow { margin-bottom: 12px; color: var(--gold); }
.intro-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  color: var(--text-black);
  line-height: 1.22;
  margin-bottom: 24px;
}
.intro-text p { color: var(--text-body); font-size: 15.5px; margin-bottom: 18px; line-height: 1.8; }
.intro-photo img { width: 100%; height: 480px; object-fit: cover; }

/* ============================
   SERVICE GRID
============================ */
.service-grid-section {
  background: var(--bg-tan);
  padding: 90px 0;
  text-align: center;
}
.section-header { margin-bottom: 50px; }
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  color: var(--text-black);
  margin-top: 10px;
  line-height: 1.2;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.service-tile {
  background: var(--bg-off-white);
  padding: 34px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: default;
  transition: background 0.25s, color 0.25s;
  border: 1px solid #e8e3d8;
}
.service-tile i {
  font-size: 28px;
  color: var(--gold);
  transition: color 0.25s;
}
.service-tile span {
  font-size: 13px;
  letter-spacing: 0.5px;
  color: var(--text-black);
  font-weight: 500;
  text-align: center;
  transition: color 0.25s;
}
.service-tile:hover { background: var(--gold); }
.service-tile:hover i { color: var(--white); }
.service-tile:hover span { color: var(--white); }

/* ============================
   CTA BAND
============================ */
.cta-band {
  background: var(--dark-cta);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}
.cta-band-img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}
.cta-band-body {
  padding: 70px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cta-band-body .eyebrow { color: var(--gold); margin-bottom: 16px; }
.cta-band-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: var(--white);
  line-height: 1.22;
  margin-bottom: 20px;
}
.cta-band-body p { color: rgba(255,255,255,0.78); font-size: 15px; line-height: 1.75; margin-bottom: 32px; max-width: 420px; }

/* ============================
   DUAL TEXT
============================ */
.dual-text { padding: 95px 0; background: var(--white); }
.dual-text-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; }
.dual-col .eyebrow { margin-bottom: 10px; }
.dual-col h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--text-black);
  margin-bottom: 22px;
  line-height: 1.28;
}
.dual-col ul { margin-bottom: 10px; }
.dual-col ul li {
  font-size: 14.5px;
  color: var(--text-body);
  padding: 7px 0;
  border-bottom: 1px solid #ede9e0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.dual-col ul li i { color: var(--gold); font-size: 12px; margin-top: 4px; flex-shrink: 0; }
.dual-col p { font-size: 15px; color: var(--text-body); line-height: 1.8; margin-bottom: 16px; }
.divider-thin { width: 100%; height: 1px; background: #e6e1d6; margin: 10px 0 20px; }

/* ============================
   FAQ
============================ */
.faq-section { padding: 90px 0; background: var(--bg-off-white); }
.faq-section .section-header { text-align: center; margin-bottom: 44px; }
.faq-section .section-header h2 { font-family: 'Playfair Display', serif; font-size: 36px; color: var(--text-black); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #ddd8cc; }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 4px;
  cursor: pointer;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--text-black);
  user-select: none;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--gold); }
.faq-question .faq-icon {
  color: var(--gold);
  font-size: 14px;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-question.open .faq-icon { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
  padding: 0 4px;
}
.faq-answer.open { max-height: 400px; padding-bottom: 20px; }
.faq-answer p { font-size: 15px; color: var(--text-body); line-height: 1.75; }

/* ============================
   CONTACT MINI
============================ */
.contact-mini {
  padding: 80px 0;
  background: var(--bg-tan);
  text-align: center;
}
.contact-mini .section-header { margin-bottom: 36px; }
.contact-mini .section-header h2 { font-family: 'Playfair Display', serif; font-size: 34px; color: var(--text-black); }
.contact-mini-items { display: flex; justify-content: center; gap: 52px; flex-wrap: wrap; }
.contact-mini-item { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.contact-mini-item i { font-size: 24px; color: var(--gold); }
.contact-mini-item span { font-size: 14px; color: var(--text-body); }
.contact-mini-item a { color: var(--text-body); transition: color 0.2s; }
.contact-mini-item a:hover { color: var(--gold); }
.contact-mini-link { display: inline-block; margin-top: 36px; }

/* ============================
   FOOTER
============================ */
.site-footer {
  background: var(--dark-hero);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col .footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--white);
}
.footer-col .footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
  line-height: 1.55;
  max-width: 200px;
}
.footer-col h4 {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
.footer-contact-item i { color: var(--gold); font-size: 13px; margin-top: 3px; flex-shrink: 0; }
.footer-social { display: flex; flex-direction: column; gap: 12px; margin-top: 4px; }
.footer-social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-social-link i { color: var(--gold); font-size: 16px; }
.footer-social-link:hover { color: var(--gold); }
.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 12.5px;
  color: rgba(255,255,255,0.35);
}
.footer-bottom-links { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-top: 6px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--gold); }

/* ============================
   COOKIE BANNER
============================ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--dark-cta);
  z-index: 2000;
  padding: 20px 0;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 2px solid var(--gold);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.cookie-banner p {
  flex: 1;
  font-size: 13.5px;
  color: rgba(255,255,255,0.82);
  line-height: 1.6;
  min-width: 220px;
}
.cookie-banner p a { color: var(--gold); text-decoration: underline; }
.cookie-btn-accept { background: var(--gold); color: var(--white); border: none; padding: 11px 26px; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; font-weight: 600; cursor: pointer; transition: background 0.2s; }
.cookie-btn-accept:hover { background: var(--gold-hover); }
.cookie-btn-decline { background: transparent; color: rgba(255,255,255,0.55); border: 1px solid rgba(255,255,255,0.25); padding: 11px 22px; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; font-weight: 400; cursor: pointer; transition: color 0.2s; }
.cookie-btn-decline:hover { color: var(--white); }

/* ============================
   PAGE HERO (sub-pages)
============================ */
.page-hero {
  background: var(--dark-hero);
  padding: 148px 0 80px;
  text-align: center;
}
.page-hero .eyebrow { margin-bottom: 14px; }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  color: var(--white);
  font-style: italic;
  line-height: 1.15;
  max-width: 700px;
  margin: 0 auto;
}

/* ============================
   TEXT PAGE (privacy / terms / cookies)
============================ */
.text-page { padding: 80px 0 100px; }
.text-page-inner { max-width: 820px; margin: 0 auto; }
.text-page h2 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: var(--text-black);
  margin: 42px 0 14px;
}
.text-page h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-black);
  margin: 28px 0 10px;
}
.text-page p { font-size: 15px; color: var(--text-body); line-height: 1.82; margin-bottom: 16px; }
.text-page ul { margin: 12px 0 18px 22px; list-style: disc; }
.text-page ul li { font-size: 15px; color: var(--text-body); line-height: 1.75; margin-bottom: 6px; }
.text-page .divider-thin { margin: 30px 0; }
.text-page-last-update { font-size: 13px; color: var(--text-muted); margin-bottom: 30px; }

/* ============================
   CONTACT FORM PAGE
============================ */
.contact-layout {
  padding: 80px 0;
  background: var(--bg-off-white);
}
.contact-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-form-col h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--text-black);
  margin-bottom: 8px;
  line-height: 1.22;
}
.contact-form-col > p { font-size: 14.5px; color: var(--text-muted); margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-group { margin-bottom: 28px; }
.form-group label { display: block; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); font-weight: 600; margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #c8c4bb;
  padding: 8px 0;
  font-size: 15px;
  color: var(--text-black);
  font-family: 'Open Sans', sans-serif;
  outline: none;
  transition: border-color 0.25s;
  -webkit-appearance: none;
}
.form-group select { cursor: pointer; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-bottom-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea { border-bottom-color: #c0392b; }
.form-error-msg { font-size: 12px; color: #c0392b; margin-top: 5px; display: none; }
.form-group.has-error .form-error-msg { display: block; }
.checkbox-row { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 28px; }
.checkbox-row input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; accent-color: var(--gold); }
.checkbox-row label { font-size: 13px; color: var(--text-body); line-height: 1.55; }
.checkbox-row label a { color: var(--gold); text-decoration: underline; }
.form-success { background: #e8f4e8; color: #2d6a2d; padding: 16px 20px; font-size: 14px; margin-bottom: 24px; border-left: 3px solid #4caf50; display: none; }
.form-success.visible { display: block; }
.form-error-global { background: #fde8e8; color: #8b2222; padding: 16px 20px; font-size: 14px; margin-bottom: 24px; border-left: 3px solid #c0392b; display: none; }
.form-error-global.visible { display: block; }
.map-col iframe { width: 100%; height: 420px; border: none; filter: grayscale(30%); }
.map-col h3 { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--text-black); margin-bottom: 16px; }
.map-contact-details { margin-top: 24px; }
.map-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.map-contact-item i { color: var(--gold); font-size: 14px; margin-top: 3px; }
.map-contact-item span { font-size: 14px; color: var(--text-body); line-height: 1.5; }

/* ============================
   PRICING PAGE
============================ */
.pricing-section { padding: 80px 0; background: var(--white); }
.pricing-section .section-header { text-align: center; margin-bottom: 52px; }
.pricing-section .section-header h2 { font-family: 'Playfair Display', serif; font-size: 38px; color: var(--text-black); }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 28px; margin-bottom: 40px; }
.pricing-card {
  border: 1px solid #ddd8cc;
  padding: 42px 32px;
  position: relative;
  transition: box-shadow 0.25s;
}
.pricing-card:hover { box-shadow: 0 8px 36px rgba(0,0,0,0.1); }
.pricing-card.featured {
  background: var(--dark-cta);
  border-color: var(--dark-cta);
  color: var(--white);
}
.pricing-badge {
  position: absolute;
  top: -12px; right: 24px;
  background: var(--gold);
  color: var(--white);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 14px;
}
.pricing-card-eyebrow { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 10px; }
.pricing-card h3 { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--text-black); margin-bottom: 6px; }
.pricing-card.featured h3 { color: var(--white); }
.pricing-price { font-size: 48px; font-family: 'Playfair Display', serif; color: var(--text-black); font-weight: 700; margin: 16px 0; line-height: 1; }
.pricing-price span { font-size: 20px; font-weight: 400; }
.pricing-card.featured .pricing-price { color: var(--white); }
.pricing-card hr { border: none; border-top: 1px solid #e0dbd0; margin: 20px 0; }
.pricing-card.featured hr { border-top-color: rgba(255,255,255,0.15); }
.pricing-features { margin-bottom: 30px; }
.pricing-features li { font-size: 14px; color: var(--text-body); padding: 7px 0; border-bottom: 1px solid #ede9e0; display: flex; align-items: flex-start; gap: 10px; }
.pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.8); border-bottom-color: rgba(255,255,255,0.12); }
.pricing-features li i { color: var(--gold); font-size: 11px; margin-top: 4px; }
.pricing-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 820px; margin: 0 auto 60px; }

.payment-section { padding: 60px 0; background: var(--bg-tan); }
.payment-section .section-header { text-align: center; margin-bottom: 40px; }
.payment-section .section-header h2 { font-family: 'Playfair Display', serif; font-size: 32px; color: var(--text-black); }
.payment-methods { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.payment-method { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.payment-method i { font-size: 32px; color: var(--gold); }
.payment-method span { font-size: 14px; color: var(--text-body); font-weight: 500; }
.pricing-note { max-width: 700px; margin: 36px auto 0; background: var(--bg-off-white); border-left: 3px solid var(--gold); padding: 18px 22px; font-size: 14px; color: var(--text-body); line-height: 1.65; }

/* ============================
   ABOUT PAGE
============================ */
.about-story { padding: 90px 0; background: var(--white); }
.about-story-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-story-text .eyebrow { margin-bottom: 10px; }
.about-story-text h2 { font-family: 'Playfair Display', serif; font-size: 36px; color: var(--text-black); margin-bottom: 26px; line-height: 1.22; }
.about-story-text p { font-size: 15.5px; color: var(--text-body); line-height: 1.82; margin-bottom: 18px; }
.about-story-photo img { width: 100%; height: 500px; object-fit: cover; }
.stat-row { display: flex; gap: 40px; margin-top: 28px; flex-wrap: wrap; }
.stat-item .stat-num { font-family: 'Playfair Display', serif; font-size: 42px; color: var(--gold); font-weight: 700; line-height: 1; }
.stat-item .stat-label { font-size: 12px; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; }

.values-section { padding: 80px 0; background: var(--bg-tan); }
.values-section .section-header { text-align: center; margin-bottom: 46px; }
.values-section .section-header h2 { font-family: 'Playfair Display', serif; font-size: 36px; color: var(--text-black); }
.values-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 28px; }
.value-card { background: var(--white); padding: 42px 32px; text-align: center; }
.value-card i { font-size: 32px; color: var(--gold); margin-bottom: 18px; display: block; }
.value-card h3 { font-family: 'Playfair Display', serif; font-size: 21px; color: var(--text-black); margin-bottom: 14px; }
.value-card p { font-size: 14.5px; color: var(--text-body); line-height: 1.7; }

.team-section { padding: 90px 0; background: var(--white); }
.team-section .section-header { text-align: center; margin-bottom: 46px; }
.team-section .section-header h2 { font-family: 'Playfair Display', serif; font-size: 36px; color: var(--text-black); }
.team-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 1024px) {
  .hero h1 { font-size: 52px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .profile-cards-wrap { gap: 24px; }
  .profile-card { grid-template-columns: 180px 1fr; }
  .profile-card-img { width: 180px; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .hero h1 { font-size: 38px; }
  .hero-subtitle { font-size: 15px; }
  .profile-cards-wrap { grid-template-columns: 1fr; }
  .profile-card { grid-template-columns: 1fr; }
  .profile-card-img { width: 100%; height: 240px; min-height: 0; }
  .intro-split-inner { grid-template-columns: 1fr; gap: 40px; }
  .intro-photo img { height: 300px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-band { grid-template-columns: 1fr; }
  .cta-band-img { height: 280px; min-height: 0; }
  .cta-band-body { padding: 48px 32px; }
  .dual-text-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-split { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-grid-2 { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .about-story-inner { grid-template-columns: 1fr; gap: 36px; }
  .about-story-photo img { height: 300px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .page-hero h1 { font-size: 36px; }
  .team-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 28px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-mini-items { flex-direction: column; gap: 28px; }
  .payment-methods { gap: 24px; }
  .stat-row { gap: 24px; }
  .cookie-banner-inner { flex-direction: column; align-items: flex-start; }
  .pricing-grid { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 28px; }
  .cta-band-body { padding: 36px 22px; }
}
