/* ============================================================
   Haareszeiten — Redesign-Konzept
   ============================================================ */

:root{
  --ink: #241a13;
  --ink-soft: #4a3b2f;
  --terracotta: #c05a34;
  --terracotta-dark: #9c4426;
  --terracotta-light: #e98a5c;
  --cream: #faf3e7;
  --sand: #efdfc2;
  --sand-dark: #e0c99b;
  --gold: #b1863f;
  --charcoal: #1c1512;
  --charcoal-soft: #2a2019;
  --white: #ffffff;
  --line: rgba(36,26,19,.12);
  --shadow-sm: 0 2px 10px rgba(36,26,19,.08);
  --shadow-md: 0 12px 32px rgba(36,26,19,.14);
  --shadow-lg: 0 28px 64px rgba(36,26,19,.22);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --ff-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --ff-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --header-h: 84px;
  --ease: cubic-bezier(.22,1,.36,1);
}

html[data-contrast="high"]{
  --ink:#000; --ink-soft:#111; --terracotta:#a83f1c; --terracotta-dark:#7c2f13;
  --cream:#fff; --sand:#f1e6cf; --line: rgba(0,0,0,.4);
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *,*::before,*::after{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

body{
  margin:0;
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--cream);
  font-size: 16.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
html[data-font="lg"] body{ font-size: 18.5px; }
html[data-font="xl"] body{ font-size: 20.5px; }

img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; }
h1,h2,h3,h4{ font-family: var(--ff-display); font-weight:600; margin:0; letter-spacing:-.01em; }
p{ margin:0; }
.container{ max-width:1240px; margin:0 auto; padding:0 28px; }

.skip-link{
  position:absolute; left:12px; top:-60px; background:var(--terracotta); color:#fff;
  padding:12px 18px; border-radius:8px; z-index:999; transition: top .2s var(--ease);
}
.skip-link:focus{ top:12px; }

::selection{ background: var(--terracotta); color:#fff; }

.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size:.78rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase;
  color: var(--terracotta-dark);
}
.eyebrow::before{ content:""; width:22px; height:2px; background: var(--terracotta); border-radius:2px; }

.section{ padding: 108px 0; position:relative; }
.section-head{ max-width: 640px; margin-bottom: 56px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size: clamp(2rem, 3.6vw, 2.9rem); margin-top:14px; }
.section-head p{ margin-top:18px; color: var(--ink-soft); font-size:1.08rem; }

.section--sand{ background: var(--sand); }
.section--dark{ background: var(--charcoal); color: #f3e8d8; }
.section--dark .section-head p{ color: #cbb89a; }
.section--dark h2, .section--dark h3{ color:#fff; }

/* -------- buttons -------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding: 15px 30px; border-radius: 999px; font-weight:600; font-size:.98rem;
  border:1.5px solid transparent; transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s, border-color .3s;
  white-space:nowrap;
}
.btn svg{ width:18px; height:18px; flex:none; }
.btn-primary{ background: var(--terracotta); color:#fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover{ background: var(--terracotta-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost{ background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover{ border-color: var(--terracotta); color: var(--terracotta-dark); transform: translateY(-2px); }
.btn-light{ background:#fff; color:var(--ink); }
.btn-light:hover{ transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-light{ border-color: rgba(255,255,255,.4); color:#fff; }
.btn-outline-light:hover{ border-color:#fff; background: rgba(255,255,255,.08); transform: translateY(-2px); }
.btn-sm{ padding: 10px 20px; font-size:.88rem; }
.btn-block{ width:100%; }

/* -------- concept banner -------- */
.concept-bar{
  background: var(--charcoal); color:#f3e8d8; font-size:.86rem; position:relative; z-index:60;
}
.concept-bar .container{ display:flex; align-items:center; gap:14px; padding-top:10px; padding-bottom:10px; }
.concept-bar strong{ color: var(--terracotta-light); }
.concept-bar .cb-close{ margin-left:auto; background:none; border:none; color:#f3e8d8; opacity:.7; padding:4px; }
.concept-bar .cb-close:hover{ opacity:1; }
.concept-bar[hidden]{ display:none; }

/* -------- header -------- */
.site-header{
  position: sticky; top:0; z-index:50;
  background: rgba(250,243,231,.86); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.site-header.is-scrolled{ border-color: var(--line); box-shadow: 0 6px 24px rgba(36,26,19,.06); }
.site-header .container{ display:flex; align-items:center; gap:32px; height: var(--header-h); }

.brand{ display:flex; align-items:center; gap:12px; font-family: var(--ff-display); font-size:1.5rem; font-weight:600; color: var(--ink); }
.brand .brand-mark{
  width:42px; height:42px; border-radius:50%; background: var(--terracotta); color:#fff;
  display:flex; align-items:center; justify-content:center; font-family: var(--ff-display); font-size:1.1rem;
  box-shadow: var(--shadow-sm);
}

.main-nav{ display:flex; align-items:center; gap:30px; margin-left:12px; }
.main-nav a{ font-size:.95rem; font-weight:600; color: var(--ink-soft); position:relative; padding:6px 0; }
.main-nav a::after{
  content:""; position:absolute; left:0; right:100%; bottom:0; height:2px; background: var(--terracotta);
  transition: right .3s var(--ease);
}
.main-nav a:hover{ color: var(--ink); }
.main-nav a:hover::after{ right:0; }

.header-actions{ margin-left:auto; display:flex; align-items:center; gap:18px; }
.header-phones{ display:flex; flex-direction:column; gap:2px; font-size:.82rem; color: var(--ink-soft); }
.header-phones a{ font-weight:700; color: var(--ink); display:flex; align-items:center; gap:6px; }
.header-phones a:hover{ color: var(--terracotta-dark); }
.header-phones svg{ width:14px; height:14px; color: var(--terracotta); }

.nav-toggle{
  display:none; width:44px; height:44px; border-radius:50%; border:1.5px solid var(--line);
  background:#fff; align-items:center; justify-content:center; flex:none;
}
.nav-toggle svg{ width:20px; height:20px; }

/* -------- mobile nav -------- */
.mobile-nav{
  position: fixed; inset:0; z-index:70; background: var(--charcoal); color:#fff;
  transform: translateX(100%); transition: transform .45s var(--ease);
  display:flex; flex-direction:column; padding: 28px 28px 40px;
}
.mobile-nav.is-open{ transform: translateX(0); }
.mobile-nav-top{ display:flex; align-items:center; justify-content:space-between; margin-bottom:40px; }
.mobile-nav-close{ width:44px; height:44px; border-radius:50%; background: rgba(255,255,255,.08); border:none; color:#fff; display:flex; align-items:center; justify-content:center; }
.mobile-nav ul{ display:flex; flex-direction:column; gap:6px; }
.mobile-nav a{ font-family: var(--ff-display); font-size:2rem; padding:12px 0; border-bottom:1px solid rgba(255,255,255,.1); display:block; }
.mobile-nav-foot{ margin-top:auto; display:flex; flex-direction:column; gap:14px; }
.mobile-nav-foot a{ font-weight:600; color:#f3e8d8; display:flex; gap:10px; align-items:center; }
.mobile-nav-foot svg{ width:18px; height:18px; color: var(--terracotta-light); }

/* -------- hero -------- */
.hero{
  position:relative; overflow:hidden; min-height: calc(100vh - var(--header-h));
  display:flex; align-items:center;
}
.hero-media{ position:absolute; inset:0; z-index:0; }
.hero-media img{ width:100%; height:100%; object-fit:cover; object-position: center 30%; transform: scale(1.08); animation: heroZoom 18s ease-in-out infinite alternate; }
@keyframes heroZoom{ from{ transform: scale(1.08); } to{ transform: scale(1); } }
.hero-media::after{
  content:""; position:absolute; inset:0;
  background: linear-gradient(100deg, rgba(20,14,10,.86) 8%, rgba(20,14,10,.55) 42%, rgba(20,14,10,.25) 68%, rgba(20,14,10,.5) 100%);
}
.hero-content{ position:relative; z-index:2; color:#fff; padding: 160px 0 120px; }
.hero-badge{
  display:inline-flex; align-items:center; gap:10px; padding:8px 16px 8px 8px; border-radius:999px;
  background: rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.25); backdrop-filter: blur(6px);
  font-size:.82rem; font-weight:600; margin-bottom:28px; opacity:0; animation: fadeUp .8s var(--ease) .1s forwards;
}
.hero-badge .dot-avatars{ display:flex; }
.hero-badge .dot-avatars img{ width:26px; height:26px; border-radius:50%; object-fit:cover; border:2px solid var(--charcoal); margin-left:-8px; }
.hero-badge .dot-avatars img:first-child{ margin-left:0; }
.hero h1{
  font-size: clamp(2.8rem, 6.2vw, 5.4rem); line-height:1.02; max-width: 15ch; color:#fff;
  opacity:0; animation: fadeUp .9s var(--ease) .22s forwards;
}
.hero h1 em{ font-style:italic; color: var(--terracotta-light); }
.hero-sub{
  margin-top: 26px; max-width: 46ch; font-size:1.18rem; color: rgba(255,255,255,.86);
  opacity:0; animation: fadeUp .9s var(--ease) .36s forwards;
}
.hero-ctas{ display:flex; flex-wrap:wrap; gap:16px; margin-top:40px; opacity:0; animation: fadeUp .9s var(--ease) .5s forwards; }
.hero-stats{
  display:flex; gap:40px; margin-top:72px; flex-wrap:wrap;
  opacity:0; animation: fadeUp .9s var(--ease) .64s forwards;
}
.hero-stat b{ display:block; font-family: var(--ff-display); font-size:2.1rem; color:#fff; }
.hero-stat span{ font-size:.82rem; color: rgba(255,255,255,.7); }

@keyframes fadeUp{ from{ opacity:0; transform: translateY(26px); } to{ opacity:1; transform: translateY(0); } }

.scroll-cue{
  position:absolute; right:36px; bottom:36px; z-index:3; display:flex; flex-direction:column; align-items:center; gap:10px;
  color: rgba(255,255,255,.75); font-size:.72rem; letter-spacing:.14em; text-transform:uppercase;
}
.scroll-cue .line{ width:1px; height:46px; background: rgba(255,255,255,.4); position:relative; overflow:hidden; }
.scroll-cue .line::after{ content:""; position:absolute; top:-40%; left:0; width:100%; height:40%; background:#fff; animation: scrollLine 2.2s ease-in-out infinite; }
@keyframes scrollLine{ 0%{ top:-40%; } 100%{ top:100%; } }
@media (max-width: 700px){ .scroll-cue{ display:none; } }

/* -------- reveal -------- */
.reveal{ opacity:0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible{ opacity:1; transform: translateY(0); }
.reveal-stagger > *{ opacity:0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-stagger.is-visible > *{ opacity:1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1){ transition-delay: .02s; }
.reveal-stagger.is-visible > *:nth-child(2){ transition-delay: .09s; }
.reveal-stagger.is-visible > *:nth-child(3){ transition-delay: .16s; }
.reveal-stagger.is-visible > *:nth-child(4){ transition-delay: .23s; }
.reveal-stagger.is-visible > *:nth-child(5){ transition-delay: .30s; }
.reveal-stagger.is-visible > *:nth-child(6){ transition-delay: .37s; }
.reveal-stagger.is-visible > *:nth-child(7){ transition-delay: .44s; }
.reveal-stagger.is-visible > *:nth-child(8){ transition-delay: .51s; }

/* -------- trust strip -------- */
.trust-strip{ background: var(--ink); }
.trust-strip .container{
  display:grid; grid-template-columns: repeat(4,1fr); gap:0;
}
.trust-item{
  display:flex; align-items:center; gap:14px; padding:26px 20px; color:#f3e8d8; border-right:1px solid rgba(255,255,255,.08);
}
.trust-item:last-child{ border-right:none; }
.trust-item .ic{ width:38px; height:38px; flex:none; color: var(--terracotta-light); }
.trust-item b{ display:block; font-size:.95rem; }
.trust-item span{ font-size:.78rem; color:#c9b79b; }
@media (max-width: 900px){
  .trust-strip .container{ grid-template-columns: repeat(2,1fr); }
  .trust-item{ border-right:none; border-bottom:1px solid rgba(255,255,255,.08); }
}

/* -------- icon cards (signature services) -------- */
.card-grid{ display:grid; grid-template-columns: repeat(4, 1fr); gap:22px; }
.service-card{
  background:#fff; border-radius: var(--radius-md); padding: 30px 26px; border:1px solid var(--line);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.service-card:hover{ transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card .icon-badge{
  width:56px; height:56px; border-radius:16px; background: var(--sand); color: var(--terracotta-dark);
  display:flex; align-items:center; justify-content:center; margin-bottom:20px; transition: background .4s, transform .4s;
}
.service-card:hover .icon-badge{ background: var(--terracotta); color:#fff; transform: rotate(-6deg) scale(1.05); }
.service-card .icon-badge svg{ width:28px; height:28px; }
.service-card h3{ font-size:1.18rem; margin-bottom:8px; }
.service-card p{ color: var(--ink-soft); font-size:.94rem; }
@media (max-width: 1080px){ .card-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .card-grid{ grid-template-columns: 1fr; } }

/* -------- pricing -------- */
.price-tabs{ display:flex; gap:10px; margin-bottom:40px; flex-wrap:wrap; }
.price-tab{
  padding:12px 24px; border-radius:999px; border:1.5px solid var(--line); background:#fff; font-weight:700; font-size:.92rem;
  color: var(--ink-soft); transition: all .3s var(--ease);
}
.price-tab.is-active, .price-tab:hover{ background: var(--ink); color:#fff; border-color: var(--ink); }
.price-panel{ display:none; }
.price-panel.is-active{ display:block; animation: fadeUp .5s var(--ease); }
.price-list{ display:grid; grid-template-columns: repeat(2,1fr); gap: 14px 40px; }
.price-row{
  display:flex; justify-content:space-between; align-items:baseline; gap:16px; padding:18px 0;
  border-bottom:1px dashed var(--line);
}
.price-row .pr-name{ font-weight:700; }
.price-row .pr-desc{ display:block; font-weight:400; font-size:.86rem; color: var(--ink-soft); margin-top:3px; }
.price-row .pr-amt{ font-family: var(--ff-display); font-size:1.15rem; color: var(--terracotta-dark); white-space:nowrap; }
@media (max-width: 760px){ .price-list{ grid-template-columns: 1fr; } }
.price-note{ margin-top:28px; font-size:.88rem; color: var(--ink-soft); background: var(--sand); display:inline-block; padding:12px 18px; border-radius:12px; }

/* -------- about / story -------- */
.about-grid{ display:grid; grid-template-columns: 1.1fr .9fr; gap:64px; align-items:center; }
.about-media{ position:relative; }
.about-media img{ border-radius: var(--radius-lg); width:100%; aspect-ratio: 4/5; object-fit:cover; box-shadow: var(--shadow-lg); }
.about-media .float-card{
  position:absolute; left:-30px; bottom:-30px; background:#fff; padding:22px 26px; border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); max-width:230px;
}
.about-media .float-card b{ font-family: var(--ff-display); font-size:1.6rem; color: var(--terracotta-dark); display:block; }
.about-media .float-card span{ font-size:.82rem; color: var(--ink-soft); }
.about-copy p{ color: var(--ink-soft); margin-top:18px; font-size:1.05rem; }
.about-counters{ display:grid; grid-template-columns: repeat(3,1fr); gap:20px; margin-top:44px; }
.counter b{ font-family: var(--ff-display); font-size:2.3rem; color: var(--ink); display:block; }
.counter span{ font-size:.8rem; color: var(--ink-soft); }
@media (max-width: 900px){
  .about-grid{ grid-template-columns:1fr; }
  .about-media .float-card{ left:16px; bottom:-24px; }
}

/* -------- team -------- */
.team-filters{ display:flex; gap:10px; margin-bottom:40px; flex-wrap:wrap; }
.team-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap:24px; }
.team-card{
  position:relative; border-radius: var(--radius-md); overflow:hidden; aspect-ratio: 3/3.7; background: var(--ink);
  box-shadow: var(--shadow-sm); transition: box-shadow .4s var(--ease);
}
.team-card:hover{ box-shadow: var(--shadow-lg); }
.team-card img{ width:100%; height:100%; object-fit:cover; transition: transform .6s var(--ease); }
.team-card:hover img{ transform: scale(1.08); }
.team-card .tc-overlay{
  position:absolute; inset:auto 0 0 0; padding:20px; color:#fff;
  background: linear-gradient(0deg, rgba(15,10,7,.92) 10%, rgba(15,10,7,.1) 90%);
}
.team-card .tc-loc{
  position:absolute; top:14px; left:14px; font-size:.68rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase;
  background: rgba(255,255,255,.16); color:#fff; padding:5px 10px; border-radius:999px; backdrop-filter: blur(6px);
}
.team-card h4{ font-size:1.1rem; color:#fff; }
.team-card .tc-role{ font-size:.8rem; color: var(--terracotta-light); font-weight:700; margin-top:2px; }
.team-card .tc-spec{ font-size:.78rem; color: #e6d8c3; margin-top:6px; }
@media (max-width: 1080px){ .team-grid{ grid-template-columns: repeat(3,1fr); } }
@media (max-width: 760px){ .team-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px){ .team-grid{ grid-template-columns: 1fr; } }
.team-hide{ display:none !important; }

/* -------- gallery -------- */
.gallery-grid{ display:grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 160px; gap:16px; }
.gallery-grid a{ position:relative; border-radius: var(--radius-sm); overflow:hidden; display:block; }
.gallery-grid img{ width:100%; height:100%; object-fit:cover; transition: transform .6s var(--ease); }
.gallery-grid a:hover img{ transform: scale(1.09); }
.gallery-grid a::after{ content:""; position:absolute; inset:0; background: linear-gradient(0deg, rgba(20,14,10,.35), transparent 50%); opacity:0; transition:opacity .4s; }
.gallery-grid a:hover::after{ opacity:1; }
.g-big{ grid-column: span 2; grid-row: span 2; }
@media (max-width: 900px){ .gallery-grid{ grid-template-columns: repeat(2,1fr); } .g-big{ grid-column: span 2; grid-row: span 2; } }

/* -------- amenities -------- */
.amenity-strip{ display:flex; flex-wrap:wrap; gap:14px; justify-content:center; }
.amenity-pill{
  display:flex; align-items:center; gap:10px; padding:14px 22px; border-radius:999px; background:#fff;
  border:1px solid var(--line); font-weight:600; font-size:.92rem; transition: all .3s var(--ease);
}
.amenity-pill:hover{ border-color: var(--terracotta); color: var(--terracotta-dark); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.amenity-pill svg{ width:20px; height:20px; color: var(--terracotta); flex:none; }

/* -------- brand marquee -------- */
.brand-marquee{ overflow:hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.brand-track{ display:flex; gap:80px; width:max-content; animation: marquee 26s linear infinite; align-items:center; }
.brand-track img{ height:34px; width:auto; object-fit:contain; filter: grayscale(1) opacity(.65); transition: filter .3s; }
.brand-track img:hover{ filter:none; }
.brand-track span{ font-family: var(--ff-display); font-size:1.3rem; color: var(--ink-soft); white-space:nowrap; }
@keyframes marquee{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }

/* -------- testimonials -------- */
.testi-wrap{ position:relative; max-width:820px; margin:0 auto; }
.testi-slide{
  display:none; text-align:center; padding: 10px 20px;
}
.testi-slide.is-active{ display:block; animation: fadeUp .6s var(--ease); }
.testi-stars{ display:flex; gap:4px; justify-content:center; margin-bottom:22px; color: var(--gold); }
.testi-stars svg{ width:20px; height:20px; }
.testi-slide p{ font-family: var(--ff-display); font-size: clamp(1.3rem, 2.4vw, 1.8rem); line-height:1.4; color:#fff; }
.testi-who{ margin-top:26px; display:flex; align-items:center; justify-content:center; gap:12px; }
.testi-who .avatar{
  width:44px; height:44px; border-radius:50%; background: var(--terracotta); color:#fff; display:flex; align-items:center;
  justify-content:center; font-weight:700; font-family: var(--ff-display);
}
.testi-who b{ color:#fff; display:block; font-size:.94rem; }
.testi-who span{ color:#cbb89a; font-size:.8rem; }
.testi-dots{ display:flex; gap:8px; justify-content:center; margin-top:36px; }
.testi-dots button{ width:9px; height:9px; border-radius:50%; background: rgba(255,255,255,.25); border:none; padding:0; transition: all .3s; }
.testi-dots button.is-active{ background: var(--terracotta-light); width:26px; border-radius:6px; }
.testi-note{ text-align:center; margin-top:30px; font-size:.8rem; color:#9c8a70; }

/* -------- FAQ -------- */
.faq-list{ max-width: 820px; margin:0 auto; }
.faq-item{ border-bottom:1px solid var(--line); }
.faq-q{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:20px; background:none; border:none;
  padding:26px 4px; text-align:left; font-family: var(--ff-display); font-size:1.18rem; color: var(--ink);
}
.faq-q .plus{ width:30px; height:30px; border-radius:50%; border:1.5px solid var(--line); flex:none; display:flex; align-items:center; justify-content:center; position:relative; transition: all .3s var(--ease); }
.faq-q .plus svg{ width:14px; height:14px; transition: transform .35s var(--ease); }
.faq-item.is-open .faq-q .plus{ background: var(--terracotta); border-color: var(--terracotta); color:#fff; }
.faq-item.is-open .faq-q .plus svg{ transform: rotate(135deg); }
.faq-a{ max-height:0; overflow:hidden; transition: max-height .45s var(--ease); }
.faq-a p{ padding: 0 4px 26px; color: var(--ink-soft); max-width:64ch; }

/* -------- locations -------- */
.loc-grid{ display:grid; grid-template-columns: repeat(2,1fr); gap:28px; }
.loc-card{ background:#fff; border-radius: var(--radius-lg); overflow:hidden; border:1px solid var(--line); transition: box-shadow .4s var(--ease), transform .4s var(--ease); }
.loc-card:hover{ box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.loc-map{ height:200px; position:relative; background: linear-gradient(135deg, var(--sand), var(--sand-dark)); overflow:hidden; }
.loc-map svg{ position:absolute; inset:0; width:100%; height:100%; }
.loc-map .pin{ position:absolute; left:50%; top:50%; transform: translate(-50%,-100%); color: var(--terracotta); width:40px; height:40px; filter: drop-shadow(0 6px 10px rgba(0,0,0,.25)); }
.loc-body{ padding: 28px 30px 30px; }
.loc-body .loc-tag{ font-size:.74rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color: var(--terracotta-dark); }
.loc-body h3{ font-size:1.5rem; margin-top:8px; }
.loc-meta{ margin-top:18px; display:flex; flex-direction:column; gap:12px; }
.loc-meta div{ display:flex; gap:12px; align-items:flex-start; font-size:.92rem; color: var(--ink-soft); }
.loc-meta svg{ width:18px; height:18px; color: var(--terracotta); flex:none; margin-top:2px; }
.loc-actions{ display:flex; gap:12px; margin-top:24px; flex-wrap:wrap; }

/* -------- CTA band -------- */
.cta-band{
  border-radius: var(--radius-lg); background: linear-gradient(120deg, var(--terracotta), var(--terracotta-dark));
  padding: 64px 60px; display:flex; align-items:center; justify-content:space-between; gap:40px; color:#fff;
  position:relative; overflow:hidden;
}
.cta-band::before{
  content:""; position:absolute; width:420px; height:420px; border-radius:50%; background: rgba(255,255,255,.08);
  right:-140px; top:-160px;
}
.cta-band h2{ color:#fff; font-size: clamp(1.7rem, 3vw, 2.4rem); max-width:16ch; }
.cta-band p{ color: rgba(255,255,255,.85); margin-top:10px; }
.cta-actions{ display:flex; gap:14px; flex-wrap:wrap; position:relative; z-index:1; }
@media (max-width: 860px){ .cta-band{ flex-direction:column; align-items:flex-start; padding:44px 28px; } }

/* -------- accessibility widget -------- */
.a11y-widget{ position:fixed; right:24px; bottom:24px; z-index:80; }
.a11y-toggle{
  width:56px; height:56px; border-radius:50%; background: var(--ink); color:#fff; border:none;
  display:flex; align-items:center; justify-content:center; box-shadow: var(--shadow-lg);
}
.a11y-toggle svg{ width:26px; height:26px; }
.a11y-panel{
  position:absolute; right:0; bottom:70px; width:250px; background:#fff; border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); padding:20px; opacity:0; pointer-events:none; transform: translateY(12px) scale(.96);
  transition: all .3s var(--ease); transform-origin: bottom right;
}
.a11y-panel.is-open{ opacity:1; pointer-events:auto; transform: translateY(0) scale(1); }
.a11y-panel h4{ font-size:.85rem; text-transform:uppercase; letter-spacing:.06em; color: var(--ink-soft); margin-bottom:12px; }
.a11y-row{ display:flex; gap:8px; margin-bottom:10px; }
.a11y-row button{
  flex:1; padding:9px 6px; border-radius:8px; border:1.5px solid var(--line); background:#fff; font-weight:700; font-size:.82rem;
}
.a11y-row button.is-active{ background: var(--ink); color:#fff; border-color: var(--ink); }
.a11y-full{ width:100%; padding:10px; border-radius:8px; border:1.5px solid var(--line); background:#fff; font-weight:700; font-size:.85rem; text-align:left; display:flex; gap:8px; align-items:center; }
.a11y-full.is-active{ background: var(--terracotta); color:#fff; border-color: var(--terracotta); }
.a11y-full svg{ width:16px; height:16px; }

.back-top{
  position:fixed; left:24px; bottom:24px; z-index:80; width:48px; height:48px; border-radius:50%; background:#fff;
  border:1.5px solid var(--line); box-shadow: var(--shadow-sm); display:flex; align-items:center; justify-content:center;
  opacity:0; transform: translateY(10px); pointer-events:none; transition: all .3s var(--ease);
}
.back-top.is-visible{ opacity:1; transform:none; pointer-events:auto; }
.back-top svg{ width:18px; height:18px; }

/* -------- footer -------- */
.site-footer{ background: var(--charcoal); color:#cbb89a; padding: 80px 0 30px; }
.footer-grid{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap:40px; }
.footer-brand .brand{ color:#fff; }
.footer-brand p{ margin-top:16px; font-size:.92rem; max-width:32ch; color:#a8967a; }
.footer-social{ display:flex; gap:10px; margin-top:22px; }
.footer-social a{
  width:38px; height:38px; border-radius:50%; border:1px solid rgba(255,255,255,.15); display:flex; align-items:center;
  justify-content:center; transition: all .3s;
}
.footer-social a:hover{ background: var(--terracotta); border-color: var(--terracotta); }
.footer-social svg{ width:17px; height:17px; color:#fff; }
.site-footer h5{ color:#fff; font-family: var(--ff-body); font-size:.82rem; letter-spacing:.08em; text-transform:uppercase; margin-bottom:18px; }
.site-footer ul{ display:flex; flex-direction:column; gap:11px; }
.site-footer a:hover{ color:#fff; }
.foot-hours div{ display:flex; justify-content:space-between; font-size:.88rem; padding:3px 0; }
.foot-bottom{
  margin-top:64px; padding-top:26px; border-top:1px solid rgba(255,255,255,.1); display:flex; justify-content:space-between;
  flex-wrap:wrap; gap:14px; font-size:.8rem; color:#8a7a63;
}
.foot-bottom a{ color:#8a7a63; }
.ai-disclosure{ font-size:.76rem; color:#7a6c58; max-width:60ch; margin-top:10px; line-height:1.6; }
@media (max-width: 900px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .footer-grid{ grid-template-columns: 1fr; } }

/* -------- cookie note -------- */
.cookie-note{
  position:fixed; left:24px; bottom:24px; z-index:90; max-width:380px; background:#fff; border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); padding:20px 22px; border:1px solid var(--line);
  transform: translateY(140%); transition: transform .5s var(--ease); opacity:1;
}
.cookie-note.is-visible{ transform: translateY(0); }
.cookie-note[hidden]{ display:none; }
.cookie-note p{ font-size:.85rem; color: var(--ink-soft); }
.cookie-note .btn{ margin-top:14px; }

@media (max-width: 700px){
  .main-nav, .header-phones{ display:none; }
  .header-actions{ gap:10px; }
  .header-actions .btn-primary{ display:none; }
  .nav-toggle{ display:flex; }
  .container{ padding: 0 18px; }
  .section{ padding: 76px 0; }
  .cookie-note{ left:14px; right:14px; max-width:none; bottom:14px; }
  .a11y-widget{ right:14px; bottom:14px; }
  .back-top{ left:14px; bottom:80px; }
}
@media (max-width: 900px){
  .about-counters{ grid-template-columns: repeat(3,1fr); gap:12px; }
  .loc-grid{ grid-template-columns: 1fr; }
}
