/* =========================================================
   Chalkys Espresso Bar — chalkys.com.au
   Bright & Coastal design system
   ========================================================= */

:root {
  /* Palette */
  --white:        #ffffff;
  --linen:        #F8F6F1;
  --sand:         #EDE7DB;
  --mist:         #E4EFF5;
  --ocean:        #3A7D96;
  --ocean-dark:   #2A6070;
  --ocean-light:  #5FA3BC;
  --ocean-pale:   #C8DFE8;
  --coffee:       #B8894A;
  --coffee-light: #D4AA72;
  --ink:          #1C2B30;
  --ink-soft:     #4D6068;
  --ink-muted:    #7A919A;
  --line:         rgba(28, 43, 48, 0.10);
  --line-light:   rgba(28, 43, 48, 0.06);

  /* Type */
  --font-display: "Fraunces", "Playfair Display", Georgia, serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --max-w:    1240px;
  --gutter:   clamp(20px, 4vw, 48px);
  --radius:   6px;
  --radius-lg: 18px;
  --ease:     cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--ocean);
  text-decoration: none;
  transition: color .2s var(--ease);
}
a:hover { color: var(--ocean-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.12;
  color: var(--ink);
  margin: 0 0 .5em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1em; }

/* ---------- LAYOUT ---------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

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

.section--linen { background: var(--linen); }
.section--mist  { background: var(--mist); }
.section--ocean { background: var(--ocean); }
.section--ink   { background: var(--ink); color: var(--linen); }

.section--ink h1,
.section--ink h2,
.section--ink h3 { color: var(--white); }

/* ---------- TYPOGRAPHY HELPERS ---------- */
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .76rem;
  font-weight: 700;
  color: var(--ocean);
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.18rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.center { text-align: center; }

.divider {
  width: 48px;
  height: 3px;
  background: var(--ocean);
  margin: 0 auto 24px;
  border-radius: 2px;
}

.section-head-center {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  padding: 13px 26px;
  font: 600 .9rem/1 var(--font-body);
  letter-spacing: .05em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 2px solid var(--ocean);
  background: var(--ocean);
  color: var(--white);
  cursor: pointer;
  transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease), transform .18s var(--ease);
}
.btn:hover {
  background: var(--ocean-dark);
  border-color: var(--ocean-dark);
  color: var(--white);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--ocean);
}
.btn--ghost:hover {
  background: var(--ocean);
  color: var(--white);
}

.btn--light {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
}
.btn--light:hover {
  background: var(--linen);
  border-color: var(--linen);
  color: var(--ink);
}

.btn--ghost-light {
  background: transparent;
  border-color: rgba(255,255,255,.65);
  color: var(--white);
}
.btn--ghost-light:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
  color: var(--white);
}

.btn--ink {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}
.btn--ink:hover {
  background: var(--ocean-dark);
  border-color: var(--ocean-dark);
}

.btn--lg { padding: 17px 34px; font-size: .95rem; }
.btn--sm { padding: 9px 18px; font-size: .8rem; }

