/* =============================================
   SHAGGY WAGS — Cranbrook, BC
   Terracotta · Blush · Cream, light editorial palette
   Structure/technique matched to the destination-aesthetics template
   ============================================= */

/* ===== VARIABLES ===== */
:root {
  --cream:        #f8f3ec;
  --cream-dark:   #efe1d0;
  --blush:        #f0c8ae;
  --blush-light:  #fbeee5;
  --terracotta:      #c2673f;
  --terracotta-mid:  #a15a3a;
  --terracotta-deep: #7a4025;
  --espresso:     #4a2f22;
  --gold:         #c9a882;
  --charcoal:     #2a2018;
  --stone:        #6f6255;
  --white:        #ffffff;

  --font-head: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --r:   14px;
  --sh:  0 4px 20px rgba(42, 32, 24, .10);
  --shm: 0 10px 40px rgba(42, 32, 24, .14);
  --shl: 0 20px 60px rgba(42, 32, 24, .18);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.12; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; background: none; border: none; font: inherit; }
ul { list-style: none; }
address { font-style: normal; }

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  #hero { animation: none !important; }
  .orb { animation: none !important; }
}

/* ===== KEYFRAMES ===== */
@keyframes auraShift {
  0%   { background-position: 0% 0%; }
  33%  { background-position: 100% 50%; }
  66%  { background-position: 50% 100%; }
  100% { background-position: 0% 0%; }
}
@keyframes fl1 { from { transform: translate(0,0) scale(1); } to { transform: translate(32px,-26px) scale(1.07); } }
@keyframes fl2 { from { transform: translate(0,0) scale(1); } to { transform: translate(-38px,22px) scale(.93); } }
@keyframes fl3 { from { transform: translate(0,0) scale(1); } to { transform: translate(18px,34px) scale(1.09); } }
@keyframes bounceDn {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: .55; }
  50%      { transform: translateX(-50%) translateY(10px); opacity: 1; }
}
@keyframes shimmer {
  0%   { background-position: -220% center; }
  100% { background-position: 220% center; }
}
@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: .3; }
  50%      { transform: scale(1.7); opacity: .11; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== REVEAL SYSTEM ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s ease;
  will-change: transform;
}
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: .10s; }
.d2 { transition-delay: .20s; }
.d3 { transition-delay: .30s; }
.d4 { transition-delay: .40s; }

/* ===== SHARED LAYOUT ===== */
.wrap { max-width: 1100px; margin: 0 auto; }
section { padding: 5.5rem 1.5rem; }

.eyebrow {
  display: block;
  font-size: .68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--terracotta-mid);
  text-align: center;
  margin-bottom: .75rem;
}
.section-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 500;
  text-align: center;
  color: var(--espresso);
  margin-bottom: .5rem;
  letter-spacing: -.01em;
}
.section-title em { font-style: italic; color: var(--terracotta); font-weight: 400; }
.section-sub {
  text-align: center;
  color: var(--stone);
  font-size: 1.02rem;
  max-width: 510px;
  margin: 0 auto;
  line-height: 1.75;
}
.rule {
  display: block;
  width: 50px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--terracotta), var(--gold));
  margin: 1.2rem auto 3rem;
  border-radius: 1px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 1rem 2.2rem;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .02em;
  min-height: 52px;
  cursor: pointer;
  transition: transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s cubic-bezier(.4,0,.2,1);
  will-change: transform;
  white-space: nowrap;
}
.btn:hover { transform: scale(1.03); }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-primary {
  background: linear-gradient(135deg, var(--terracotta-mid), var(--terracotta-deep));
  color: var(--white);
  box-shadow: 0 4px 22px rgba(122, 64, 37, .35);
}
.btn-primary:hover { box-shadow: 0 10px 36px rgba(122, 64, 37, .45); }

