/* ============================================================
   Everything Dog & School of Woof — site styles
   Real brand: turquoise + orange + black/white hazard, bold.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --turq:       #14C2C2;
  --turq-600:   #0FAAAA;
  --turq-700:   #0A7E7E;   /* text-safe on light */
  --turq-tint:  #E2F7F6;
  --turq-wall:  #9ED9D6;   /* the painted-wall teal */

  --orange:     #E8902E;
  --orange-600: #CE7C1E;
  --orange-tint:#FBEAD3;

  --ink:        #16201D;
  --ink-soft:   #45514B;
  --muted:      #6C766F;

  --cream:      #F6F3EC;
  --paper:      #FCFBF7;
  --white:      #FFFFFF;
  --line:       #E4E7DE;
  --line-strong:#D2D7CC;
  --black:      #191919;

  --focus:      #0A7E7E;

  --accent:     var(--orange);     /* tweakable */
  --hazard-on:  1;                  /* tweakable: 1 show / 0 hide via class */

  --maxw: 1240px;
  --gut: clamp(20px, 5vw, 64px);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 26px;
  --r-xl: 36px;

  --shadow-1: 0 1px 2px rgba(22,32,29,.06), 0 6px 18px rgba(22,32,29,.06);
  --shadow-2: 0 10px 30px rgba(22,32,29,.10), 0 30px 60px rgba(22,32,29,.08);
  --shadow-turq: 0 18px 40px rgba(20,194,194,.28);

  --font-display: "Archivo", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, sans-serif;

  --header-h: 76px;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 800; line-height: 1.02; letter-spacing: -0.015em; }
p { margin: 0; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; border-radius: 4px; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }

/* skip link */
.skip { position: absolute; left: -9999px; top: 8px; z-index: 200; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 8px; }
.skip:focus { left: 8px; }

