/* ============================================================
   The Paww Spa - brand stylesheet (Sunpeak v3, premium pass 2026-07-06)
   Palette from Mary's own branding: forest green wordmark logo +
   gold/cream from her mobile pricing flyer. Serif display type to
   match the logo. Dependency-free motion.
   ============================================================ */
:root {
  --green: #2F5D46;
  --green-deep: #1E3D2E;
  --green-ink: #142620;
  --gold: #C6A15B;
  --gold-soft: #DCC08A;
  --cream: #F6F3EC;
  --sage: #EAF0EA;
  --white: #FFFFFF;
  --ink: #232323;
  --muted: #5C5F58;
  --shadow-soft: 0 10px 30px rgba(20, 38, 32, .08);
  --shadow-lift: 0 18px 44px rgba(20, 38, 32, .16);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --radius: 14px;
  --paw-tile: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='170' height='170' viewBox='0 0 170 170'%3E%3Cg fill='%23ffffff' fill-opacity='.028' transform='translate(48 52) rotate(-24)'%3E%3Cellipse cx='-15' cy='-9' rx='5.5' ry='8'/%3E%3Cellipse cx='-5' cy='-16' rx='5.5' ry='8'/%3E%3Cellipse cx='6' cy='-16' rx='5.5' ry='8'/%3E%3Cellipse cx='16' cy='-9' rx='5.5' ry='8'/%3E%3Cellipse cx='0' cy='7' rx='13' ry='11'/%3E%3C/g%3E%3Cg fill='%23ffffff' fill-opacity='.018' transform='translate(128 132) rotate(18) scale(.7)'%3E%3Cellipse cx='-15' cy='-9' rx='5.5' ry='8'/%3E%3Cellipse cx='-5' cy='-16' rx='5.5' ry='8'/%3E%3Cellipse cx='6' cy='-16' rx='5.5' ry='8'/%3E%3Cellipse cx='16' cy='-9' rx='5.5' ry='8'/%3E%3Cellipse cx='0' cy='7' rx='13' ry='11'/%3E%3C/g%3E%3C/svg%3E");
  --paw-tile-green: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='170' height='170' viewBox='0 0 170 170'%3E%3Cg fill='%232F5D46' fill-opacity='.014' transform='translate(48 52) rotate(-24)'%3E%3Cellipse cx='-15' cy='-9' rx='5.5' ry='8'/%3E%3Cellipse cx='-5' cy='-16' rx='5.5' ry='8'/%3E%3Cellipse cx='6' cy='-16' rx='5.5' ry='8'/%3E%3Cellipse cx='16' cy='-9' rx='5.5' ry='8'/%3E%3Cellipse cx='0' cy='7' rx='13' ry='11'/%3E%3C/g%3E%3C/svg%3E");
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; font-family: 'Inter', sans-serif; color: var(--ink); background: var(--white);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
h1, h2, h3 { font-family: 'Playfair Display', serif; color: var(--green-deep); margin: 0 0 18px; line-height: 1.12; font-weight: 600; letter-spacing: -.01em; }
h1 { font-size: clamp(38px, 5vw, 58px); }
h2 { font-size: clamp(28px, 3.4vw, 40px); }
h3 { font-size: clamp(21px, 2.2vw, 26px); }
h1 em, h2 em { font-style: italic; color: var(--green); }
p { line-height: 1.75; color: var(--muted); margin: 0 0 15px; font-size: 16.5px; }
a { color: var(--green); text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }
.center-text { text-align: center; max-width: 760px; margin: 0 auto 24px; }
.section { padding: clamp(72px, 9vw, 110px) 0; }
.section.alt { background: var(--cream); }

/* eyebrow: gold small caps with a hairline rule */
.eyebrow {
  display: flex; align-items: center; gap: 14px;
  text-transform: uppercase; letter-spacing: .28em; font-size: 12.5px; font-weight: 600;
  color: var(--gold); margin: 0 0 14px;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--gold); flex: none; }
.eyebrow.center { justify-content: center; }
.eyebrow.center::after { content: ""; width: 34px; height: 1px; background: var(--gold); flex: none; }