.btn-outline {
  background: transparent;
  color: var(--espresso);
  border: 1.5px solid var(--terracotta);
}
.btn-outline:hover { background: var(--blush-light); }

.btn-cta {
  background: var(--white);
  color: var(--espresso);
  box-shadow: var(--shm);
}
.btn-cta:hover { background: var(--blush-light); box-shadow: 0 12px 50px rgba(240, 200, 174, .5); }

/* ===== NAV ===== */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 1.5rem;
  transition: background .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
}
#nav.transparent { background: transparent; }
#nav.frosted {
  background: rgba(248, 243, 236, .88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 2px 24px rgba(42, 32, 24, .08);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; height: 68px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.nav-logo { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.nav-logo .logo-mark { width: 24px; height: 24px; color: var(--terracotta); flex-shrink: 0; }
.nav-logo .logo-text {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--espresso);
  letter-spacing: -.01em;
  white-space: nowrap;
}
.nav-logo .logo-text-accent { font-style: normal; font-weight: 400; color: var(--terracotta-mid); }

.nav-links { display: none; gap: 2.1rem; align-items: center; }
.nav-links a {
  position: relative;
  font-size: .775rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .07em;
  color: var(--charcoal);
  transition: color .2s;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 50%; right: 50%;
  height: 1.5px; background: var(--gold); border-radius: 1px;
  transition: left .25s ease, right .25s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--terracotta-mid); }
.nav-links a:hover::after, .nav-links a.active::after { left: 0; right: 0; }

.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-call {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, var(--terracotta-mid), var(--terracotta-deep));
  color: var(--white); padding: .55rem 1.2rem; border-radius: 50px;
  font-size: .775rem; font-weight: 600; letter-spacing: .03em;
  min-height: 44px; white-space: nowrap;
  transition: transform .25s ease, box-shadow .25s ease;
}
.nav-call:hover { transform: scale(1.04); box-shadow: 0 6px 22px rgba(122, 64, 37, .4); }

.hamburger {
  padding: 8px; min-width: 44px; min-height: 44px;
  display: flex; flex-direction: column; gap: 5px;
  align-items: center; justify-content: center;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--espresso); border-radius: 1px;
  transition: transform .25s ease, opacity .2s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .hamburger { display: none; }
}

/* ===== MOBILE OVERLAY ===== */
#mob-ov {
  position: fixed; inset: 0; z-index: 999;
  background: linear-gradient(155deg, var(--blush-light) 0%, var(--cream) 55%, var(--blush) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 2rem;
  transform: translateX(100%);
  transition: transform .42s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
#mob-ov.open { transform: translateX(0); pointer-events: all; }
#mob-ov a {
  font-family: var(--font-head); font-style: italic;
  font-size: 2.6rem; font-weight: 500;
  color: var(--espresso);
  padding: .6rem 0; width: 100%; text-align: center;
  border-bottom: 1px solid rgba(194, 103, 63, .2);
  opacity: 0; transform: translateX(40px);
  transition: opacity .35s ease, transform .35s ease, color .2s;
}
#mob-ov.open a { opacity: 1; transform: translateX(0); }
#mob-ov.open a:nth-child(1) { transition-delay: .08s; }
#mob-ov.open a:nth-child(2) { transition-delay: .15s; }
#mob-ov.open a:nth-child(3) { transition-delay: .22s; }
#mob-ov.open a:nth-child(4) { transition-delay: .29s; }
#mob-ov a:last-child { border-bottom: none; }
#mob-ov a:hover { color: var(--terracotta); }