/* ---------- HEADER / NAV ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--ink);
  font-weight: 500;
  flex-shrink: 0;
}
.brand:hover { color: var(--ocean); }
.brand img { height: 40px; width: auto; }

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--ink);
  font-weight: 500;
  font-size: .92rem;
  letter-spacing: .01em;
  position: relative;
  padding: 4px 0;
  transition: color .2s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -2px;
  height: 2px;
  background: var(--ocean);
  transition: right .25s var(--ease);
}
.nav-links a:hover { color: var(--ocean); }
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { right: 0; }
.nav-links a[aria-current="page"] { color: var(--ocean); }

.nav-cta { display: flex; gap: 10px; align-items: center; }
.nav-cta .btn { padding: 10px 18px; font-size: .8rem; }

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .menu-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px var(--gutter) 24px;
    gap: 0;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 8px 24px rgba(28,43,48,.08);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s var(--ease), opacity .25s var(--ease);
  }
  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a { padding: 13px 0; border-bottom: 1px solid var(--line-light); display: block; }
  .nav-cta .btn--ghost { display: none; }
  .nav-cta .btn { padding: 9px 14px; font-size: .78rem; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: center;
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(160deg, rgba(28,43,48,.18) 0%, rgba(28,43,48,.52) 50%, rgba(28,43,48,.72) 100%),
    url("../img/hero.jpg") center / cover no-repeat;
  z-index: -1;
}

.hero-inner {
  padding: 120px 0 100px;
  max-width: 720px;
}

.hero h1 {
  color: var(--white);
  font-weight: 400;
  margin-bottom: .6em;
}
.hero h1 em {
  font-style: italic;
  color: var(--ocean-pale);
}
.hero .eyebrow {
  color: var(--ocean-pale);
  letter-spacing: .25em;
}
.hero .tagline {
  font-size: 1.12rem;
  max-width: 500px;
  color: rgba(255,255,255,.88);
  margin-bottom: 2.2rem;
  line-height: 1.7;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

@media (max-width: 600px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .hero-actions .btn {
    justify-content: center;
    text-align: center;
  }
}

/* Info strip at bottom of hero */
.hero-strip {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  border-top: 1px solid rgba(255,255,255,.2);
}

.hero-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.hero-strip-item {
  padding: 20px var(--gutter);
  border-right: 1px solid rgba(255,255,255,.18);
}
.hero-strip-item:last-child { border-right: 0; }
.hero-strip-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 3px;
}
.hero-strip-item span {
  font-size: .86rem;
  color: rgba(255,255,255,.75);
}

@media (max-width: 720px) {
  .hero-strip-grid { grid-template-columns: 1fr; }
  .hero-strip-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.15); padding: 13px var(--gutter); }
  .hero-strip-item:last-child { border-bottom: 0; }
  /* Push hero content above the stacked 3-row strip (~195px tall on mobile) */
  .hero-inner { padding-bottom: 260px; }
}

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
  position: relative;
  padding: clamp(110px, 16vw, 180px) 0 clamp(56px, 8vw, 90px);
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  z-index: -1;
  background-size: cover;
  background-position: center;
}

.page-hero[data-img="about"]::before {
  background-image:
    linear-gradient(170deg, rgba(28,43,48,.3), rgba(28,43,48,.62)),
    url("../img/about.jpg");
}
.page-hero[data-img="menu"]::before {
  background-image:
    linear-gradient(170deg, rgba(28,43,48,.35), rgba(28,43,48,.65)),
    url("../img/breakfast.jpg");
}
.page-hero[data-img="contact"]::before {
  background-image:
    linear-gradient(170deg, rgba(28,43,48,.35), rgba(28,43,48,.62)),
    url("../img/contact.jpg");
}

.page-hero h1 { color: var(--white); max-width: 640px; }
.page-hero .eyebrow { color: var(--ocean-pale); }
.page-hero p { color: rgba(255,255,255,.85); font-size: 1.08rem; max-width: 540px; margin-top: .75em; }

.breadcrumbs {
  font-size: .84rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 1rem;
}
.breadcrumbs a { color: rgba(255,255,255,.8); }
.breadcrumbs a:hover { color: var(--white); }

/* ---------- TWO COLUMN ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.two-col--flip { direction: rtl; }
.two-col--flip > * { direction: ltr; }

@media (max-width: 860px) {
  .two-col { grid-template-columns: 1fr; }
  .two-col--flip { direction: ltr; }
}

.media-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 32px 64px -24px rgba(28,43,48,.22);
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- FEATURE CARDS (dishes) ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 860px) { .cards-grid { grid-template-columns: 1fr; gap: 18px; } }
@media (min-width: 541px) and (max-width: 860px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px -16px rgba(28,43,48,.18);
}
.card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease);
}
.card:hover .card-img img { transform: scale(1.06); }
.card-body { padding: 24px 26px 28px; }
.card-body h3 { margin-bottom: .4rem; font-size: 1.3rem; }
.card-body p { color: var(--ink-soft); font-size: .94rem; margin: 0; }

/* ---------- STATS / PILLARS ROW ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 56px;
}
@media (max-width: 860px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .pillars { grid-template-columns: 1fr; } }

.pillar {
  background: var(--white);
  padding: 36px 28px;
  text-align: center;
}
.pillar-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--ocean);
  line-height: 1;
  margin-bottom: .3em;
}
.pillar p {
  font-size: .9rem;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.4;
}

/* ---------- CTA BAND ---------- */
.cta-band {
  position: relative;
  isolation: isolate;
  text-align: center;
  padding: clamp(72px, 10vw, 120px) var(--gutter);
  color: var(--white);
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(28,43,48,.75), rgba(28,43,48,.82)),
    url("../img/drinks.jpg") center / cover no-repeat;
}
.cta-band h2 { color: var(--white); margin-bottom: .5em; }
.cta-band p { color: rgba(255,255,255,.82); max-width: 540px; margin: 0 auto 2rem; font-size: 1.08rem; }
.cta-band-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- GALLERY STRIP ---------- */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.gallery-strip a {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
}
.gallery-strip img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.gallery-strip a:hover img { transform: scale(1.07); }