/* buttons */
.btn {
  display: inline-block; padding: 16px 32px; border-radius: 999px; font-weight: 600;
  cursor: pointer; border: 1.5px solid transparent; font-size: 15px; letter-spacing: .01em;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out),
              background-color .25s ease, color .25s ease, border-color .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green); color: var(--white); box-shadow: 0 6px 18px rgba(47, 93, 70, .28); }
.btn-primary:hover { background: var(--green-deep); box-shadow: 0 12px 28px rgba(20, 38, 32, .3); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,.7); color: var(--white); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-soft); }
.section .btn-outline, .footer .btn-outline { border-color: var(--green); color: var(--green); }
.section .btn-outline:hover { background: var(--green); color: var(--white); border-color: var(--green); }

/* ------------------------------------------------ header ---- */
.site-header {
  position: sticky; top: 0; background: rgba(255,255,255,.94); backdrop-filter: blur(10px);
  z-index: 100; border-bottom: 1px solid rgba(20,38,32,.07);
  transition: box-shadow .3s ease;
}
.site-header.scrolled { box-shadow: 0 6px 24px rgba(20,38,32,.1); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; transition: padding .3s ease; }
.site-header.scrolled .header-inner { padding: 9px 24px; }
.logo img { height: 58px; transition: height .3s ease; }
.site-header.scrolled .logo img { height: 48px; }
.desktop-nav { display: none; align-items: center; gap: 26px; }
.desktop-nav > a, .dropdown > button {
  color: var(--ink); font-weight: 500; font-size: 15px; position: relative; padding: 8px 0;
  background: none; border: none; font-family: inherit; cursor: pointer;
}
.desktop-nav > a::after, .dropdown > button::after {
  content: ""; position: absolute; left: 0; bottom: 2px; height: 1.5px; width: 100%;
  background: var(--gold); transform: scaleX(0); transform-origin: right;
  transition: transform .35s var(--ease-out);
}
.desktop-nav > a:hover::after, .dropdown:hover > button::after { transform: scaleX(1); transform-origin: left; }
.desktop-nav .tel { color: var(--green); font-weight: 700; }
.desktop-nav .tel::after { background: var(--green); }
.dropdown { position: relative; }
.dropdown > button span { color: var(--gold); font-size: 11px; }
.dropdown ul {
  list-style: none; margin: 0; padding: 12px; position: absolute; top: 100%; left: -12px;
  background: var(--white); box-shadow: var(--shadow-lift); border-radius: 12px; min-width: 240px;
  border-top: 2px solid var(--gold);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .25s ease, transform .3s var(--ease-out), visibility .25s;
  max-height: 70vh; overflow-y: auto;
}
.dropdown:hover ul, .dropdown:focus-within ul { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown ul li a { display: block; padding: 9px 12px; border-radius: 8px; white-space: nowrap; color: var(--ink); font-size: 14.5px; transition: background .15s ease, color .15s ease, padding-left .2s ease; }
.dropdown ul li a:hover { background: var(--sage); color: var(--green-deep); padding-left: 16px; }
.hamburger { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 10px; }
.hamburger span { width: 26px; height: 2px; background: var(--green-deep); border-radius: 2px; }
.mobile-nav {
  position: fixed; inset: 0; background: var(--green-ink); background-image: var(--paw-tile);
  transform: translateX(100%); transition: transform .4s var(--ease-out); z-index: 200; overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-inner { padding: 64px 28px 40px; }
.mobile-close { position: absolute; top: 14px; right: 14px; background: none; border: none; font-size: 34px; cursor: pointer; color: var(--cream); min-width: 44px; min-height: 44px; }
.mobile-heading { font-weight: 600; text-transform: uppercase; font-size: 12px; letter-spacing: .25em; color: var(--gold); margin: 26px 0 6px; }
.mobile-nav ul { list-style: none; padding: 0; margin: 0 0 8px; }
.mobile-nav ul li a { display: block; padding: 11px 0; font-size: 17px; color: var(--cream); border-bottom: 1px solid rgba(255,255,255,.09); font-family: 'Playfair Display', serif; }
.mobile-nav .tel { display: block; margin: 26px 0 14px; font-weight: 700; color: var(--gold-soft); font-size: 19px; }
@media (min-width: 1020px) {
  .desktop-nav { display: flex; }
  .hamburger { display: none; }
}

/* --------------------------------------- editorial home hero ---- */
.hero-editorial {
  background: var(--cream); background-image: var(--paw-tile-green);
  position: relative; overflow: hidden;
}
.hero-ed-grid {
  display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center;
  padding-top: clamp(48px, 7vw, 96px); padding-bottom: clamp(48px, 7vw, 96px);
}
.hero-ed-copy .eyebrow { margin-bottom: 20px; }
.hero-editorial .btn-outline { border-color: var(--green); color: var(--green); }
.hero-editorial .btn-outline:hover { background: var(--green); color: var(--white); }
.hero-ed-copy h1 { font-size: clamp(40px, 5.6vw, 66px); margin-bottom: 20px; }
.hero-ed-copy .hero-sub { font-size: clamp(17px, 1.6vw, 20px); color: var(--muted); max-width: 480px; }
.hero-ed-media { position: relative; max-width: 520px; margin: 0 auto; width: 100%; }
.arch { border-radius: 999px 999px var(--radius) var(--radius); overflow: hidden; position: relative; box-shadow: var(--shadow-lift); }
.arch::before {
  content: ""; position: absolute; inset: 12px; border: 1px solid rgba(255,255,255,.55);
  border-radius: 985px 985px 8px 8px; z-index: 2; pointer-events: none;
}
.arch img { width: 100%; height: clamp(380px, 46vw, 560px); object-fit: cover; transform: scale(1.02); }
.hero-ed-media .seal {
  position: absolute; width: clamp(110px, 13vw, 150px); height: auto;
  bottom: -18px; left: -22px; color: var(--gold); background: var(--green-deep);
  border-radius: 50%; box-shadow: var(--shadow-lift); padding: 6px;
  animation: sealspin 40s linear infinite;
}
@keyframes sealspin { to { transform: rotate(360deg); } }
@media (min-width: 900px) {
  .hero-ed-grid { grid-template-columns: 1.05fr .95fr; gap: 64px; }
  .hero-ed-media { margin: 0 0 0 auto; }
}

/* ------------------------------------------- interior heroes ---- */
.hero {
  background-size: cover; background-position: center; padding: 120px 0 90px;
  color: var(--white); position: relative;
}
.hero:not(.hero-small):not(.hero-hidden) { min-height: 540px; display: flex; align-items: center; }
.hero-small {
  background: linear-gradient(115deg, var(--green-ink) 0%, var(--green-deep) 55%, var(--green) 100%);
  padding: clamp(72px, 9vw, 110px) 0 clamp(56px, 7vw, 84px); overflow: hidden;
}
.hero-small::before {
  content: ""; position: absolute; inset: 0; background-image: var(--paw-tile); pointer-events: none;
}
.hero-hidden { background: linear-gradient(115deg, var(--green-ink), var(--green)); padding: 140px 0; min-height: 60vh; display: flex; align-items: center; }
.hero .wrap { position: relative; z-index: 2; width: 100%; }
.hero-inner { max-width: 760px; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
.hero-side-media { display: none; }
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.25fr .75fr; }
  .hero-side-media { display: block; justify-self: end; width: min(320px, 100%); }
  .hero-side-media .arch img { height: 340px; }
  .hero-side-media .arch { box-shadow: 0 24px 60px rgba(0,0,0,.35); }
}
.hero .eyebrow { color: var(--gold-soft); }
.hero .eyebrow::before, .hero .eyebrow.center::after { background: var(--gold-soft); }
.hero h1 { color: var(--white); }
.hero h1 em { color: var(--gold-soft); }
.hero-sub { color: rgba(255,255,255,.85); font-size: 18px; max-width: 560px; }
.hero-cta { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; align-items: center; }

/* seal badge */
.seal text { fill: currentColor; font-family: 'Inter', sans-serif; font-weight: 600; }

/* ------------------------------------------------- cards ---- */
.card-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; margin-top: 44px; }
.card {
  flex: 1 1 300px; max-width: 350px; background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-soft); display: flex; flex-direction: column;
  border: 1px solid rgba(20,38,32,.05); position: relative;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out);
}
.card::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease-out);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.card:hover::after { transform: scaleX(1); }
.card-media { overflow: hidden; height: 215px; }
.card-media img { height: 100%; width: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.card:hover .card-media img { transform: scale(1.06); }
.card h3 { padding: 22px 24px 0; font-size: 21px; }
.card p { padding: 0 24px; font-size: 15.5px; flex: 1; }
.card .link-cta { display: block; padding: 4px 24px 24px; font-weight: 600; }

.link-cta {
  background: none; border: none; color: var(--green); font-weight: 600; cursor: pointer;
  font-size: 15px; padding: 0; font-family: inherit; transition: color .2s ease, letter-spacing .3s var(--ease-out);
}
.link-cta:hover { color: var(--gold); letter-spacing: .02em; }

/* ------------------------------------------------- about ---- */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
.about-grid .arch img { height: clamp(360px, 42vw, 520px); }
@media (min-width: 880px) { .about-grid { grid-template-columns: .92fr 1.08fr; gap: 72px; } }
.about-full .about-grid > .arch { position: sticky; top: 110px; }
.lead-drop::first-letter {
  font-family: 'Playfair Display', serif; font-size: 3.4em; float: left; line-height: .82;
  padding: 4px 10px 0 0; color: var(--green); font-weight: 600;
}

/* --------------------------------------------- how it works ---- */
.how-it-works { background: var(--white); position: relative; }
.steps { display: flex; flex-wrap: wrap; gap: 34px; margin-top: 52px; justify-content: center; position: relative; }
.step {
  flex: 1 1 280px; max-width: 350px; text-align: center; background: var(--cream);
  border-radius: var(--radius); padding: 40px 28px 32px; position: relative;
  border: 1px solid rgba(20,38,32,.05);
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out);
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.step-num {
  display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px;
  border-radius: 50%; background: var(--green); color: var(--white); font-weight: 600;
  font-size: 22px; margin-bottom: 18px; font-family: 'Playfair Display', serif;
  box-shadow: 0 0 0 6px var(--white), 0 0 0 7px var(--gold);
}
.step h3 { font-size: 21px; }
.step p { font-size: 15.5px; }
.step .link-cta { margin-top: 8px; }

/* ------------------------------------------------ gallery ---- */
.gallery-grid { columns: 2; column-gap: 14px; margin: 40px 0 8px; }
@media (min-width: 700px) { .gallery-grid { columns: 3; } }
@media (min-width: 1020px) { .gallery-grid { columns: 4; } }
.g-item {
  display: block; width: 100%; padding: 0; margin: 0 0 14px; border: none; background: none;
  cursor: zoom-in; border-radius: 12px; overflow: hidden; break-inside: avoid; position: relative;
}
.g-item img { width: 100%; border-radius: 12px; transition: transform .7s var(--ease-out), filter .4s ease; }
.g-item::after {
  content: ""; position: absolute; inset: 0; border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgba(20,38,32,.08); pointer-events: none;
  transition: box-shadow .3s ease;
}
.g-item:hover img { transform: scale(1.045); }
.g-item:hover::after { box-shadow: inset 0 0 0 2px var(--gold), inset 0 -60px 60px -30px rgba(20,38,32,.35); }

/* lightbox (built by main.js) */
.lightbox {
  position: fixed; inset: 0; background: rgba(16, 28, 23, .92); z-index: 600;
  display: flex; align-items: center; justify-content: center; padding: 28px;
  opacity: 0; transition: opacity .3s ease;
}
.lightbox.open { opacity: 1; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 88vh; border-radius: 10px; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.lightbox button {
  position: absolute; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.25);
  color: var(--white); cursor: pointer; border-radius: 50%; width: 48px; height: 48px;
  font-size: 22px; display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, border-color .2s ease;
}
.lightbox button:hover { background: rgba(255,255,255,.18); border-color: var(--gold); }
.lightbox .lb-close { top: 20px; right: 20px; font-size: 28px; }
.lightbox .lb-prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 16px; top: 50%; transform: translateY(-50%); }

