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

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

:root {
  --bg:           #FDFCF8;
  --bg-2:         #F4EDE0;
  --dark:         #17120E;
  --dark-2:       #2B1E14;
  --dark-card:    #1E160F;
  --gold:         #C07D2C;
  --gold-l:       #D4993E;
  --gold-bg:      #FEF4E3;
  --text:         #17120E;
  --text-2:       #7A6A5C;
  --border:       #E3D9CC;
  --white:        #FFFFFF;
  --radius:       12px;
  --radius-lg:    20px;
  --ease:         cubic-bezier(.4,0,.2,1);
  --t:            .28s;
  --shadow:       0 2px 16px rgba(23,18,14,.07);
  --shadow-md:    0 6px 32px rgba(23,18,14,.12);
  --shadow-lg:    0 16px 56px rgba(23,18,14,.18);
  --header-h:     72px;
  --max-w:        1200px;
  --px:           clamp(16px,4vw,48px);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: 'Inter', system-ui, sans-serif; background: var(--bg); color: var(--text); line-height: 1.65; font-size: 16px; }
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul   { list-style: none; }
h1,h2,h3,h4,h5 { font-family: 'Cormorant Garamond', Georgia, serif; line-height: 1.2; font-weight: 600; }

/* ===== UTILITIES ===== */
.container { max-width: var(--max-w); margin-inline: auto; padding-inline: var(--px); }
.section    { padding-block: clamp(56px,8vw,100px); }
.section-alt { background: var(--bg-2); }
.section-dark { background: var(--dark); color: var(--white); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 100px; font-size: .9rem; font-weight: 500;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), background var(--t) var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: var(--gold-l); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(192,125,44,.35); }
.btn-dark    { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: var(--dark-2); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { border: 1.5px solid var(--border); color: var(--text); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-1px); }
.btn-outline-light { border: 1.5px solid rgba(255,255,255,.3); color: var(--white); }
.btn-outline-light:hover { border-color: rgba(255,255,255,.7); transform: translateY(-1px); }
.btn-lg { padding: 15px 40px; font-size: 1rem; }
.btn-sm { padding: 8px 18px; font-size: .825rem; }

/* ===== SECTION HEADER ===== */
.section-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px;
}
.section-tag::before { content: ''; width: 28px; height: 1.5px; background: var(--gold); border-radius: 2px; }
.section-title   { font-size: clamp(2rem,4vw,3.25rem); letter-spacing: -.02em; }
.section-title-light { color: var(--white); }
.section-desc    { font-size: 1.05rem; color: var(--text-2); max-width: 520px; line-height: 1.75; margin-top: 14px; }
.section-desc-light { color: rgba(255,255,255,.55); }
.section-header  { margin-bottom: clamp(36px,5vw,60px); }
.section-header-centered { text-align: center; }
.section-header-centered .section-tag   { justify-content: center; }
.section-header-centered .section-desc  { margin-inline: auto; }

