/* ============================================================
   Fluffy Floof — Pet Grooming · shared design system
   Palette keyed to brand logo (chocolate / amber / powder-blue)
   ============================================================ */

:root {
  --bg:        #FBF8F4;
  --surface:   #FFFFFF;
  --surface-2: #F6EFE6;
  --text:      #3A2A20;
  --muted:     #8A7A6E;
  --primary:   #573621;
  --primary-d: #43291a;
  --secondary: #8FC6E3;
  --secondary-soft: #DCEEF7;
  --accent:    #ECA63E;
  --accent-d:  #d9912a;
  --border:    #ECE3D8;
  --focus:     #2F7FB0;

  --maxw: 1180px;
  --r-sm: 12px;
  --r:    18px;
  --r-lg: 26px;
  --r-xl: 34px;

  --sh-sm: 0 1px 2px rgba(58,42,32,.05), 0 2px 8px rgba(58,42,32,.04);
  --sh:    0 4px 14px rgba(58,42,32,.07), 0 12px 30px rgba(58,42,32,.06);
  --sh-lg: 0 18px 50px rgba(58,42,32,.14);

  --ease: cubic-bezier(.22,.61,.36,1);

  --ff-display: "Baloo 2", system-ui, sans-serif;
  --ff-body: "Nunito Sans", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  color: var(--primary);
  line-height: 1.08;
  margin: 0;
  font-weight: 700;
  letter-spacing: -.01em;
}

p { margin: 0; }

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: 6px;
}

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

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }

.section { padding-block: clamp(56px, 9vw, 112px); }
.section--tight { padding-block: clamp(40px, 6vw, 72px); }
.section--blue { background: linear-gradient(180deg, var(--secondary-soft), #eef7fc); }
.section--cream { background: var(--surface-2); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-d);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.h-xl { font-size: clamp(2.3rem, 6.5vw, 4.2rem); }
.h-lg { font-size: clamp(1.9rem, 4.5vw, 3rem); }
.h-md { font-size: clamp(1.4rem, 3vw, 2rem); }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--muted); max-width: 60ch; }
.muted { color: var(--muted); }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }

.section-head { max-width: 64ch; }
.section-head.center { margin-inline: auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: 15px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s, border-color .2s;
  min-height: 48px;
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 8px 20px rgba(236,166,62,.32); }
.btn--primary:hover { background: var(--accent-d); box-shadow: 0 12px 26px rgba(236,166,62,.4); }