/* ===== HERO ===== */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
  padding: 9rem 1.5rem 6rem;
  background: linear-gradient(-45deg, var(--cream) 0%, var(--blush-light) 22%, #f6ddc9 45%, var(--cream) 68%, #faf0e6 100%);
  background-size: 400% 400%;
  animation: auraShift 18s ease infinite;
}
.orb { position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none; will-change: transform; }
.o1 { width: 480px; height: 480px; background: rgba(194, 103, 63, .22); top: -120px; left: -140px; animation: fl1 28s ease-in-out infinite alternate; }
.o2 { width: 400px; height: 400px; background: rgba(240, 200, 174, .4);  bottom: -95px; right: -95px; animation: fl2 32s ease-in-out infinite alternate; }
.o3 { width: 300px; height: 300px; background: rgba(201, 168, 130, .28); top: 24%; right: 9%; animation: fl3 26s ease-in-out infinite alternate; }

.hero-inner { position: relative; z-index: 2; max-width: 780px; width: 100%; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 3px;
  color: var(--terracotta-mid); margin-bottom: 1.5rem;
  padding: .5rem 1.25rem;
  background: rgba(255, 255, 255, .6);
  border: 1px solid rgba(194, 103, 63, .25);
  border-radius: 50px;
  animation: fadeUp .8s ease .2s both;
}
.badge-stars { display: inline-flex; gap: 1px; color: var(--gold); }
.badge-stars svg { width: 12px; height: 12px; }

#hero h1 {
  font-size: clamp(2.8rem, 8.5vw, 5.6rem);
  font-weight: 500; color: var(--espresso);
  letter-spacing: -.02em; line-height: 1.03;
  margin-bottom: 1.5rem;
  animation: fadeUp .8s ease .45s both;
}
#hero h1 em { font-style: italic; color: var(--terracotta); font-weight: 400; }

.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: var(--stone);
  max-width: 490px; margin: 0 auto 1.75rem;
  line-height: 1.75;
  animation: fadeUp .8s ease .65s both;
}
.hero-btns {
  display: flex; flex-direction: column; align-items: center;
  gap: .875rem; margin-bottom: 2rem;
  animation: fadeUp .8s ease .85s both;
}
.hero-trust {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: .35rem .9rem;
  font-size: .88rem; color: var(--stone);
  animation: fadeUp .8s ease 1.05s both;
}
.ht-dot { color: rgba(194, 103, 63, .4); }
.scroll-ch {
  position: absolute; bottom: 2rem; left: 50%;
  color: var(--terracotta); width: 20px; height: 20px;
  animation: bounceDn 2s ease-in-out infinite; z-index: 3;
}

@media (min-width: 768px) { .hero-btns { flex-direction: row; justify-content: center; } }

/* ===== STATS BANNER ===== */
#stats { background: var(--espresso); padding: 3.5rem 1.5rem; }
.stats-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; max-width: 800px; margin: 0 auto; text-align: center; }
.stat-item { padding: 1rem; }
.stat-num {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 8vw, 4.6rem); font-weight: 400;
  color: var(--gold); line-height: 1; display: block;
  margin-bottom: .4rem; letter-spacing: -.02em;
}
.stat-label {
  font-size: .74rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 3px;
  color: rgba(248, 243, 236, .55);
}
@media (min-width: 640px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-item { border-right: 1px solid rgba(248, 243, 236, .1); padding: 0 1.5rem; }
  .stat-item:last-child { border-right: none; }
}

/* ===== ABOUT (MEET KENDRA) ===== */
#about { background: var(--cream-dark); }
.about-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
.about-text .eyebrow { text-align: left; }
.about-text h2 {
  font-size: clamp(1.9rem, 4.5vw, 2.8rem); font-weight: 500;
  color: var(--espresso); margin-bottom: 1.25rem;
  letter-spacing: -.01em; text-align: left;
}
.about-text h2 em { font-style: italic; color: var(--terracotta); font-weight: 400; }
.about-text p { font-size: .975rem; color: var(--stone); line-height: 1.85; margin-bottom: 1rem; }
.about-text p:last-of-type { margin-bottom: 1.5rem; }