/* ---------- Reusable bits ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5ch;
  font-family: var(--font-display);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: .14em; font-size: .74rem;
  color: var(--turq-700);
}
.eyebrow .cursor { color: var(--orange); }

.cursor { font-weight: 800; }
.cursor.blink { animation: blink 1.1s steps(1) infinite; }
@keyframes blink { 0%,55%{opacity:1} 56%,100%{opacity:0} }
@media (prefers-reduced-motion: reduce){ .cursor.blink{ animation:none } }
.no-blink .cursor.blink { animation: none; }

/* Hazard stripe utility */
.hazard {
  background-image: repeating-linear-gradient(-45deg,
     var(--black) 0, var(--black) 16px,
     #fff 16px, #fff 32px);
}
.no-hazard .hazard { background-image: none; }

/* Buttons */
.btn {
  --bg: var(--ink); --fg: #fff; --bd: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; gap: .6ch;
  min-height: 52px; padding: 0 26px;
  background: var(--bg); color: var(--fg);
  border: 2px solid var(--bd); border-radius: 999px;
  font-family: var(--font-display); font-weight: 700;
  letter-spacing: .01em; font-size: 1rem;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }
.btn:active { transform: translateY(0); }
.btn--accent { --bg: var(--accent); --fg: #1a1207; --bd: var(--accent); }
.btn--accent:hover { box-shadow: 0 14px 30px rgba(232,144,46,.35); }
.btn--turq { --bg: var(--turq); --fg: #04302f; --bd: var(--turq); }
.btn--ghost { --bg: transparent; --fg: var(--ink); --bd: var(--ink); }
.btn--ghost:hover { --bg: var(--ink); --fg: #fff; }
.btn--lg { min-height: 58px; padding: 0 30px; font-size: 1.06rem; }
.btn--block { width: 100%; }

/* Pills / chips */
.chip {
  display: inline-flex; align-items: center; gap: .55ch;
  padding: 8px 14px; border-radius: 999px;
  background: var(--white); border: 1.5px solid var(--line-strong);
  font-weight: 600; font-size: .9rem; color: var(--ink);
}
.chip .star { color: var(--orange); }

/* Section heading */
.s-head { max-width: 760px; }
.s-head .eyebrow { margin-bottom: 14px; }
.s-title { font-size: clamp(2rem, 5.4vw, 3.4rem); text-transform: uppercase; }
.s-sub { margin-top: 16px; color: var(--ink-soft); font-size: 1.08rem; max-width: 60ch; }

.section { padding-block: clamp(64px, 9vw, 120px); }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ .reveal{opacity:1;transform:none} }

/* ============================================================
   TOP STRIP
   ============================================================ */
.topstrip {
  background: var(--ink); color: #fff;
  font-size: .82rem;
}
.topstrip .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 40px; }
.topstrip .tagline {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: .16em; font-size: .72rem; color: var(--turq);
}
.topstrip .tright { display: flex; align-items: center; gap: 20px; }
.topstrip a { display: inline-flex; align-items: center; gap: .5ch; color: #fff; opacity: .92; }
.topstrip a:hover { opacity: 1; color: var(--turq); }
.topstrip svg { width: 15px; height: 15px; }
@media (max-width: 760px){ .topstrip .loc { display: none; } }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(252,251,247,.86);
  backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header .wrap { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-h); gap: 18px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo {
  width: 50px; height: 50px; border-radius: 13px;
  background: var(--white); border: 1.5px solid var(--line-strong);
  display: grid; place-items: center; padding: 4px; flex: none;
}
.brand__logo img { width: 100%; height: 100%; object-fit: contain; }
.brand__name { display: flex; flex-direction: column; line-height: 1; }
.brand__name b { font-family: var(--font-display); font-weight: 800; font-size: 1.02rem; letter-spacing: -.01em; text-transform: uppercase; }
.brand__name span { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--turq-700); font-weight: 700; margin-top: 3px; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 10px 14px; border-radius: 10px; font-weight: 600; font-size: .96rem;
  color: var(--ink-soft); transition: color .15s, background .15s;
}
.nav a:hover { color: var(--ink); background: var(--turq-tint); }

.header__cta { display: flex; align-items: center; gap: 10px; }
.header__cta .btn { min-height: 46px; padding: 0 20px; font-size: .95rem; }

.burger { display: none; width: 48px; height: 48px; border: 1.5px solid var(--line-strong); background: var(--white); border-radius: 12px; align-items: center; justify-content: center; }
.burger svg { width: 24px; height: 24px; }

@media (max-width: 980px){
  .nav, .header__cta .btn--ghost { display: none; }
  .burger { display: inline-flex; }
}
@media (max-width: 420px){
  .brand__name span { display: none; }
}

/* mobile menu */
.mmenu {
  position: fixed; inset: 0; z-index: 150;
  background: rgba(22,32,29,.5); backdrop-filter: blur(3px);
  opacity: 0; pointer-events: none; transition: opacity .25s;
}
.mmenu.open { opacity: 1; pointer-events: auto; }
.mmenu__panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(360px, 86vw);
  background: var(--paper); padding: 22px;
  transform: translateX(100%); transition: transform .3s cubic-bezier(.2,.7,.2,1);
  display: flex; flex-direction: column; gap: 6px;
  box-shadow: -20px 0 50px rgba(0,0,0,.2);
}
.mmenu.open .mmenu__panel { transform: none; }
.mmenu__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.mmenu__close { width: 46px; height: 46px; border-radius: 12px; border: 1.5px solid var(--line-strong); background: #fff; display: grid; place-items: center; }
.mmenu__close svg { width: 22px; height: 22px; }
.mmenu a.mlink {
  padding: 16px 14px; border-radius: 12px; font-family: var(--font-display);
  font-weight: 700; text-transform: uppercase; letter-spacing: .02em; font-size: 1.1rem;
  border-bottom: 1px solid var(--line);
}
.mmenu a.mlink:hover { background: var(--turq-tint); }
.mmenu__cta { margin-top: auto; display: grid; gap: 10px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding-top: clamp(28px, 5vw, 56px); padding-bottom: clamp(40px, 6vw, 80px); }
.hero__grid {
  display: grid; grid-template-columns: 1.04fr .96fr; gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.hero__col { min-width: 0; }
.hero h1 {
  font-size: clamp(2.7rem, 8.2vw, 5.6rem);
  text-transform: uppercase; letter-spacing: -.025em;
  margin-top: 18px;
}
.hero h1 .l2 { color: var(--turq); display: block; }
.hero h1 .cursor { color: var(--orange); }
.hero__lead { margin-top: 22px; font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--ink-soft); max-width: 52ch; }
.hero__lead b { color: var(--ink); font-weight: 700; }

.hero__meta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.hero__art { position: relative; }
.hero__photo {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-2);
  aspect-ratio: 4 / 4.3;
  background: var(--turq-wall);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.hero__badge {
  position: absolute; left: -22px; bottom: -22px;
  width: clamp(120px, 22vw, 188px);
  filter: drop-shadow(0 14px 22px rgba(0,0,0,.22));
}
.hero__tag {
  position: absolute; top: 20px; right: -10px; z-index: 3;
  background: var(--orange); color: #1a1207;
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  letter-spacing: .04em; font-size: .8rem;
  padding: 10px 16px; border-radius: 12px; transform: rotate(3deg);
  box-shadow: var(--shadow-1);
}
.hero__stripe {
  position: absolute; z-index: -1; top: -18px; right: -18px;
  width: 46%; height: 60%; border-radius: var(--r-xl);
}

@media (max-width: 900px){
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { order: -1; max-width: 520px; margin-inline: auto; width: 100%; }
  .hero__photo { aspect-ratio: 5/4; }
  .hero__photo img { object-position: 50% 28%; }
  .hero__badge { width: clamp(96px, 26vw, 150px); left: -10px; bottom: -16px; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee { background: var(--turq); color: #053c3c; overflow: hidden; border-block: 3px solid var(--ink); }
.marquee__track { display: flex; gap: 0; width: max-content; animation: marquee 26s linear infinite; }
.no-hazard .marquee__track { animation-duration: 30s; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce){ .marquee__track{ animation: none; } }
.marquee__group { display: flex; align-items: center; padding-block: 14px; }
.marquee__group span {
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  letter-spacing: .02em; font-size: clamp(1rem, 1.8vw, 1.35rem);
  display: inline-flex; align-items: center; gap: 22px; padding-inline: 22px;
}
.marquee__group span::after { content: ""; width: 13px; height: 13px; background: #053c3c; border-radius: 3px; transform: rotate(45deg); }
.marquee:hover .marquee__track { animation-play-state: paused; }

/* ============================================================
   PHILOSOPHY
   ============================================================ */
.philo { background: var(--paper); }
.philo__top { display: grid; grid-template-columns: 1fr; gap: 14px; }
.philo__statement {
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(1.8rem, 4.4vw, 3rem); line-height: 1.04; letter-spacing: -.02em;
  max-width: 18ch; margin-top: 16px;
}
.philo__statement em { color: var(--turq); font-style: normal; }
.philo__lead { margin-top: 22px; max-width: 56ch; color: var(--ink-soft); font-size: 1.1rem; }

.pillars { margin-top: clamp(40px, 5vw, 64px); display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pillar {
  background: var(--white); border: 1.5px solid var(--line); border-radius: var(--r-lg);
  padding: 26px 22px 28px; transition: transform .2s, box-shadow .2s, border-color .2s;
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); border-color: var(--turq); }
.pillar__icon { width: 78px; height: 78px; margin-bottom: 16px; }
.pillar__icon img { width: 100%; height: 100%; object-fit: contain; }
.pillar h3 { font-size: 1.18rem; text-transform: uppercase; letter-spacing: -.005em; }
.pillar p { margin-top: 8px; color: var(--muted); font-size: .96rem; }
.pillar__n { font-family: var(--font-display); font-weight: 800; color: var(--orange); font-size: .82rem; letter-spacing: .08em; }
@media (max-width: 880px){ .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 440px){ .pillars { grid-template-columns: 1fr; gap: 14px; } }

/* ============================================================
   ZONES (service doors)
   ============================================================ */
.zones { background: var(--cream); position: relative; }
.zones__grid { margin-top: clamp(36px, 4vw, 56px); display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.zone {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  min-height: 300px; display: flex; flex-direction: column; justify-content: flex-end;
  color: #fff; isolation: isolate;
  box-shadow: var(--shadow-1);
}
.zone img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.zone::after { content:""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(8,30,29,0) 28%, rgba(8,30,29,.32) 55%, rgba(8,30,29,.86) 100%); }
.zone:hover img { transform: scale(1.06); }
.zone__door {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: var(--orange); color: #1a1207;
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  letter-spacing: .05em; font-size: .76rem; padding: 8px 13px; border-radius: 8px;
}
.zone__door.teal { background: var(--turq); color: #04302f; }
.zone__body { position: relative; z-index: 2; padding: 22px; }
.zone__body h3 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); text-transform: uppercase; }
.zone__body p { margin-top: 8px; color: rgba(255,255,255,.9); font-size: .98rem; max-width: 42ch; }
.zone--a { grid-column: span 7; min-height: 380px; }
.zone--b { grid-column: span 5; min-height: 380px; }
.zone--c { grid-column: span 5; min-height: 360px; }
.zone--d { grid-column: span 7; min-height: 360px; }
@media (max-width: 880px){
  .zone--a, .zone--b, .zone--c, .zone--d { grid-column: span 12; min-height: 300px; }
}

/* ============================================================
   REASSURANCE / CALL BAND
   ============================================================ */
.callband { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.callband .hazedge { height: 14px; }
.callband__inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 36px; align-items: center; padding-block: clamp(48px, 6vw, 80px); }
.callband h2 { font-size: clamp(1.9rem, 4.4vw, 3.1rem); text-transform: uppercase; }
.callband h2 .o { color: var(--orange); }
.callband p { margin-top: 14px; color: rgba(255,255,255,.78); max-width: 48ch; font-size: 1.08rem; }
.callband__actions { display: flex; flex-direction: column; gap: 12px; }
.callband__phone {
  font-family: var(--font-display); font-weight: 800; font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  letter-spacing: .01em; color: #fff; display: inline-flex; align-items: center; gap: 12px;
}
.callband__phone svg { width: 30px; height: 30px; color: var(--turq); }
.callband__note { font-size: .92rem; color: rgba(255,255,255,.6); }
@media (max-width: 820px){ .callband__inner { grid-template-columns: 1fr; gap: 22px; } }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--paper); }
.gal__grid { margin-top: clamp(34px, 4vw, 52px); display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 200px; gap: 14px; }
.gal {
  position: relative; overflow: hidden; border-radius: var(--r-md); cursor: pointer;
  background: var(--turq-wall);
}
.gal img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gal:hover img { transform: scale(1.07); }
.gal::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,30,29,0) 55%, rgba(8,30,29,.4));
  opacity: 0; transition: opacity .3s;
}
.gal:hover::after { opacity: 1; }
.gal__plus { position: absolute; right: 12px; bottom: 12px; width: 38px; height: 38px; border-radius: 50%; background: var(--white); color: var(--ink); display: grid; place-items: center; opacity: 0; transform: translateY(6px); transition: .3s; z-index: 2; }
.gal:hover .gal__plus { opacity: 1; transform: none; }
.gal__plus svg { width: 20px; height: 20px; }
/* large-small-small rhythm */
.gal--a { grid-column: span 6; grid-row: span 2; }
.gal--b { grid-column: span 3; grid-row: span 1; }
.gal--c { grid-column: span 3; grid-row: span 1; }
.gal--d { grid-column: span 3; grid-row: span 2; }
.gal--e { grid-column: span 3; grid-row: span 1; }
.gal--f { grid-column: span 3; grid-row: span 1; }
.gal--g { grid-column: span 6; grid-row: span 2; }
.gal--h { grid-column: span 3; grid-row: span 1; }
.gal--i { grid-column: span 3; grid-row: span 1; }
@media (max-width: 760px){
  .gal__grid { grid-auto-rows: 150px; gap: 10px; }
  .gal--a, .gal--g { grid-column: span 6; grid-row: span 2; }
  .gal--b, .gal--c, .gal--d, .gal--e, .gal--f, .gal--h, .gal--i { grid-column: span 3; grid-row: span 1; }
  .gal--d { grid-row: span 2; }
}
@media (max-width: 480px){
  .gal__grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 132px; }
  .gal--a, .gal--g { grid-column: span 2; grid-row: span 2; }
  .gal--b, .gal--c, .gal--d, .gal--e, .gal--f, .gal--h, .gal--i { grid-column: span 1; grid-row: span 1; }
}