.btn--brown { background: var(--primary); color: #fff; box-shadow: 0 8px 20px rgba(87,54,33,.22); }
.btn--brown:hover { background: var(--primary-d); }

.btn--wa { background: #25D366; color: #fff; box-shadow: 0 8px 20px rgba(37,211,102,.3); }
.btn--wa:hover { background: #1db657; }

.btn--ghost { background: var(--surface); color: var(--primary); border-color: var(--border); box-shadow: var(--sh-sm); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent-d); }

.btn--light { background: rgba(255,255,255,.16); color: #fff; border-color: rgba(255,255,255,.45); backdrop-filter: blur(4px); }
.btn--light:hover { background: rgba(255,255,255,.28); }

.btn--block { width: 100%; }
.btn--sm { padding: 11px 18px; min-height: 42px; font-size: .92rem; }

/* ---------- header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251,248,244,.82);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.header.is-scrolled { box-shadow: var(--sh-sm); }
.header__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  height: 86px;
}
.brand { display: flex; align-items: center; gap: 13px; margin-right: auto; }
.brand__mark { width: 66px; height: 66px; object-fit: contain; }
.brand__txt { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--ff-display); font-weight: 800; font-size: 1.18rem; color: var(--primary); letter-spacing: -.01em; }
.brand__sub { font-family: var(--ff-display); font-weight: 600; font-size: .58rem; letter-spacing: .28em; text-transform: uppercase; color: var(--accent-d); margin-top: 2px; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: .97rem;
  color: var(--text);
  padding: 9px 14px;
  border-radius: 999px;
  transition: background .2s, color .2s;
}
.nav a:hover { background: var(--surface-2); color: var(--primary); }
.nav a.is-active { color: var(--accent-d); }

.header__cta { display: flex; align-items: center; gap: 10px; }

.hamburger {
  display: none;
  width: 48px; height: 48px;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 14px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-sm);
}
.hamburger span { display: block; width: 20px; height: 2.2px; background: var(--primary); border-radius: 2px; position: relative; transition: transform .3s, opacity .2s; }
.hamburger span::before, .hamburger span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2.2px; background: var(--primary); border-radius: 2px; transition: transform .3s; }
.hamburger span::before { top: -6px; }
.hamburger span::after { top: 6px; }
.hamburger.is-open span { background: transparent; }
.hamburger.is-open span::before { transform: translateY(6px) rotate(45deg); }
.hamburger.is-open span::after { transform: translateY(-6px) rotate(-45deg); }

/* mobile drawer */
.drawer {
  position: fixed;
  inset: 86px 0 0 0;
  background: rgba(58,42,32,.4);
  backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  z-index: 99;
}
.drawer.is-open { opacity: 1; pointer-events: auto; }
.drawer__panel {
  background: var(--surface);
  padding: 18px 22px 28px;
  border-radius: 0 0 var(--r-lg) var(--r-lg);
  transform: translateY(-12px);
  transition: transform .35s var(--ease);
  box-shadow: var(--sh-lg);
}
.drawer.is-open .drawer__panel { transform: translateY(0); }
.drawer a.drawer__link {
  display: block;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--text);
  padding: 14px 8px;
  border-bottom: 1px solid var(--border);
}
.drawer a.drawer__link:last-of-type { border-bottom: none; }
.drawer__actions { display: grid; gap: 10px; margin-top: 16px; }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(60% 70% at 82% 18%, rgba(143,198,227,.34), transparent 60%),
    radial-gradient(50% 60% at 10% 90%, rgba(236,166,62,.16), transparent 60%);
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding-block: clamp(40px, 6vw, 84px);
}
.hero__title { margin-bottom: 20px; }
.hero__title .amp { color: var(--accent); }
.hero__sub { margin-bottom: 28px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 18px 26px; margin-top: 30px; }
.hero__trust div { display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: .92rem; color: var(--primary); }
.hero__trust svg { width: 20px; height: 20px; color: var(--secondary); flex: none; }

.hero__media {
  position: relative;
  border-radius: var(--r-xl);
  background: var(--surface);
  box-shadow: var(--sh-lg);
  padding: 22px;
  border: 1px solid var(--border);
}
.hero__media img { border-radius: var(--r-lg); width: 100%; aspect-ratio: 16/12; object-fit: contain; }
.hero__badge {
  position: absolute;
  bottom: -22px; left: 50%; transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-family: var(--ff-display);
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(236,166,62,.42);
  white-space: nowrap;
  font-size: 1rem;
}
.hero__badge b { font-size: 1.18rem; }

/* ---------- pills / chips ---------- */
.pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 16px;
  font-weight: 700;
  font-size: .92rem;
  color: var(--primary);
  box-shadow: var(--sh-sm);
}
.pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--secondary); }

/* ---------- pillar cards ---------- */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.pillar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px 28px;
  box-shadow: var(--sh-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.pillar:hover { transform: translateY(-5px); box-shadow: var(--sh); }
.pillar__icon {
  width: 60px; height: 60px;
  border-radius: 18px;
  display: grid; place-items: center;
  background: var(--secondary-soft);
  color: var(--focus);
  margin-bottom: 18px;
}
.pillar__icon svg { width: 30px; height: 30px; }
.pillar h3 { font-size: 1.4rem; margin-bottom: 8px; }
.pillar p { color: var(--muted); margin-bottom: 16px; }
.pillar__link { font-family: var(--ff-display); font-weight: 700; color: var(--accent-d); display: inline-flex; align-items: center; gap: 6px; }
.pillar__link svg { width: 16px; height: 16px; transition: transform .25s; }
.pillar:hover .pillar__link svg { transform: translateX(4px); }

/* ---------- package cards ---------- */
.pkg {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--sh-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  position: relative;
}
.pkg:hover { transform: translateY(-6px); box-shadow: var(--sh); }
.pkg.is-featured { border-color: var(--accent); box-shadow: 0 0 0 2px var(--accent), var(--sh); }
.pkg__tag {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  background: var(--accent); color: #fff;
  font-family: var(--ff-display); font-weight: 700; font-size: .72rem;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
}
.pkg__media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--surface-2); }
.pkg__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.pkg:hover .pkg__media img { transform: scale(1.05); }
.pkg__dur {
  position: absolute; bottom: 12px; left: 12px;
  background: rgba(58,42,32,.78); color: #fff;
  font-weight: 700; font-size: .82rem;
  padding: 6px 12px; border-radius: 999px;
  backdrop-filter: blur(2px);
  display: inline-flex; align-items: center; gap: 6px;
}
.pkg__dur svg { width: 14px; height: 14px; }
.pkg__body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.pkg__body h3 { font-size: 1.4rem; margin-bottom: 4px; }
.pkg__desc { color: var(--muted); font-style: italic; margin-bottom: 16px; }
.pkg__price { font-family: var(--ff-display); margin-bottom: 20px; line-height: 1; }
.pkg__price .from { font-size: .8rem; font-weight: 600; color: var(--muted); display: block; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 4px; font-family: var(--ff-body); }
.pkg__price .amt { font-size: 2.1rem; font-weight: 800; color: var(--primary); }
.pkg__price .cur { font-size: 1rem; color: var(--accent-d); font-weight: 700; }
.pkg__cta { margin-top: auto; }