.about-quote {
  background: linear-gradient(145deg, var(--white) 0%, var(--blush-light) 100%);
  border-radius: var(--r); padding: 2.5rem;
  box-shadow: var(--sh);
  border: 1px solid rgba(194, 103, 63, .18);
  position: relative; overflow: hidden;
}
.about-quote::before {
  content: '\201C';
  font-family: var(--font-head);
  font-size: 13rem; line-height: .65;
  color: var(--blush); opacity: .5;
  position: absolute; top: -.5rem; left: .5rem;
  pointer-events: none; user-select: none;
}
.aq-text {
  position: relative; z-index: 1;
  font-family: var(--font-head); font-style: italic;
  font-size: 1.25rem; color: var(--espresso); line-height: 1.7;
  margin-bottom: 1.25rem;
}
.aq-stars { display: flex; gap: 2px; color: var(--gold); margin-bottom: .75rem; }
.aq-stars svg { width: 14px; height: 14px; }
.aq-author { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--terracotta-mid); }

@media (min-width: 768px) { .about-grid { grid-template-columns: 1fr 1fr; } }

/* ===== SERVICES ===== */
#services { background: var(--cream); }
.srv-grid { display: grid; grid-template-columns: 1fr; gap: 1.35rem; }
.srv-card {
  position: relative;
  background: linear-gradient(145deg, var(--cream) 0%, rgba(255,255,255,.85) 100%);
  border: 1px solid rgba(194, 103, 63, .16);
  border-top: 3px solid var(--blush);
  border-radius: var(--r); padding: 1.85rem 1.65rem;
  transition: box-shadow .3s ease, background .3s ease, border-color .3s ease;
  will-change: transform;
}
.srv-card:hover {
  box-shadow: 0 14px 44px rgba(194, 103, 63, .18);
  background: linear-gradient(145deg, var(--blush-light) 0%, var(--white) 100%);
}
.srv-card.terracotta-tint { border-top-color: var(--terracotta); }
.srv-card.blush-tint { border-top-color: var(--blush); }
.srv-icon {
  width: 50px; height: 50px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  transition: background .3s ease, color .3s ease;
}
.srv-card.terracotta-tint .srv-icon { background: linear-gradient(135deg, var(--blush-light), var(--blush)); color: var(--terracotta-mid); }
.srv-card.blush-tint .srv-icon { background: linear-gradient(135deg, var(--cream-dark), var(--blush)); color: var(--terracotta); }
.srv-card:hover .srv-icon { background: linear-gradient(135deg, var(--terracotta-mid), var(--terracotta-deep)); color: var(--white); }
.srv-icon svg { width: 22px; height: 22px; }
.srv-name { font-family: var(--font-head); font-size: 1.22rem; font-weight: 500; color: var(--espresso); margin-bottom: .35rem; }
.srv-desc { font-size: .875rem; color: var(--stone); line-height: 1.65; }
.srv-tag {
  display: inline-block; margin-top: .8rem;
  padding: 3px 11px; border-radius: 999px;
  font-size: .68rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  background: rgba(194, 103, 63, .1); color: var(--terracotta-mid);
}
@media (min-width: 640px)  { .srv-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .srv-grid { grid-template-columns: repeat(4, 1fr); } }

/* ===== GALLERY ===== */
#gallery { background: var(--cream-dark); }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 170px); gap: 1rem; }
.gallery-item {
  position: relative; border-radius: var(--r); overflow: hidden;
  background: linear-gradient(145deg, var(--white) 0%, var(--blush-light) 100%);
  border: 1px solid rgba(194, 103, 63, .16);
  box-shadow: var(--sh);
}
.gallery-item::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 35%, rgba(194, 103, 63, .16) 0%, transparent 55%),
    radial-gradient(ellipse at 72% 68%, rgba(201, 168, 130, .18) 0%, transparent 55%);
  z-index: 1;
}
.gallery-item-wide { grid-column: span 2; }
.gallery-img { width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .4s ease; }
.gallery-img.loaded { opacity: 1; }
.gallery-placeholder {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .5rem;
  color: var(--terracotta-mid); font-size: .8rem; font-weight: 500;
  text-align: center; padding: 1rem;
}
.gallery-placeholder svg { width: 24px; height: 24px; opacity: .8; }
.gallery-placeholder.hidden { display: none; }
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, 220px); } }