/* ---------------------------------------------------- faq ---- */
.faq-list { max-width: 780px; margin: 40px auto 0; }
details {
  background: var(--white); border: 1px solid rgba(20,38,32,.1); border-radius: 12px;
  padding: 0; margin-bottom: 12px; overflow: hidden; transition: border-color .25s ease, box-shadow .25s ease;
}
details[open] { border-color: var(--gold); box-shadow: var(--shadow-soft); }
summary {
  font-weight: 600; cursor: pointer; color: var(--green-deep); font-family: 'Playfair Display', serif;
  font-size: 18px; padding: 20px 54px 20px 24px; list-style: none; position: relative;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  color: var(--gold); font-size: 24px; font-family: 'Inter', sans-serif; font-weight: 400;
  transition: transform .3s var(--ease-out);
}
details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
details p { margin: 0; padding: 0 24px 22px; }
.faq { background: var(--cream); }

/* ------------------------------------------------- hiring ---- */
.hiring { background: var(--cream); }
.hiring-grid { display: grid; grid-template-columns: 1fr; gap: 44px; }
@media (min-width: 900px) { .hiring-grid { grid-template-columns: 1.05fr .95fr; align-items: center; } }
.form-card { background: var(--white); border-radius: var(--radius); padding: 26px 22px 14px; box-shadow: var(--shadow-soft); border-top: 3px solid var(--gold); }