/* ---------- offer banner ---------- */
.offer {
  background: linear-gradient(120deg, var(--primary), var(--primary-d));
  color: #fff;
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 48px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.offer::after {
  content: "";
  position: absolute; right: -60px; top: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(236,166,62,.32), transparent 70%);
}
.offer__pct {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--accent);
  line-height: .9;
  position: relative;
}
.offer__pct span { font-size: .4em; vertical-align: super; }
.offer h3 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 6px; }
.offer p { color: rgba(255,255,255,.82); }
.offer__cta { position: relative; }

/* ---------- trust strip ---------- */
.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.trust__item { display: flex; gap: 16px; align-items: flex-start; }
.trust__ic {
  width: 52px; height: 52px; flex: none;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: grid; place-items: center;
  color: var(--accent-d);
  box-shadow: var(--sh-sm);
}
.trust__ic svg { width: 26px; height: 26px; }
.trust__item h4 { font-size: 1.1rem; margin-bottom: 3px; }
.trust__item p { color: var(--muted); font-size: .96rem; }

/* ---------- gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery__item {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  border: none; padding: 0; background: var(--surface-2);
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery__item:hover img { transform: scale(1.07); }
.gallery__item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 60%, rgba(58,42,32,.25)); opacity: 0; transition: opacity .3s; }
.gallery__item:hover::after { opacity: 1; }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(40,28,20,.92);
  display: grid; place-items: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: min(92vw, 1000px); max-height: 86vh; border-radius: var(--r); box-shadow: var(--sh-lg); }
.lightbox__close { position: absolute; top: 20px; right: 22px; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.16); border: none; color: #fff; font-size: 1.6rem; cursor: pointer; }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,.16); border: none; color: #fff; cursor: pointer; display: grid; place-items: center; }
.lightbox__nav svg { width: 24px; height: 24px; }
.lightbox__nav.prev { left: 18px; }
.lightbox__nav.next { right: 18px; }

/* ---------- location / map ---------- */
.loc { display: grid; grid-template-columns: 1fr 1.1fr; gap: 32px; align-items: stretch; }
.loc__card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 30px; box-shadow: var(--sh-sm); }
.loc__row { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.loc__row:last-child { border-bottom: none; }
.loc__row svg { width: 22px; height: 22px; color: var(--accent-d); flex: none; margin-top: 2px; }
.loc__row h4 { font-size: 1rem; margin-bottom: 2px; }
.loc__row p, .loc__row a { color: var(--muted); font-size: .96rem; }
.loc__row a:hover { color: var(--accent-d); }
.map {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--sh-sm);
  min-height: 340px;
  position: relative;
  background: var(--secondary-soft);
}
.map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

/* placeholder box */
.ph {
  border: 2px dashed var(--border);
  border-radius: var(--r-lg);
  background:
    repeating-linear-gradient(45deg, rgba(143,198,227,.07) 0 12px, transparent 12px 24px),
    var(--surface);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 40px 24px;
  color: var(--muted);
}
.ph__tag { font-family: "DM Mono", ui-monospace, monospace; font-size: .8rem; letter-spacing: .04em; text-transform: uppercase; color: var(--secondary); background: var(--secondary-soft); padding: 5px 12px; border-radius: 999px; margin-bottom: 12px; display: inline-block; }
.ph h4 { color: var(--primary); margin-bottom: 6px; }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 760px; margin-inline: auto; }
.faq__item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); margin-bottom: 14px; overflow: hidden; box-shadow: var(--sh-sm); }
.faq__q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: var(--ff-display); font-weight: 700; font-size: 1.08rem; color: var(--primary); }
.faq__q .ic { width: 28px; height: 28px; flex: none; border-radius: 50%; background: var(--surface-2); display: grid; place-items: center; transition: transform .3s, background .3s; }
.faq__q .ic svg { width: 16px; height: 16px; color: var(--accent-d); }
.faq__item.is-open .faq__q .ic { transform: rotate(45deg); background: var(--accent); }
.faq__item.is-open .faq__q .ic svg { color: #fff; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq__a p { padding: 0 24px 22px; color: var(--muted); }

/* ---------- forms ---------- */
.form { display: grid; gap: 16px; }
.field { display: grid; gap: 7px; }
.field label { font-family: var(--ff-display); font-weight: 600; font-size: .92rem; color: var(--primary); }
.field input, .field select, .field textarea {
  font-family: var(--ff-body);
  font-size: 1rem;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--surface);
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--secondary); box-shadow: 0 0 0 3px var(--secondary-soft); }
.field textarea { resize: vertical; min-height: 96px; }
.field--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__note { font-size: .85rem; color: var(--muted); }