/* ===== REVIEWS ===== */
#reviews { background: var(--blush-light); }
.rev-grid { display: grid; grid-template-columns: 1fr; gap: 1.35rem; margin-bottom: 3rem; max-width: 760px; margin-left: auto; margin-right: auto; }
.rev-card {
  background: var(--white); border-radius: var(--r);
  padding: 2rem 1.75rem;
  border-left: 4px solid var(--terracotta);
  box-shadow: var(--sh);
  transition: transform .25s ease, box-shadow .25s ease;
}
.rev-card:hover { transform: translateY(-5px); box-shadow: var(--shm); }
.rev-card.blush-border { border-left-color: var(--blush); }
.rev-stars { display: flex; gap: 2px; color: var(--gold); margin-bottom: 1.1rem; }
.rev-stars svg { width: 15px; height: 15px; }
.rev-text {
  font-family: var(--font-head); font-style: italic;
  font-size: 1.12rem; color: var(--charcoal); line-height: 1.8; margin-bottom: 1.1rem;
}
.rev-name { font-weight: 600; font-size: .8rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--terracotta-mid); }
.rev-source { font-size: .78rem; color: var(--stone); text-transform: none; letter-spacing: 0; font-weight: 400; }

.reviews-foot { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(194, 103, 63, .2); font-size: .95rem; color: var(--stone); }
.reviews-foot a { color: var(--terracotta-mid); font-weight: 600; border-bottom: 1.5px solid rgba(194, 103, 63, .35); padding-bottom: 1px; transition: color .2s, border-color .2s; }
.reviews-foot a:hover { color: var(--terracotta-deep); border-color: var(--terracotta-deep); }

@media (min-width: 640px) { .rev-grid { grid-template-columns: repeat(2, 1fr); max-width: 100%; } }

/* ===== CTA BANNER (BOOK) ===== */
#book {
  position: relative; overflow: hidden;
  padding: 7rem 1.5rem; text-align: center;
  background: linear-gradient(135deg, var(--espresso) 0%, #613a26 50%, #4a2a1a 100%);
}
.book-wm {
  position: absolute; right: -4%; bottom: -10%;
  width: min(60vw, 420px); height: min(60vw, 420px);
  color: rgba(248, 243, 236, .05);
  transform: rotate(-14deg); pointer-events: none;
  z-index: 0;
}
.book-inner { position: relative; z-index: 1; }
#book h2 {
  font-size: clamp(2.2rem, 6vw, 4rem); font-weight: 500;
  color: var(--cream); margin-bottom: .75rem; letter-spacing: -.02em;
}
#book h2 em { font-style: italic; color: var(--blush); font-weight: 400; }
.book-body { font-size: 1.05rem; color: rgba(248, 243, 236, .78); line-height: 1.72; max-width: 440px; margin: 0 auto 2.5rem; }
.btn-glow-wrap { position: relative; display: inline-block; }
.btn-glow {
  position: absolute; inset: -28px;
  background: var(--blush); border-radius: 50%;
  filter: blur(38px); opacity: .3;
  animation: glowPulse 2.6s ease-in-out infinite;
  pointer-events: none; will-change: transform;
}
.book-note { margin-top: 1.5rem; color: var(--gold); font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2.5px; }

/* ===== FIND US ===== */
#find-us { background: var(--cream-dark); }
.find-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
.map-wrap { border-radius: var(--r); overflow: hidden; box-shadow: var(--shm); order: -1; }
.map-wrap iframe { display: block; width: 100%; height: 280px; border: none; }