/* -------------------------------- three-part (service/area) ---- */
.three-part { position: relative; }
.three-part .wrap { max-width: 900px; position: relative; }
.tp-num {
  position: absolute; top: -34px; right: 0; font-family: 'Playfair Display', serif;
  font-size: clamp(90px, 12vw, 150px); line-height: 1; font-weight: 700; z-index: 0;
  color: transparent; -webkit-text-stroke: 1px rgba(47, 93, 70, .16); pointer-events: none;
  user-select: none;
}
.three-part.alt .tp-num { -webkit-text-stroke-color: rgba(47, 93, 70, .2); }
@supports not (-webkit-text-stroke: 1px black) { .tp-num { color: rgba(47,93,70,.07); } }
.three-part h2, .three-part p, .three-part .eyebrow, .three-part h3, .three-part ul { position: relative; z-index: 1; }
.three-part h2 { max-width: 720px; }
.three-part p { max-width: 760px; }
.three-part:not(.alt) .wrap { border-left: 2px solid var(--gold); padding-left: clamp(24px, 4vw, 48px); }
.three-part.alt .wrap {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-soft);
  padding: clamp(28px, 4.5vw, 56px);
}
.three-part.alt { padding-top: 0; padding-bottom: 0; }
.three-part.alt + .three-part, .three-part + .three-part.alt { margin-top: -20px; }
.section.three-part { padding: clamp(48px, 6vw, 72px) 0; }