/* ===== HEADER ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h); display: flex; align-items: center;
  transition: background var(--t) var(--ease), border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(253,252,248,.94); backdrop-filter: blur(18px) saturate(1.5);
  border-color: var(--border); box-shadow: var(--shadow);
}
.header-inner {
  display: flex; align-items: center; gap: 24px;
  width: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: var(--px);
}
.logo {
  font-family: 'Cormorant Garamond', serif; font-size: 1.55rem; font-weight: 700;
  color: var(--dark); letter-spacing: -.02em; flex-shrink: 0; line-height: 1;
}
.logo .accent { color: var(--gold); }
.logo-light { color: var(--white); }
.logo-light .accent { color: var(--gold-l); }

.nav-main { display: flex; align-items: center; gap: 2px; flex: 1; }

.nav-item {
  position: relative; padding: 8px 12px; border-radius: 8px;
  font-size: .875rem; font-weight: 500; color: var(--text);
  transition: color var(--t) var(--ease), background var(--t) var(--ease);
  cursor: pointer; user-select: none; white-space: nowrap;
  display: flex; align-items: center; gap: 5px;
}
.nav-item:hover, .nav-item.active { color: var(--gold); background: var(--gold-bg); }
.nav-item svg { flex-shrink: 0; transition: transform var(--t) var(--ease); }
.nav-item:hover svg { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 10px); left: 0;
  min-width: 250px; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 8px; opacity: 0; visibility: hidden;
  transform: translateY(-6px); transition: opacity var(--t) var(--ease), transform var(--t) var(--ease), visibility var(--t);
  z-index: 200;
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 12px; border-radius: 8px; font-size: .85rem; color: var(--text);
  transition: background var(--t) var(--ease), color var(--t) var(--ease);
}
.dropdown a:hover { background: var(--bg-2); color: var(--gold); }
.dropdown a.sub { padding-left: 24px; color: var(--text-2); font-size: .82rem; }
.dropdown a.sub:hover { color: var(--gold); }
.dd-sep { height: 1px; background: var(--border); margin: 6px 4px; }

.header-cta { margin-left: auto; flex-shrink: 0; }

/* Mobile toggle */
.mobile-toggle {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; margin-left: auto;
}
.mobile-toggle span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .35s var(--ease), opacity .25s; }
.mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== MOBILE NAV ===== */
.mobile-nav {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg); z-index: 99; overflow-y: auto;
  padding: calc(var(--header-h) + 24px) 24px 48px;
  transform: translateX(100%); transition: transform .4s cubic-bezier(.7,0,.3,1);
}
.mobile-nav.open { transform: none; }
body.nav-open { overflow: hidden; }

.mob-section-label {
  font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600;
  color: var(--text-2); margin: 28px 0 10px; padding-bottom: 8px; border-bottom: 1px solid var(--border);
}
.mob-section-label:first-child { margin-top: 0; }
.mobile-nav a {
  display: block; padding: 10px 12px; border-radius: 8px; font-size: .95rem;
  color: var(--text); transition: background var(--t) var(--ease), color var(--t) var(--ease);
  margin-bottom: 2px;
}
.mobile-nav a:hover { background: var(--bg-2); color: var(--gold); }
.mob-cta { margin-top: 28px; display: flex; flex-direction: column; gap: 10px; }
.mob-cta .btn { justify-content: center; width: 100%; }

/* ===== HERO (homepage) ===== */
.hero {
  min-height: 100svh; display: flex; align-items: center; position: relative; overflow: hidden;
  background: linear-gradient(140deg, #17120E 0%, #2B1E14 55%, #3A2418 100%);
}
.hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 15% 60%, rgba(192,125,44,.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 85% 15%, rgba(192,125,44,.12) 0%, transparent 50%);
}
.hero-pattern {
  position: absolute; inset: 0; opacity: .04; pointer-events: none;
  background-image: repeating-linear-gradient(45deg, #C07D2C 0, #C07D2C 1px, transparent 0, transparent 50%);
  background-size: 24px 24px;
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin-inline: auto;
  padding: clamp(96px,14vw,140px) var(--px) 80px;
  display: flex; flex-direction: column; gap: 28px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; align-self: flex-start;
  background: rgba(192,125,44,.14); border: 1px solid rgba(192,125,44,.3);
  color: var(--gold-l); padding: 7px 16px; border-radius: 100px;
  font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
}
.hero-title {
  font-size: clamp(3rem,7vw,5.5rem); font-weight: 600; color: var(--white);
  line-height: 1.04; letter-spacing: -.025em; max-width: 800px;
}
.hero-title em { color: var(--gold-l); font-style: italic; }
.hero-sub {
  font-size: clamp(.95rem,1.8vw,1.15rem); color: rgba(255,255,255,.55);
  max-width: 460px; line-height: 1.75;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: clamp(24px,4vw,48px); padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.1); flex-wrap: wrap;
}
.hero-stat-val {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem,4vw,3rem);
  font-weight: 700; color: var(--gold-l); line-height: 1;
}
.hero-stat-lbl { font-size: .78rem; color: rgba(255,255,255,.4); margin-top: 5px; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(140deg, var(--dark) 0%, var(--dark-2) 100%);
  padding: calc(var(--header-h) + 52px) var(--px) 68px;
}
.page-hero-inner { max-width: var(--max-w); margin-inline: auto; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: .78rem; color: rgba(255,255,255,.38); margin-bottom: 24px;
}
.breadcrumb a { color: rgba(255,255,255,.45); transition: color var(--t) var(--ease); }
.breadcrumb a:hover { color: var(--gold-l); }
.breadcrumb .sep { opacity: .35; }
.page-hero-title {
  font-size: clamp(2.25rem,5vw,4rem); font-weight: 600; color: var(--white);
  letter-spacing: -.025em; margin-bottom: 14px;
}
.page-hero-desc { font-size: 1.08rem; color: rgba(255,255,255,.55); max-width: 560px; line-height: 1.75; }