.contact-card {
  background: linear-gradient(145deg, var(--cream) 0%, var(--white) 100%);
  border: 1px solid rgba(194, 103, 63, .18); border-radius: var(--r);
  padding: 2rem 1.75rem; box-shadow: var(--sh);
}
.ci { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.ci:last-child { margin-bottom: 0; }
.ci-icon {
  width: 44px; height: 44px; border-radius: 11px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blush-light), var(--blush));
  display: flex; align-items: center; justify-content: center;
  color: var(--terracotta-mid);
}
.ci-icon svg { width: 19px; height: 19px; }
.ci-lbl { font-size: .68rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--stone); margin-bottom: .2rem; }
.ci-val { font-size: .975rem; color: var(--charcoal); line-height: 1.65; }
.ci-val a { color: var(--terracotta-mid); font-weight: 600; transition: color .2s; }
.ci-val a:hover { color: var(--terracotta-deep); text-decoration: underline; }
.ci-note { font-size: .78rem; color: var(--stone); font-style: italic; margin-top: .25rem; }

.hrs { border-collapse: collapse; width: 100%; }
.hrs td { padding: 3px 0; font-size: .875rem; vertical-align: top; }
.hrs td:first-child { font-size: .72rem; font-weight: 600; color: var(--stone); text-transform: uppercase; letter-spacing: .06em; padding-right: 1rem; white-space: nowrap; }
.closed { color: var(--stone); font-style: italic; }

.soc-row { display: flex; gap: .6rem; margin-top: .3rem; }
.soc-link {
  width: 40px; height: 40px; border-radius: 9px;
  background: linear-gradient(135deg, var(--blush-light), var(--blush));
  display: flex; align-items: center; justify-content: center;
  color: var(--terracotta-mid);
  transition: transform .2s ease, background .2s, box-shadow .2s;
  will-change: transform;
}
.soc-link svg { width: 17px; height: 17px; }
.soc-link:hover { background: linear-gradient(135deg, var(--terracotta-mid), var(--terracotta-deep)); color: var(--white); transform: rotate(8deg) scale(1.15); box-shadow: 0 4px 14px rgba(122, 64, 37, .4); }

@media (min-width: 768px) {
  .find-grid { grid-template-columns: 1fr 1fr; align-items: start; }
  .map-wrap { order: 0; }
  .map-wrap iframe { height: 420px; }
}

/* ===== FOOTER ===== */
footer { background: var(--espresso); border-top: 3px solid var(--terracotta); padding: 2.25rem 1.5rem; }
.foot-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 1.15rem; text-align: center; }
.foot-logo { display: inline-flex; align-items: center; justify-content: center; gap: 7px; }
.foot-logo .logo-mark { width: 20px; height: 20px; color: var(--blush); }
.foot-logo .logo-text { font-family: var(--font-head); font-style: italic; font-size: 1.1rem; font-weight: 500; color: var(--blush-light); }
.foot-nav { display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; justify-content: center; }
.foot-nav a { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; color: rgba(248, 243, 236, .45); transition: color .2s; }
.foot-nav a:hover { color: var(--blush); }
.foot-copy { font-size: .8rem; color: rgba(248, 243, 236, .35); }
@media (min-width: 768px) {
  .foot-inner { grid-template-columns: 1fr auto 1fr; align-items: center; text-align: left; }
  .foot-nav { justify-content: center; }
  .foot-copy { text-align: right; }
}

/* ===== SCROLL TOP ===== */
#scr-top {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--terracotta-mid), var(--terracotta-deep));
  color: var(--white);
  display: none; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(122, 64, 37, .4);
  transition: transform .2s ease; z-index: 200;
}
#scr-top svg { width: 18px; height: 18px; }
#scr-top.vis { display: flex; }
#scr-top:hover { transform: scale(1.1) translateY(-2px); }

/* ===== FOCUS ===== */
:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 3px; border-radius: 4px; }