/* ------------------------------------------------ pricing ---- */
.pricing-section .center-text { font-size: 17px; }
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 28px; margin: 44px 0 34px; }
@media (min-width: 900px) { .pricing-grid { grid-template-columns: 1fr 1fr; } }
.pricing-card {
  background: var(--white); border-radius: var(--radius); padding: 34px 32px;
  box-shadow: var(--shadow-soft); border: 1px solid rgba(20,38,32,.06); border-top: 3px solid var(--gold);
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.pricing-card.wide { grid-column: 1 / -1; }
.pricing-card h3 { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.pricing-card h3::after { content: ""; flex: 1; height: 1px; background: rgba(198,161,91,.4); }
.price-row { display: flex; align-items: baseline; gap: 10px; padding: 11px 0; }
.price-row + .price-row { border-top: 1px dashed rgba(20,38,32,.12); }
.price-row .p-name { color: var(--ink); font-weight: 500; font-size: 16px; }
.price-row .p-dots { flex: 1; border-bottom: 2px dotted rgba(198,161,91,.55); transform: translateY(-4px); }
.price-row .p-amount { font-family: 'Playfair Display', serif; font-weight: 700; color: var(--green); font-size: 20px; }
.pricing-card table { width: 100%; border-collapse: collapse; }
.pricing-card td, .pricing-card th { padding: 12px 6px; border-bottom: 1px dashed rgba(20,38,32,.12); text-align: left; font-size: 16px; }
.pricing-card th { font-family: 'Inter', sans-serif; font-size: 12.5px; text-transform: uppercase; letter-spacing: .18em; color: var(--gold); border-bottom: 1px solid rgba(198,161,91,.4); }
.pricing-card td:not(:first-child) { font-family: 'Playfair Display', serif; font-weight: 700; color: var(--green); font-size: 19px; }
.pricing-card tr:last-child td { border-bottom: none; }
.pricing-note { font-size: 13.5px; font-style: italic; margin: 14px 0 0; color: var(--muted); }
.includes-band {
  background: var(--green-deep); background-image: var(--paw-tile); border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px); margin: 10px 0 28px; box-shadow: var(--shadow-soft);
}
.includes-band p { color: rgba(255,255,255,.92); margin: 0; font-size: 16.5px; max-width: none; }
.includes-band .eyebrow { color: var(--gold-soft); }
.includes-band .eyebrow::before { background: var(--gold-soft); }
.inshop-panel {
  background: var(--white); border: 1px solid rgba(198,161,91,.45); border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px); text-align: center; box-shadow: var(--shadow-soft);
}
.inshop-panel h3 { justify-content: center; }
.inshop-panel h3::after { display: none; }
.inshop-panel p { max-width: 640px; margin-left: auto; margin-right: auto; }
.inshop-panel .tel-big {
  display: inline-block; font-family: 'Playfair Display', serif; font-size: clamp(24px, 3vw, 32px);
  font-weight: 700; color: var(--green); margin: 8px 0 4px; transition: color .2s ease;
}
.inshop-panel .tel-big:hover { color: var(--gold); }