/* ===== TWO-COL ===== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,6vw,80px); align-items: center; }
.two-col-rev { grid-template-columns: 1fr 1fr; }
.two-col-rev > :first-child { order: 2; }
.two-col-rev > :last-child  { order: 1; }

/* ===== IMAGE PLACEHOLDER ===== */
.img-wrap {
  border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(135deg, var(--bg-2) 0%, #E8DECE 100%);
  aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center;
  position: relative;
}
.img-wrap-tall { aspect-ratio: 3/4; }
.img-wrap-sq   { aspect-ratio: 1; }
.img-placeholder-label {
  position: absolute; bottom: 16px; left: 16px;
  background: rgba(0,0,0,.45); color: rgba(255,255,255,.8);
  font-size: .75rem; padding: 4px 10px; border-radius: 20px; backdrop-filter: blur(8px);
}

/* ===== SERVICE CARDS ===== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 20px; }

.service-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px; position: relative; overflow: hidden;
  transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease), transform var(--t) var(--ease);
  display: flex; flex-direction: column;
}
.service-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-l));
  transform: scaleX(0); transform-origin: left; transition: transform var(--t) var(--ease);
}
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover { border-color: transparent; box-shadow: var(--shadow-md); transform: translateY(-4px); }

.sc-icon {
  width: 48px; height: 48px; background: var(--gold-bg); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 20px;
}
.sc-title { font-size: 1.25rem; font-weight: 600; margin-bottom: 8px; }
.sc-desc  { font-size: .88rem; color: var(--text-2); line-height: 1.7; margin-bottom: 20px; flex: 1; }
.sc-link  { font-size: .85rem; font-weight: 500; color: var(--gold); display: flex; align-items: center; gap: 6px; transition: gap var(--t) var(--ease); }
.sc-link:hover { gap: 10px; }

/* ===== BIG SERVICE CARDS (homepage overview) ===== */
.big-service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.big-service-card {
  background: var(--dark-card); border-radius: var(--radius-lg); overflow: hidden;
  position: relative; padding: clamp(28px,4vw,48px); min-height: 360px;
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.big-service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.bsc-glow {
  position: absolute; inset: 0; pointer-events: none;
  transition: opacity var(--t) var(--ease); opacity: .6;
}
.bsc-glow-braids   { background: radial-gradient(ellipse 70% 60% at 80% 20%, rgba(192,125,44,.35) 0%, transparent 60%); }
.bsc-glow-ext      { background: radial-gradient(ellipse 70% 60% at 20% 80%, rgba(192,125,44,.25) 0%, transparent 60%); }
.big-service-card:hover .bsc-glow { opacity: 1; }
.bsc-tag  { font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-l); margin-bottom: 12px; }
.bsc-title { font-size: clamp(1.75rem,3vw,2.5rem); color: var(--white); margin-bottom: 12px; }
.bsc-desc  { font-size: .88rem; color: rgba(255,255,255,.5); margin-bottom: 24px; line-height: 1.7; max-width: 320px; }
.bsc-links { display: flex; flex-direction: column; gap: 8px; }
.bsc-link  {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px; background: rgba(255,255,255,.07); border-radius: 8px;
  font-size: .85rem; color: rgba(255,255,255,.75);
  transition: background var(--t) var(--ease), color var(--t) var(--ease);
}
.bsc-link:hover { background: rgba(192,125,44,.25); color: var(--white); }

/* ===== FEATURES ===== */
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 20px; }
.feature-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px; transition: box-shadow var(--t) var(--ease), transform var(--t) var(--ease);
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.fc-icon { font-size: 2rem; margin-bottom: 16px; }
.fc-title { font-size: 1.15rem; font-weight: 600; margin-bottom: 8px; }
.fc-desc  { font-size: .875rem; color: var(--text-2); line-height: 1.7; }