.insta-overlay {
  position: absolute; inset: 0;
  background: rgba(58,125,150,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .25s var(--ease);
  color: var(--white);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .05em;
}
.gallery-strip a:hover .insta-overlay { opacity: 1; }

@media (max-width: 720px) { .gallery-strip { grid-template-columns: repeat(2, 1fr); } }

/* ---------- MENU PAGE ---------- */
.menu-tabs {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
  padding: 6px;
  background: var(--linen);
  border-radius: 999px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--line);
}

.menu-tab {
  padding: 11px 22px;
  border-radius: 999px;
  background: transparent;
  border: 0;
  font: 600 .87rem/1 var(--font-body);
  color: var(--ink-soft);
  cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease);
  text-transform: uppercase;
  letter-spacing: .07em;
  white-space: nowrap;
}
.menu-tab:hover { color: var(--ocean); }
.menu-tab.is-active { background: var(--ocean); color: var(--white); }

.menu-panel { display: none; }
.menu-panel.is-active { display: block; }

.menu-section { margin-bottom: 60px; }
.menu-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--ocean-pale);
}
.menu-section-head h2 { margin: 0; font-size: clamp(1.5rem, 2.5vw, 1.9rem); }
.menu-section-note { font-size: .85rem; color: var(--ink-muted); font-style: italic; }

.menu-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 56px;
}
@media (max-width: 720px) { .menu-list { grid-template-columns: 1fr; } }

.menu-item {
  padding: 14px 0;
  border-bottom: 1px solid var(--line-light);
}
.menu-item:last-child { border-bottom: 0; }

.menu-item-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 3px;
}
.menu-item-name {
  font-family: var(--font-display);
  font-size: 1.14rem;
  font-weight: 500;
  color: var(--ink);
  flex: 1;
}
.menu-item-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ocean);
  white-space: nowrap;
}
.menu-item-desc {
  font-size: .9rem;
  color: var(--ink-soft);
  line-height: 1.45;
  margin: 0;
}
.menu-item-add {
  font-size: .83rem;
  color: var(--ink-muted);
  font-style: italic;
  margin-top: 3px;
}

.tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .09em;
  padding: 2px 6px;
  margin-left: 5px;
  border-radius: 4px;
  background: var(--mist);
  color: var(--ocean-dark);
  text-transform: uppercase;
  vertical-align: middle;
}

/* Drinks layout */
.drinks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 860px) { .drinks-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .drinks-grid { grid-template-columns: 1fr; } }

.drinks-card {
  background: var(--linen);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--line);
}
.drinks-card h3 {
  font-size: 1.15rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--ocean-pale);
}

.drinks-list { list-style: none; padding: 0; margin: 0; }
.drinks-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  padding: 8px 0;
  font-size: .93rem;
  border-bottom: 1px solid var(--line-light);
}
.drinks-list li:last-child { border-bottom: 0; }
.drinks-list li span:first-child { color: var(--ink); }
.drinks-list li span:last-child { color: var(--ocean); font-weight: 600; white-space: nowrap; font-size: .9rem; }

.juice-card { grid-column: span 2; }
@media (max-width: 860px) { .juice-card { grid-column: span 1; } }