/* Lightbox */
.lb { position: fixed; inset: 0; z-index: 300; background: rgba(10,18,16,.92); display: none; align-items: center; justify-content: center; padding: 24px; }
.lb.open { display: flex; }
.lb img { max-width: min(94vw, 1100px); max-height: 86vh; border-radius: 12px; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.lb__btn { position: absolute; top: 18px; right: 18px; width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,.12); border: 1.5px solid rgba(255,255,255,.3); color: #fff; display: grid; place-items: center; }
.lb__btn:hover { background: rgba(255,255,255,.22); }
.lb__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,.12); border: 1.5px solid rgba(255,255,255,.3); color: #fff; display: grid; place-items: center; }
.lb__nav:hover { background: rgba(255,255,255,.22); }
.lb__nav.prev { left: 18px; } .lb__nav.next { right: 18px; }
.lb__btn svg, .lb__nav svg { width: 26px; height: 26px; }
.lb__count { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.8); font-weight: 600; font-size: .9rem; }
@media (max-width: 640px){ .lb__nav { width: 46px; height: 46px; } .lb__nav.prev{left:10px} .lb__nav.next{right:10px} }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--cream); }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 60px); align-items: center; }
.about__media { position: relative; }
.about__media img { border-radius: var(--r-lg); box-shadow: var(--shadow-2); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.about__media .stripe { position: absolute; bottom: -16px; left: -16px; width: 50%; height: 56px; border-radius: 12px; z-index: -1; }
.about__body p + p { margin-top: 18px; }
.about__body .lead { font-size: 1.18rem; color: var(--ink); }
.about__facts { margin-top: 26px; display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.fact { background: var(--white); border: 1.5px solid var(--line); border-radius: var(--r-md); padding: 16px; }
.fact b { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; display: block; color: var(--turq-700); }
.fact span { font-size: .82rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
@media (max-width: 820px){ .about__grid { grid-template-columns: 1fr; } .about__media { max-width: 560px; } }

/* ============================================================
   VISIT / CONTACT
   ============================================================ */
.visit { background: var(--paper); }
.visit__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); margin-top: clamp(34px,4vw,52px); align-items: start; }

.info { display: grid; gap: 14px; }
.info__row { display: flex; gap: 14px; align-items: flex-start; background: var(--white); border: 1.5px solid var(--line); border-radius: var(--r-md); padding: 18px; }
.info__ic { width: 44px; height: 44px; border-radius: 12px; background: var(--turq-tint); color: var(--turq-700); display: grid; place-items: center; flex: none; }
.info__ic svg { width: 22px; height: 22px; }
.info__row h4 { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; letter-spacing: .03em; font-size: .82rem; color: var(--muted); }
.info__row .v { font-size: 1.06rem; font-weight: 600; margin-top: 3px; }
.info__row a.v:hover { color: var(--turq-700); }

.mapph {
  margin-top: 4px; border-radius: var(--r-md); overflow: hidden; border: 1.5px solid var(--line);
  background:
    radial-gradient(circle at 30% 30%, rgba(20,194,194,.12), transparent 60%),
    repeating-linear-gradient(0deg, var(--turq-tint) 0 1px, transparent 1px 40px),
    repeating-linear-gradient(90deg, var(--turq-tint) 0 1px, transparent 1px 40px),
    var(--white);
  min-height: 200px; display: grid; place-items: center; text-align: center; position: relative;
}
.mapph__pin { width: 46px; height: 46px; border-radius: 50%; background: var(--orange); color: #1a1207; display: grid; place-items: center; box-shadow: 0 8px 18px rgba(232,144,46,.4); margin: 0 auto 12px; }
.mapph__pin svg { width: 24px; height: 24px; }
.mapph__label { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: .8rem; color: var(--muted); }
.mapph a { margin-top: 12px; }

/* Form */
.form { background: var(--white); border: 1.5px solid var(--line); border-radius: var(--r-lg); padding: clamp(22px, 3vw, 34px); box-shadow: var(--shadow-1); }
.form h3 { font-size: 1.5rem; text-transform: uppercase; }
.form > p { color: var(--muted); margin-top: 6px; font-size: .96rem; }
.field { margin-top: 18px; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 7px; }
.field label .req { color: var(--orange); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 15px; border: 1.5px solid var(--line-strong); border-radius: 12px;
  font: inherit; background: var(--paper); color: var(--ink); transition: border-color .15s, box-shadow .15s;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--turq); box-shadow: 0 0 0 4px rgba(20,194,194,.16); }
.field.bad input, .field.bad select, .field.bad textarea { border-color: #d6483b; box-shadow: 0 0 0 4px rgba(214,72,59,.12); }
.field .err { color: #c33a2d; font-size: .82rem; margin-top: 6px; display: none; }
.field.bad .err { display: block; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.seg { display: flex; flex-wrap: wrap; gap: 8px; }
.seg input { position: absolute; opacity: 0; pointer-events: none; }
.seg label {
  margin: 0; padding: 10px 14px; border: 1.5px solid var(--line-strong); border-radius: 999px;
  font-size: .9rem; cursor: pointer; transition: .15s; user-select: none;
}
.seg input:checked + label { background: var(--turq); border-color: var(--turq); color: #04302f; font-weight: 700; }
.seg input:focus-visible + label { outline: 3px solid var(--focus); outline-offset: 2px; }
.form__submit { margin-top: 22px; }
.form__ok { display: none; margin-top: 16px; padding: 16px; border-radius: 12px; background: var(--turq-tint); border: 1.5px solid var(--turq); color: var(--turq-700); font-weight: 600; }
.form.sent .form__ok { display: block; }
.form.sent .form__body { display: none; }
@media (max-width: 560px){ .field-row { grid-template-columns: 1fr; } }
@media (max-width: 820px){ .visit__grid { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: #fff; }
.footer .hazedge { height: 14px; }
.footer__main { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; padding-block: clamp(48px,6vw,72px); }
.footer__brand { display: flex; flex-direction: column; gap: 16px; max-width: 36ch; }
.footer__logo { display: flex; align-items: center; gap: 12px; }
.footer__logo .chipimg { width: 56px; height: 56px; border-radius: 14px; background: #fff; padding: 5px; display: grid; place-items: center; }
.footer__logo .chipimg img { width: 100%; height: 100%; object-fit: contain; }
.footer__logo b { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 1.1rem; }
.footer__brand p { color: rgba(255,255,255,.66); font-size: .96rem; }
.footer__brand .ig { display: inline-flex; align-items: center; gap: 8px; color: var(--turq); font-weight: 600; }
.footer__brand .ig svg { width: 20px; height: 20px; }
.footer__col h4 { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: .78rem; color: var(--turq); margin-bottom: 14px; }
.footer__col a, .footer__col p { display: block; color: rgba(255,255,255,.78); font-size: .96rem; padding: 5px 0; }
.footer__col a:hover { color: #fff; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); padding-block: 22px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; font-size: .82rem; color: rgba(255,255,255,.5); }
.footer__bottom .barke { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.7); }
@media (max-width: 820px){ .footer__main { grid-template-columns: 1fr 1fr; } .footer__brand { grid-column: 1/-1; } }
@media (max-width: 480px){ .footer__main { grid-template-columns: 1fr; gap: 26px; } }

/* ============================================================
   MOBILE ACTION BAR
   ============================================================ */
.actionbar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: rgba(252,251,247,.96); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  display: none; grid-template-columns: repeat(3,1fr); gap: 8px; padding: 10px 12px;
  padding-bottom: max(10px, env(safe-area-inset-bottom));
}
.actionbar a {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  min-height: 52px; border-radius: 12px; font-weight: 700; font-size: .76rem;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .03em;
}
.actionbar a svg { width: 21px; height: 21px; }
.actionbar a.call { background: var(--accent); color: #1a1207; }
.actionbar a.enq { background: var(--ink); color: #fff; }
.actionbar a.dir { background: var(--turq); color: #04302f; }
@media (max-width: 760px){
  .actionbar { display: grid; }
  body { padding-bottom: 76px; }
}

/* floating phone chip (after hero, desktop) */
.fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 80;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent); color: #1a1207; padding: 14px 22px; border-radius: 999px;
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase; letter-spacing: .02em;
  box-shadow: 0 14px 34px rgba(232,144,46,.42);
  opacity: 0; transform: translateY(20px) scale(.96); pointer-events: none;
  transition: opacity .3s, transform .3s;
}
.fab.show { opacity: 1; transform: none; pointer-events: auto; }
.fab:hover { transform: translateY(-2px); }
.fab svg { width: 20px; height: 20px; }
@media (max-width: 760px){ .fab { display: none; } }