/* ===== FEATURE LIST (inline) ===== */
.feature-list { display: flex; flex-direction: column; gap: 22px; }
.fi { display: flex; gap: 16px; align-items: flex-start; }
.fi-icon {
  width: 42px; height: 42px; border-radius: 10px; background: var(--gold-bg);
  color: var(--gold); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1.1rem;
}
.fi-title { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.fi-desc  { font-size: .86rem; color: var(--text-2); line-height: 1.65; }

/* ===== PROMO BANNER ===== */
.promo {
  background: linear-gradient(130deg, var(--gold) 0%, #9B621E 100%);
  border-radius: var(--radius-lg); padding: clamp(28px,5vw,52px);
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.promo h3 { font-size: clamp(1.4rem,3vw,2rem); color: var(--white); margin-bottom: 6px; }
.promo p  { color: rgba(255,255,255,.75); font-size: .9rem; }

/* ===== LIST-STYLE SERVICES (inner pages) ===== */
.service-list-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 16px; }
.sl-item {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 22px 24px; display: flex; flex-direction: column; gap: 8px;
  transition: box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}
.sl-item:hover { box-shadow: var(--shadow-md); border-color: var(--gold); }
.sl-title { font-size: 1.1rem; font-weight: 600; }
.sl-desc  { font-size: .86rem; color: var(--text-2); line-height: 1.65; }
.sl-meta  { font-size: .8rem; color: var(--gold); font-weight: 500; margin-top: 4px; }

/* ===== PRICING TABLE ===== */
.pricing-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.pricing-table thead { background: var(--dark); color: var(--white); }
.pricing-table th { padding: 14px 20px; font-size: .78rem; font-weight: 600; text-align: left; letter-spacing: .08em; text-transform: uppercase; }
.pricing-table td { padding: 14px 20px; font-size: .9rem; border-bottom: 1px solid var(--border); }
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:hover td { background: var(--bg); }
.price-val { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; color: var(--gold); }
.price-note { font-size: .78rem; color: var(--text-2); margin-top: 4px; }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; cursor: pointer; font-size: .96rem; font-weight: 500;
  background: var(--white); transition: color var(--t) var(--ease);
  gap: 16px;
}
.faq-q:hover { color: var(--gold); }
.faq-plus {
  width: 26px; height: 26px; border-radius: 50%; background: var(--bg-2);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 1.1rem; color: var(--text-2); transition: transform .35s var(--ease), background var(--t), color var(--t);
}
.faq-item.open .faq-plus { transform: rotate(45deg); background: var(--gold); color: var(--white); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .42s var(--ease);
  background: var(--bg);
}
.faq-a-inner { padding: 4px 24px 22px; font-size: .92rem; color: var(--text-2); line-height: 1.75; }
.faq-item.open .faq-a { max-height: 600px; }

/* ===== CONTACT FORM ===== */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-size: .85rem; font-weight: 500; }
.form-input, .form-select, .form-textarea {
  padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 10px;
  font-size: .94rem; font-family: inherit; color: var(--text); background: var(--white);
  transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(192,125,44,.14);
}
.form-textarea { resize: vertical; min-height: 110px; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A6A5C' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

/* ===== CONTACT CARDS ===== */
.contact-cards { display: grid; grid-template-columns: repeat(auto-fill,minmax(220px,1fr)); gap: 20px; }
.contact-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px;
  transition: box-shadow var(--t) var(--ease), transform var(--t) var(--ease);
}
.contact-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.cc-icon { font-size: 1.8rem; margin-bottom: 14px; }
.cc-label { font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--text-2); margin-bottom: 6px; }
.cc-value { font-size: 1rem; font-weight: 500; }
.cc-value a:hover { color: var(--gold); }