/* ---------- footer ---------- */
.footer { background: var(--primary); color: rgba(255,255,255,.78); padding-block: clamp(48px, 6vw, 72px) 28px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; }
.footer__brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer__brand img { width: 84px; height: 84px; background: #fff; border-radius: 18px; padding: 7px; }
.footer__brand b { font-family: var(--ff-display); color: #fff; font-size: 1.3rem; }
.footer h5 { font-family: var(--ff-display); color: #fff; font-size: 1rem; letter-spacing: .04em; margin-bottom: 16px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer a:hover { color: var(--accent); }
.footer__social { display: flex; gap: 10px; margin-top: 16px; }
.footer__social a { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.1); display: grid; place-items: center; transition: background .2s, transform .2s; }
.footer__social a:hover { background: var(--accent); transform: translateY(-2px); }
.footer__social svg { width: 20px; height: 20px; color: #fff; }
.footer__bot { border-top: 1px solid rgba(255,255,255,.14); margin-top: 40px; padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .86rem; }

/* ---------- mobile sticky action bar ---------- */
.actionbar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  display: none;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -6px 24px rgba(58,42,32,.1);
}
.actionbar .btn { flex: 1; }

/* ---------- breadcrumb / page hero ---------- */
.phead { background: linear-gradient(180deg, var(--secondary-soft), var(--bg)); padding-block: clamp(40px, 6vw, 72px) clamp(34px, 5vw, 56px); }
.crumb { font-size: .88rem; color: var(--muted); margin-bottom: 14px; font-weight: 600; }
.crumb a:hover { color: var(--accent-d); }
.phead p.lead { margin-top: 14px; }

/* ---------- misc utilities ---------- */
.stack-lg > * + * { margin-top: 22px; }
.mt-sm { margin-top: 14px; }
.mt { margin-top: 24px; }
.mt-lg { margin-top: 40px; }
.note-strip {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--secondary-soft);
  border: 1px solid #cfe6f2;
  border-radius: var(--r);
  padding: 16px 20px;
  font-size: .95rem;
  color: var(--primary);
}
.note-strip svg { width: 22px; height: 22px; color: var(--focus); flex: none; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .nav, .header__cta .btn--brown { display: none; }
  .hamburger { display: flex; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { order: -1; max-width: 460px; margin-inline: auto; }
  .loc { grid-template-columns: 1fr; }
  .offer { grid-template-columns: auto 1fr; }
  .offer__cta { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .trust { grid-template-columns: 1fr; gap: 16px; }
  .hero__inner { padding-block: 30px 50px; gap: 24px; }
  .hero__media { order: 0; max-width: 320px; margin-top: 8px; padding: 14px; }
  .hero__media img { aspect-ratio: 4 / 3; max-height: 220px; object-fit: contain; }
  .actionbar { display: flex; }
  body { padding-bottom: 74px; }
  .footer .actionbar { padding-bottom: 0; }
}

@media (max-width: 540px) {
  body { font-size: 16px; }
  .wrap { padding-inline: 18px; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .field--2 { grid-template-columns: 1fr; }
  .offer { grid-template-columns: 1fr; text-align: center; gap: 16px; }
  .offer__pct { margin-inline: auto; }
  .offer::after { display: none; }
  .hero__cta .btn { flex: 1; }
  .hero__title { font-size: clamp(2rem, 10vw, 2.7rem); }
  .hero__media { max-width: 288px; }
  .hero__badge { font-size: .9rem; padding: 10px 18px; }
  .hero__trust { margin-top: 20px; }
  .footer__bot { flex-direction: column; }
  .brand__sub { display: none; }
  .pkg__price .amt { font-size: 1.9rem; }
}

@media (max-width: 380px) {
  .footer__grid { grid-template-columns: 1fr; }
  .hero__trust { gap: 12px; }
}