/* ------------------------------------------------ contact ---- */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 34px; margin-top: 10px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1.05fr .95fr; } }
.contact-form-wrap { background: var(--white); border-radius: var(--radius); padding: 22px 18px 8px; box-shadow: var(--shadow-soft); border-top: 3px solid var(--gold); }
.contact-map iframe { border-radius: var(--radius); width: 100%; height: 340px; box-shadow: var(--shadow-soft); }
.contact-details { margin-top: 22px; display: grid; gap: 14px; }
.detail-item { display: flex; gap: 14px; align-items: flex-start; background: var(--cream); border-radius: 12px; padding: 14px 16px; }
.detail-item svg { width: 20px; height: 20px; flex: none; color: var(--gold); margin-top: 3px; }
.detail-item p { margin: 0; font-size: 15.5px; }
.detail-item strong { color: var(--green-deep); display: block; font-size: 13px; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 2px; }

/* -------------------------------------------- testimonials ---- */
.testimonials { background: var(--cream); position: relative; }
.testimonials .wrap > h3 { text-align: center; max-width: 700px; margin: 0 auto 8px; }
.testimonials .t-ornament {
  display: block; text-align: center; font-family: 'Playfair Display', serif;
  color: var(--gold); font-size: 60px; line-height: .6; height: 34px; margin-bottom: 6px;
}
.testimonials iframe.lc_reviews_widget { margin-top: 10px; }

/* --------------------------------------------------- legal ---- */
.legal .prose h2 { margin-top: 30px; }
.legal .prose h3 { margin-top: 30px; font-size: 20px; }
.legal .prose h3::before { content: ""; display: block; width: 34px; height: 2px; background: var(--gold); margin-bottom: 10px; }
.legal .prose p { max-width: 820px; }