/* ===== SOCIAL LINKS ===== */
.social-row { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn {
  display: flex; align-items: center; gap: 8px; padding: 10px 16px;
  border: 1.5px solid var(--border); border-radius: 10px; font-size: .85rem; font-weight: 500;
  transition: border-color var(--t), color var(--t), background var(--t);
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-bg); }

/* ===== GALLERY GRID ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(260px,1fr)); gap: 14px; }
.gallery-item {
  aspect-ratio: 3/4; border-radius: var(--radius); overflow: hidden; position: relative;
  background: linear-gradient(135deg, var(--bg-2) 0%, #E0D2C0 100%);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: transform var(--t) var(--ease);
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-placeholder {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--text-2); font-size: .85rem; text-align: center; padding: 20px;
}
.gallery-placeholder-icon { font-size: 2.5rem; opacity: .4; }

/* ===== CTA SECTION ===== */
.cta-section {
  text-align: center; padding-block: clamp(56px,8vw,96px);
  background: var(--bg-2);
}
.cta-section .section-title { margin-bottom: 14px; }
.cta-section .section-desc { margin-inline: auto; }
.cta-actions { display: flex; gap: 14px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }

/* ===== ABOUT TEASER ===== */
.about-quote {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(1.5rem,3vw,2.25rem);
  font-style: italic; color: var(--white); line-height: 1.4; margin-bottom: 24px;
  padding-left: 24px; border-left: 3px solid var(--gold);
}

/* ===== TIMELINE ===== */
.timeline { display: flex; flex-direction: column; gap: 0; }
.tl-item { display: flex; gap: 24px; position: relative; padding-bottom: 32px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-left { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.tl-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--gold); border: 3px solid var(--bg); flex-shrink: 0; }
.tl-line { flex: 1; width: 2px; background: var(--border); margin-top: 4px; }
.tl-item:last-child .tl-line { display: none; }
.tl-year { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 700; color: var(--gold); margin-bottom: 4px; }
.tl-text { font-size: .9rem; color: var(--text-2); line-height: 1.65; }

/* ===== REVIEW CARD ===== */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); gap: 20px; }
.review-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px; }
.review-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
.review-text { font-size: .9rem; color: var(--text-2); line-height: 1.75; margin-bottom: 18px; }
.review-author { font-size: .88rem; font-weight: 600; }
.review-date   { font-size: .78rem; color: var(--text-2); margin-top: 2px; }

/* ===== FOOTER ===== */
.site-footer { background: var(--dark); }
.footer-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px;
  padding: clamp(48px,7vw,80px) var(--px) 48px; max-width: var(--max-w); margin-inline: auto;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand p { font-size: .875rem; color: rgba(255,255,255,.45); line-height: 1.7; max-width: 220px; margin-top: 14px; }
.footer-socials { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 20px; }
.fs-btn {
  display: flex; align-items: center; gap: 6px; padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.15); border-radius: 8px;
  font-size: .78rem; color: rgba(255,255,255,.55);
  transition: border-color var(--t), color var(--t);
}
.fs-btn:hover { border-color: var(--gold-l); color: var(--gold-l); }
.footer-col h4 {
  font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.6); margin-bottom: 16px;
}
.footer-col a {
  display: block; font-size: .875rem; color: rgba(255,255,255,.42);
  margin-bottom: 9px; transition: color var(--t) var(--ease);
}
.footer-col a:hover { color: var(--gold-l); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  max-width: var(--max-w); margin-inline: auto; padding: 24px var(--px);
  font-size: .78rem; color: rgba(255,255,255,.28);
}
.footer-bottom a { color: rgba(255,255,255,.32); transition: color var(--t); }
.footer-bottom a:hover { color: rgba(255,255,255,.7); }
.footer-legal { display: flex; gap: 20px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .two-col, .two-col-rev { grid-template-columns: 1fr; }
  .two-col-rev > :first-child { order: unset; }
  .two-col-rev > :last-child  { order: unset; }
  .big-service-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --header-h: 62px; }
  .nav-main, .header-cta { display: none; }
  .mobile-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand p { max-width: none; }
  .promo { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .hero-actions, .cta-actions { flex-direction: column; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; justify-content: center; }
  .big-service-grid { gap: 14px; }
}