.juice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (max-width: 680px) { .juice-grid { grid-template-columns: repeat(2, 1fr); } }

.juice-item {
  background: var(--white);
  border-radius: 10px;
  padding: 12px 14px;
  border: 1px solid var(--line);
}
.juice-name { font-weight: 600; font-size: .9rem; color: var(--ink); }
.juice-desc { font-size: .8rem; color: var(--ink-soft); margin-top: 2px; }

.menu-extras-box {
  background: var(--mist);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  border: 1px solid var(--ocean-pale);
}
.menu-extras-box h3 { margin-bottom: 20px; color: var(--ocean-dark); }
.extras-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 36px;
}
@media (max-width: 720px) { .extras-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .extras-grid { grid-template-columns: 1fr; } }

.extra-item {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  font-size: .92rem;
  border-bottom: 1px solid rgba(58,125,150,.15);
}
.extra-item span:last-child { color: var(--ocean); font-weight: 600; }

.dietary-note {
  text-align: center;
  font-size: .84rem;
  color: var(--ink-muted);
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.dietary-note b { color: var(--ink); }

/* ---------- CONTACT PAGE ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.info-block {
  background: var(--linen);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
}
.info-block h3 {
  font-size: 1.05rem;
  margin-bottom: 12px;
  color: var(--ocean-dark);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .8rem;
}
.info-block p { margin: 0 0 4px; font-size: .95rem; color: var(--ink-soft); }
.info-block a { color: var(--ink); font-weight: 500; }
.info-block a:hover { color: var(--ocean); }

.hours-table { width: 100%; }
.hours-table tr td { padding: 5px 0; font-size: .94rem; color: var(--ink-soft); }
.hours-table tr td:last-child { text-align: right; font-weight: 500; color: var(--ink); }

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
}
.contact-form-wrap h2 { margin-bottom: 8px; }
.contact-form-wrap p { color: var(--ink-soft); margin-bottom: 28px; }

.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .03em;
  margin-bottom: 6px;
  color: var(--ink);
  text-transform: uppercase;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 12px 14px;
  font: 1rem/1.5 var(--font-body);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
  appearance: none;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--ocean);
  box-shadow: 0 0 0 3px rgba(58,125,150,.15);
}
.field textarea { min-height: 130px; resize: vertical; }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 16px 48px -20px rgba(28,43,48,.15);
  aspect-ratio: 16 / 9;
  margin-top: 32px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.72);
  padding: 72px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

.site-footer h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: .76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  margin-bottom: 16px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 9px; font-size: .9rem; }
.site-footer a { color: rgba(255,255,255,.68); transition: color .2s var(--ease); }
.site-footer a:hover { color: var(--ocean-pale); }

.footer-brand img {
  height: 48px;
  margin-bottom: 16px;
  filter: invert(1) brightness(2);
  opacity: .85;
}
.footer-brand p { font-size: .88rem; max-width: 280px; line-height: 1.6; }

.socials { display: flex; gap: 10px; margin-top: 16px; }
.socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.72);
  transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.socials a:hover {
  background: var(--ocean);
  border-color: var(--ocean);
  color: var(--white);
}
.socials svg { width: 17px; height: 17px; fill: currentColor; }

.footer-base {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
}

/* ---------- ANIMATIONS ---------- */
@media (prefers-reduced-motion: no-preference) {
  .fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .75s var(--ease), transform .75s var(--ease);
  }
  .fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- ACCESSIBILITY ---------- */
:focus-visible {
  outline: 2px solid var(--ocean);
  outline-offset: 3px;
  border-radius: 2px;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ocean);
  color: var(--white);
  padding: 8px 14px;
  z-index: 200;
  border-radius: 0 0 var(--radius) 0;
  font-size: .88rem;
}
.skip-link:focus { left: 0; }

/* ---------- PRINT ---------- */
@media print {
  .site-header, .site-footer, .menu-tabs, .hero, .page-hero, .cta-band { display: none; }
  body { background: white; color: black; font-size: 12pt; }
  .menu-panel { display: block !important; }
}