/* ------------------------------------------------- footer ---- */
.site-footer {
  background: var(--green-ink); background-image: var(--paw-tile);
  color: rgba(255,255,255,.82); padding: 72px 0 24px; border-top: 3px solid var(--gold);
}
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 38px; }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr; } }
.footer-logo { height: 48px; filter: brightness(0) invert(1); margin-bottom: 14px; opacity: .95; }
.site-footer h4 { color: var(--gold-soft); font-size: 12.5px; text-transform: uppercase; letter-spacing: .22em; margin: 0 0 16px; font-weight: 600; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 9px; }
.site-footer a { color: rgba(255,255,255,.82); font-size: 14.5px; transition: color .2s ease, padding-left .25s var(--ease-out); }
.site-footer ul li a:hover { color: var(--gold-soft); padding-left: 4px; }
.site-footer > .wrap > div > p { color: rgba(255,255,255,.7); font-size: 14.5px; }
.hours { display: flex; flex-direction: column; gap: 5px; }
.hours li { display: flex; justify-content: space-between; font-size: 14.5px; }
.hours li span:last-child { color: var(--gold-soft); }
.footer-contact { margin-top: 16px; }
.footer-contact a { display: block; margin-bottom: 5px; }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; margin-top: 52px;
  padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); font-size: 13px;
}
.socials { display: flex; gap: 10px; margin-top: 16px; }
.social-icon {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25);
  display: inline-flex; align-items: center; justify-content: center; color: rgba(255,255,255,.85);
  transition: background .25s ease, border-color .25s ease, color .25s ease, transform .3s var(--ease-out);
}
.social-icon svg { width: 17px; height: 17px; fill: currentColor; }
.social-icon:hover { background: var(--gold); border-color: var(--gold); color: var(--green-ink); transform: translateY(-3px); }

/* -------------------------------------------------- modal ---- */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(16, 28, 23, .6); backdrop-filter: blur(3px);
  display: none; align-items: center; justify-content: center; z-index: 500; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--white); border-radius: 16px; max-width: 540px; width: 100%;
  max-height: 96vh; overflow: hidden auto; position: relative; padding: 34px 22px 12px;
  border-top: 4px solid var(--gold); box-shadow: 0 40px 100px rgba(0,0,0,.4);
  animation: modalin .35s var(--ease-out);
}
@keyframes modalin { from { transform: translateY(24px); opacity: 0; } to { transform: none; opacity: 1; } }
.modal-close { position: absolute; top: 10px; right: 14px; background: none; border: none; font-size: 30px; cursor: pointer; min-width: 44px; min-height: 44px; color: var(--muted); }
.modal-close:hover { color: var(--green-deep); }
.modal-form-wrap iframe, .quote-form-wrap iframe, .contact-form-wrap iframe, .hiring-form iframe, .form-card iframe { border: none; width: 100%; }
.quote-form-wrap { max-width: 640px; margin: 30px auto 0; background: var(--white); border-radius: var(--radius); padding: 22px 18px 8px; box-shadow: var(--shadow-soft); border-top: 3px solid var(--gold); text-align: left; }

/* -------------------------------------------- hidden pages ---- */
.hidden-page-wrap {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(115deg, var(--green-ink), var(--green-deep)); padding: 40px 16px; position: relative;
}
.hidden-page-wrap::before { content: ""; position: absolute; inset: 0; background-image: var(--paw-tile); pointer-events: none; }
.hidden-card {
  background: var(--white); border-radius: 16px; padding: 36px 30px; max-width: 500px; width: 100%;
  box-shadow: 0 30px 80px rgba(0,0,0,.35); text-align: center; position: relative;
  border-top: 4px solid var(--gold);
}
.hidden-logo { height: 54px; margin: 0 auto 22px; width: auto; }
.star-picker { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.star-option {
  background: var(--cream); border: 1px solid rgba(20,38,32,.08); border-radius: 10px; padding: 15px;
  font-weight: 600; color: var(--green-deep);
  transition: transform .3s var(--ease-out), border-color .2s ease, background .2s ease;
}
.star-option:hover { transform: translateY(-2px); border-color: var(--gold); background: var(--white); }

/* --------------------------------------------------- misc ---- */
.plain-list { columns: 2; padding-left: 18px; }
.plain-list li { margin-bottom: 6px; }
.plain-list a { font-weight: 500; }
.quote-cta { background: var(--cream); }
.testimonials .wrap h2, .services-grid .wrap h2, .gallery-teaser h2 { text-align: center; }
.services-grid .wrap > h2, .gallery-teaser .wrap > h2, .how-it-works .wrap > h3, .faq .wrap > h2 { text-align: center; max-width: 700px; margin-left: auto; margin-right: auto; }

/* ------------------------------------------ scroll reveal ---- */
.reveal { opacity: 0; transform: translateY(26px); }
.reveal.in {
  opacity: 1; transform: none;
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
  transition-delay: var(--d, 0s);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .hero-ed-media .seal { animation: none; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
