:root {
  --bg: #f4f2ef;
  --text: #1f1a17;
  --panel: #efedea;
  --line: rgba(0, 0, 0, 0.06);
  --shadow: 0 -12px 40px rgba(0, 0, 0, 0.12);
  --header-h: 88px;
  --panel-h: min(33vh, 290px);
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html, body {
  height: 100%;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-serif);
}

body {
  overflow-x: hidden;
  overflow-y: auto;
}

a, button {
  color: inherit;
  font: inherit;
}

button {
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-shell {
  position: relative;
  width: 100%;
  min-height: 100dvh;
  background: var(--bg);
}

.topbar {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  padding: 10px 20px 0;
  pointer-events: none;
  filter: brightness(.72) contrast(1.06) saturate(.9);
}


.topbar > * {
  pointer-events: auto;
}

.topbar::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 92px;
  background: linear-gradient(to bottom, rgba(244,242,239,0.82), rgba(244,242,239,0.42) 55%, rgba(244,242,239,0));
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  pointer-events: none;
  z-index: -1;
}

.topbar-link,
.brand {
  text-decoration: none;
  font-size: clamp(2rem, 2.6vw, 3rem);
  line-height: 1;
  letter-spacing: -0.015em;
  color: rgba(16, 12, 10, 0.95);
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.45), 0 0 1px rgba(255,255,255,0.5);
}

.info-trigger {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 0.1em;
}

.info-trigger .plus {
  font-size: 1.06em;
  line-height: 0.8;
}

.brand {
  justify-self: center;
}

.cta-link {
  justify-self: end;
}

.hero {
  position: relative;
  width: 100%;
  height: 100%;
  background: #ddd;
}

.hero-media,
.hero-video,
.hero-fallback-slideshow,
.hero-fallback-slideshow .slide,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video,
.hero-fallback-slideshow .slide {
  object-fit: cover;
  object-position: center;
}

.hero-video {
  z-index: 1;
  background: #d9d6d1;
}

.hero-fallback-slideshow {
  z-index: 0;
}

.hero-fallback-slideshow .slide {
  opacity: 0;
  transition: opacity 1.1s ease;
}

.hero-fallback-slideshow .slide.is-active {
  opacity: 1;
}

.hero-overlay {
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(255,255,255,0.06), rgba(255,255,255,0));
}

.info-panel {
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
}

.panel-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.08);
  opacity: 0;
  transition: opacity 220ms ease;
}

.panel-sheet {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: var(--panel-h);
  transform: translateY(calc(100% + 12px));
  transition: transform 360ms cubic-bezier(.2,.8,.2,1);
}

.panel-inner {
  height: 100%;
  background: var(--panel);
  border-top: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: stretch;
  padding: 14px 18px 16px;
  gap: 16px;
}

.panel-main {
  min-width: 0;
  display: flex;
  align-items: flex-start;
}

.panel-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.panel-nav a {
  text-decoration: none;
  font-size: clamp(2.1rem, 3vw, 3.6rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: rgba(24, 19, 17, 0.98);
  width: fit-content;
}

.panel-nav a:hover {
  opacity: 0.75;
}

.panel-nav .is-italic {
  font-style: italic;
}

.panel-right {
  width: 118px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}

.close-btn {
  font-size: 3.2rem;
  line-height: 0.8;
  color: rgba(30, 25, 22, 0.9);
  transform: translateY(-4px);
}

.close-btn:hover {
  opacity: 0.7;
}

.michelin-badge {
  width: 148px;
  height: 148px;
  border-radius: 999px;
  background: url('assets/michelin-2026-round-red.png') center/cover no-repeat;
  color: transparent;
  display: block;
  overflow: hidden;
  text-indent: -9999px;
  white-space: nowrap;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
}

.michelin-badge > *,
.michelin-badge .badge-mark,
.michelin-badge .badge-text,
.michelin-badge .badge-year,
.michelin-badge span,
.michelin-badge small {
  display: none !important;
}

body.panel-open .info-panel {
  pointer-events: auto;
}

body.panel-open .panel-backdrop {
  opacity: 1;
}

body.panel-open .panel-sheet {
  transform: translateY(0);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  :root {
    --header-h: 70px;
    --panel-h: min(36vh, 260px);
  }

  .topbar {
    padding: 10px 10px 0;
  }

  .topbar::before {
    height: 74px;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
  }

  .topbar-link,
  .brand {
    font-size: clamp(1.2rem, 5.2vw, 2rem);
  }

  .panel-inner {
    padding: 10px 12px 14px;
    grid-template-columns: 1fr 70px;
    gap: 12px;
  }

  .panel-nav a {
    font-size: clamp(1.55rem, 6.2vw, 2.2rem);
    line-height: 0.98;
  }

  .panel-right {
    width: 70px;
  }

  .close-btn {
    font-size: 2.2rem;
    transform: translateY(-2px);
  }

 .michelin-badge {
  position: fixed;
  right: 24px;
  bottom: 40px;
  width: 148px;
  height: 148px;
  padding: 5px;
}

  .badge-mark { font-size: 0.7rem; margin-bottom: 1px; }
  .badge-text { font-size: 0.66rem; }
  .badge-year { font-size: 0.60rem; }
}

/* ===== Menu Page ===== */
.menu-page {
  overflow: hidden;
  background: #efeeeb;
}

.topbar.topbar-solid {
  pointer-events: auto;
}

.menu-layout {
  min-height: 100dvh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(520px, 50%);
  background: #efeeeb;
}

.menu-visual {
  position: relative;
  border-right: 1px solid rgba(0,0,0,0.05);
  background:
    radial-gradient(circle at 25% 28%, rgba(255,255,255,.9), rgba(239,236,230,.55) 35%, rgba(235,231,226,.9) 70%),
    #ece9e3;
}

.menu-visual-stage {
  position: absolute;
  inset: 0;
}

.plate {
  position: absolute;
  object-fit: cover;
  filter: drop-shadow(0 14px 18px rgba(0,0,0,0.12));
  border-radius: 50%;
}

.plate-left {
  width: min(260px, 28vw);
  height: min(260px, 28vw);
  left: 15%;
  top: 31%;
}

.plate-right {
  width: min(250px, 27vw);
  height: min(250px, 27vw);
  left: 36%;
  top: 30%;
}

.menu-left-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
object-position: center center;
  padding: 0;
}

.menu-content {
  position: relative;
  background: #efeeeb;
}

.menu-scroll {
  min-height: 100dvh;
  overflow-y: auto;
  padding: calc(var(--header-h) + 58px) 28px 40px;
}

.menu-title {
  text-align: center;
  font-weight: 500;
  font-size: clamp(2.5rem, 3.2vw, 3.6rem);
  line-height: 1;
  margin: 0 0 64px;
}

.menu-table {
  width: min(760px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.menu-table .row {
  display: grid;
  grid-template-columns: minmax(220px, 1.25fr) minmax(120px, 0.8fr) auto;
  align-items: baseline;
  gap: 18px;
  font-size: clamp(1.45rem, 2vw, 1.95rem);
  line-height: 1.1;
}

.menu-table .row > div:nth-child(2) {
  text-align: left;
}

.menu-table .row > div:last-child {
  text-align: right;
  white-space: nowrap;
}

.menu-notes {
  width: min(720px, 100%);
  margin: 78px auto 0;
  text-align: center;
  color: rgba(31, 26, 23, 0.72);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.92rem;
  line-height: 1.25;
}

.menu-notes p {
  margin: 0 0 18px;
}

.menu-notes strong {
  color: rgba(31, 26, 23, 0.82);
  font-weight: 700;
}

.menu-notes em {
  font-style: italic;
}

.policy-link-wrap {
  margin-top: 32px;
  margin-bottom: 18px;
}

.policy-link {
  color: rgba(31, 26, 23, 0.78);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.policy-link:hover { opacity: .75; }

@media (max-width: 1024px) {
  .menu-layout {
    grid-template-columns: 1fr;
    grid-template-rows: 42dvh 1fr;
    height: auto;
    min-height: 100dvh;
  }

  .menu-visual {
    border-right: 0;
    border-bottom: 1px solid rgba(0,0,0,.05);
  }

  .menu-visual-stage {
    inset: 0;
}

  .menu-left-art { padding: 16px 18px 20px; }

  .menu-scroll {
    height: auto;
    min-height: 58dvh;
    padding: 36px 16px 30px;
  }

  .menu-title {
    margin: 0 0 34px;
    font-size: clamp(2rem, 7vw, 2.8rem);
  }

  .menu-table {
    gap: 12px;
  }

  .menu-table .row {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "name price"
      "detail detail";
    gap: 2px 12px;
    font-size: clamp(1.2rem, 4.7vw, 1.6rem);
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0,0,0,.05);
  }

  .menu-table .row > div:nth-child(1) { grid-area: name; }
  .menu-table .row > div:nth-child(2) { grid-area: detail; opacity: .82; font-size: .88em; }
  .menu-table .row > div:nth-child(3) { grid-area: price; text-align: right; }

  .menu-notes {
    margin-top: 40px;
    font-size: 0.85rem;
  }
}

.hero-home-slideshow {
  background: #efede8;
}

.hero-home-slideshow .slide {
  object-fit: cover;
  object-position: center center;
  background: #efede8;
}


/* Homepage stacked visuals (Cargo-like spacing + mixed sizes) */
.home-stack {
  position: relative;
  width: 100%;
  min-height: 100dvh;
  background: var(--bg);
}

.home-stack-track {
  width: 100%;
  padding-top: calc(var(--header-h) - 8px);
  padding-bottom: 0;
}

.home-row {
  margin: 0;
  width: 100%;
  display: grid;
  gap: 0;
  align-items: start;
  justify-content: stretch;
  padding: 0;
}

.row-full {
  grid-template-columns: 100%;
}

.row-full.row-narrow {
  grid-template-columns: minmax(0, min(1200px, 88vw));
  justify-content: center;
}

.row-duo {
  grid-template-columns: 1fr 1fr;
}

.row-duo-editorial.a-b { grid-template-columns: 0.92fr 1.08fr; }
.row-duo-editorial.b-a { grid-template-columns: 1.08fr 0.92fr; }
.row-duo-editorial.c-c { grid-template-columns: 1fr 1fr; }


.row-offset .media-shell:first-child {
  margin-top: 2.2vh;
}

.media-shell {
  position: relative;
  overflow: hidden;
  background: #ece9e3;
  border-radius: 0;
  transform: translateY(0px);
  will-change: transform;
}

.row-full .media-shell {
  height: clamp(46vh, 62vh, 70vh);
}

.row-duo .media-shell {
  height: clamp(28vh, 40vh, 49vh);
}

.row-full.row-narrow .media-shell {
  height: clamp(36vh, 48vh, 56vh);
}

.media-shell img {
  width: 100%;
  height: calc(100% + 18px);
  margin-top: -9px; /* room for parallax motion */
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.005);
}

/* Some portrait-heavy frames look better with contain-like breathing room */
.row-duo .media-shell img[src*="Etcha_Home6"],
.row-duo .media-shell img[src*="Etcha_Home7"],
.row-duo .media-shell img[src*="Etcha_Home10"],
.row-duo .media-shell img[src*="Etcha_Home11"] {
  object-fit: cover;
}


/* Optional focal-point helpers (useful when each image crop needs manual tuning) */
.focal-top img { object-position: center top; }
.focal-bottom img { object-position: center bottom; }
.focal-left img { object-position: left center; }
.focal-right img { object-position: right center; }

/* subtle top readability over image */
.home-stack::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 118px;
  pointer-events: none;
  z-index: 20;
  background: linear-gradient(to bottom, rgba(244,242,239,0.78), rgba(244,242,239,0.18) 58%, rgba(244,242,239,0));
}

@media (max-width: 980px) {
  .home-stack-track {
    padding-top: calc(var(--header-h) + 2px);
  }

  /* Keep duo layout on mobile (like Cargo) and force consistent frame sizes */
  .row-full,
  .row-full.row-narrow {
    grid-template-columns: 1fr;
  }

  .row-duo,
  .row-duo-editorial.a-b,
  .row-duo-editorial.b-a,
  .row-duo-editorial.c-c {
    grid-template-columns: 1fr 1fr;
  }

  .row-full .media-shell,
  .row-full.row-narrow .media-shell {
    height: clamp(220px, 42vh, 360px);
    aspect-ratio: auto;
  }

  .row-full.is-hero .media-shell,
  .row-full.is-hero-end .media-shell {
    height: clamp(260px, 48vh, 420px);
  }

  .row-duo .media-shell {
    height: clamp(150px, 27vh, 230px);
    aspect-ratio: auto;
  }

  .row-tight .media-shell {
    height: clamp(140px, 24vh, 210px);
  }

  .row-offset .media-shell:first-child {
    margin-top: 0;
  }

  .reverse-on-mobile {
    display: grid;
  }

  .reverse-on-mobile .media-shell:first-child {
    order: 2;
  }

  .reverse-on-mobile .media-shell:last-child {
    order: 1;
  }
}

.row-tight .media-shell {
  height: clamp(24vh, 34vh, 42vh);
}

@media (min-width: 981px) {
  .row-duo .media-shell img { object-position: center center; }
  .home-row.row-duo { align-items: stretch; }
}


/* ===== v9 fixed-frame Cargo-like mobile sequence ===== */
.focal-center img { object-position: center center; }

.home-stack-track.cargo-grid-sequence {
  padding-top: calc(var(--header-h) - 6px);
  padding-bottom: 0;
}

.frame-row {
  width: 100%;
  gap: 0;
}

.frame-row .media-shell {
  height: var(--frame-h, 240px);
  overflow: hidden;
  background: #ece8e2;
}

.frame-row .media-shell img {
  width: 100%;
  height: 100%;
  margin-top: 0;
  object-fit: cover;
  transform: scale(1.01);
  will-change: transform;
}

.frame-row.h-xs { --frame-h: clamp(120px, 19vh, 170px); }
.frame-row.h-sm { --frame-h: clamp(170px, 27vh, 260px); }
.frame-row.h-md { --frame-h: clamp(210px, 34vh, 340px); }
.frame-row.h-lg { --frame-h: clamp(240px, 40vh, 420px); }
.frame-row.h-hero { --frame-h: clamp(260px, 46vh, 520px); }

/* desktop keeps a little editorial rhythm but fixed frames still apply */
@media (min-width: 981px) {
  .home-stack-track.cargo-grid-sequence {
    width: min(1320px, 100%);
    margin-inline: auto;
    padding-top: calc(var(--header-h) + 4px);
  }

  .frame-row.row-full.h-md { --frame-h: min(56vh, 520px); }
  .frame-row.row-full.h-lg { --frame-h: min(64vh, 620px); }
  .frame-row.row-full.h-hero { --frame-h: min(72vh, 740px); }
  .frame-row.row-duo.h-xs { --frame-h: min(22vh, 180px); }
  .frame-row.row-duo.h-sm { --frame-h: min(34vh, 360px); }

  .frame-row.row-duo { grid-template-columns: 1fr 1fr; }
}

/* mobile screenshot-like tighter header */
@media (max-width: 768px) {
  .topbar { padding: 6px 8px 0; }
  .topbar-link, .brand {
    font-size: clamp(1.0rem, 4.4vw, 1.55rem);
    text-shadow: 0 1px 1px rgba(255,255,255,.38);
  }
  .topbar::before {
    height: 60px;
    background: linear-gradient(to bottom, rgba(244,242,239,0.55), rgba(244,242,239,0.12) 70%, rgba(244,242,239,0));
    backdrop-filter: blur(1.5px);
    -webkit-backdrop-filter: blur(1.5px);
  }
  .home-stack::before { height: 72px; background: linear-gradient(to bottom, rgba(244,242,239,0.35), rgba(244,242,239,0)); }
  .home-stack-track.cargo-grid-sequence { padding-top: 0; }
  .frame-row.h-xs { --frame-h: 125px; }
  .frame-row.h-sm { --frame-h: 195px; }
  .frame-row.h-md { --frame-h: 250px; }
  .frame-row.h-lg { --frame-h: 300px; }
  .frame-row.h-hero { --frame-h: 340px; }
}



/* ===== The Team page ===== */
.team-page { background: #efede9; }
.team-layout {
  --team-gap: clamp(20px, 2.4vw, 40px);
  --team-left-width: clamp(460px, 44vw, 700px);
  --team-right-width: clamp(420px, 34vw, 560px);
  display: grid;
  grid-template-columns: minmax(420px, var(--team-left-width)) minmax(420px, var(--team-right-width));
  gap: var(--team-gap);
  width: min(1380px, calc(100vw - 88px));
  margin: 0 auto;
  min-height: 100dvh;
  padding-top: calc(var(--header-h) + 14px);
}
.team-left {
  position: sticky;
  top: calc(var(--header-h) + 8px);
  align-self: start;
  height: calc(100dvh - var(--header-h) - 16px);
  padding: 0 0 12px 0;
}
.team-left-frame {
  height: 100%;
  width: 100%;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  background: #ddd;
  cursor: zoom-in;
}
.team-left-image {
  width: 100%; height: 100%; display: block;
  object-fit: cover; object-position: center;
  filter: saturate(.88) contrast(.98);
}
.team-right {
  min-width: 0;
  padding: 8px 6px 80px;
  border-left: 1px solid rgba(0,0,0,.06);
}
.team-hero {
  padding: 32px 0 22px;
  margin-bottom: 8px;
  margin-left: calc(-1 * (var(--team-left-width) + var(--team-gap)));
  width: calc(100% + var(--team-left-width) + var(--team-gap));
  border-bottom: 1px solid rgba(0,0,0,.04);
}
.team-hero h1 {
  margin: 0;
  padding-left: 2px;
  font-size: clamp(3.1rem, 5vw, 5.2rem);
  line-height: .92;
  letter-spacing: -.02em;
  color: rgba(24,19,17,.96);
}
.team-card {
  padding: 18px 4px 22px;
  margin: 0 0 18px;
  border-top: 1px solid rgba(0,0,0,.08);
  max-width: 46ch;
}
.team-card h2 {
  margin: 0;
  font-size: clamp(1.75rem, 2.4vw, 2.25rem);
  line-height: .98;
  letter-spacing: -.015em;
}
.team-role {
  margin: 4px 0 16px;
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(26,20,18,.72);
}
.team-card p {
  margin: 0 0 12px;
  font-size: clamp(1rem, 1.05vw, 1.16rem);
  line-height: 1.36;
  color: rgba(24,19,17,.9);
  max-width: 44ch;
}
.team-card:last-child { border-bottom: 1px solid rgba(0,0,0,.08); padding-bottom: 26px; }

@media (max-width: 980px) {
  .team-layout { grid-template-columns: 1fr; width: 100%; gap: 0; padding-top: calc(var(--header-h) - 2px); }
  .team-left { position: relative; top: 0; height: auto; padding: 0; }
  .team-left-frame { height: min(68dvh, 560px); border-radius: 0; box-shadow: none; }
  .team-right { border-left: 0; padding: 8px 14px 60px; }
  .team-hero { padding: 20px 2px 14px; margin-left: 0; width: auto; border-bottom: 0; }
  .team-card { padding: 14px 2px 18px; margin-bottom: 10px; }
  .team-card p { max-width: none; }
}


/* =========================
   CONTACT PAGE (Cargo-like)
========================= */
.contact-page{background:#ecebe7;color:#1f1d1a;}
.contact-topbar{background:linear-gradient(to bottom, rgba(236,235,231,.96), rgba(236,235,231,.84));backdrop-filter: blur(2px);}
.contact-stage{min-height:100vh;display:grid;grid-template-columns:minmax(420px,49%) minmax(520px,51%);align-items:stretch;background:#efeeeb;}
.contact-left-panel{position:sticky;top:0;height:100vh;display:flex;align-items:stretch;justify-content:flex-end;padding-top:0;}
.contact-left-frame{width:100%;height:100%;cursor:zoom-in;outline:none;}
.contact-left-frame:focus-visible{box-shadow:0 0 0 2px rgba(0,0,0,.22) inset;}
.contact-left-image{width:100%;height:100%;display:block;object-fit:cover;object-position:center center;}
.contact-right-panel{display:flex;align-items:flex-start;justify-content:center;background:#efeeeb;padding:6.2rem 2.4rem 2.4rem;}
.contact-inner{width:min(650px,100%);padding-top:2.8rem;color:#272420;}
.contact-heading{text-align:center;font-weight:400;font-size:clamp(2.6rem,3.4vw,4rem);line-height:1;margin:0 0 2.7rem;letter-spacing:-.01em;}
.contact-link-block{margin-bottom:1.25rem;}
.contact-link-gap{height:.95rem;}
.contact-line{display:flex;align-items:center;gap:.35rem;width:fit-content;max-width:100%;text-decoration:none;color:inherit;line-height:1.02;letter-spacing:-.005em;}
.contact-line + .contact-line{margin-top:.28rem;}
.contact-line--lg{font-size:clamp(1.45rem,2vw,2.25rem);}
.contact-inline-icon{font-size:.86em;line-height:1;transform:translateY(-.03em);}
.contact-line:hover{opacity:.7;}
.contact-mapline{margin:.45rem 0 1.65rem;text-align:right;font-family:system-ui,-apple-system,Segoe UI,Roboto,sans-serif;font-weight:700;font-size:.52rem;letter-spacing:.01em;word-break:break-all;}
.contact-mapline a{color:inherit;text-decoration:none;}
.contact-address-block{margin:0 0 1.65rem;}
.contact-location-brand{display:inline-flex;align-items:center;gap:.26rem;text-decoration:none;color:inherit;font-weight:600;font-size:clamp(1.9rem,2.2vw,2.8rem);line-height:1;margin-bottom:.38rem;}
.contact-location-brand:hover{opacity:.74;}
.contact-address,.contact-hours{margin:0;font-size:clamp(1.55rem,1.7vw,2.05rem);line-height:1.05;letter-spacing:-.012em;}
.contact-address{margin-bottom:1.55rem;}
.contact-hours{margin-bottom:.2rem;}
.contact-direct-block{margin:2.2rem 0 1.8rem;display:flex;flex-direction:column;align-items:flex-start;gap:.15rem;}
.contact-direct-link{text-decoration:none;color:inherit;font-size:clamp(1.55rem,1.9vw,2.05rem);line-height:1.06;letter-spacing:-.01em;}
.contact-direct-link:hover{opacity:.74;}
.contact-socials{display:flex;flex-wrap:wrap;gap:.8rem 1rem;align-items:center;}
.contact-social-link{display:inline-flex;align-items:center;gap:.38rem;color:inherit;text-decoration:none;font-size:clamp(1.2rem,1.5vw,1.75rem);line-height:1;}
.contact-social-link svg{width:1.05em;height:1.05em;display:block;}
.contact-social-link:hover{opacity:.72;}
.contact-copy-btn{margin:.35rem 0 .35rem;padding:.35rem .65rem;border:1px solid rgba(0,0,0,.12);background:rgba(255,255,255,.55);border-radius:999px;color:#34312d;font:500 .78rem/1.1 system-ui,-apple-system,Segoe UI,Roboto,sans-serif;letter-spacing:.01em;}
.copy-toast{position:fixed;left:50%;bottom:1.2rem;transform:translateX(-50%) translateY(10px);background:rgba(26,25,23,.9);color:#fff;padding:.55rem .8rem;border-radius:999px;font:500 .85rem/1 system-ui,-apple-system,Segoe UI,Roboto,sans-serif;opacity:0;pointer-events:none;transition:opacity .2s ease, transform .2s ease;z-index:1200;}
.copy-toast.is-show{opacity:1;transform:translateX(-50%) translateY(0);}
.mobile-only{display:none;}

@media (min-width:1200px){
  .contact-stage{grid-template-columns:minmax(560px,50%) minmax(560px,50%);} 
  .contact-right-panel{padding-left:3rem;padding-right:3rem;}
  .contact-inner{width:min(700px,100%);padding-top:3.1rem;}
}
@media (max-width:1180px){
  .contact-stage{grid-template-columns:48% 52%;}
  .contact-heading{font-size:3rem;}
  .contact-line--lg{font-size:1.75rem;}
  .contact-address,.contact-hours,.contact-direct-link{font-size:1.45rem;}
}
@media (max-width:980px){
  .contact-topbar{background:linear-gradient(to bottom, rgba(236,235,231,.98), rgba(236,235,231,.92));}
  .contact-stage{grid-template-columns:1fr;}
  .contact-left-panel{position:relative;top:auto;height:48vh;min-height:340px;}
  .contact-right-panel{padding:5.6rem 1.2rem 2rem;}
  .contact-inner{padding-top:.25rem;width:100%;}
  .contact-heading{text-align:left;font-size:2.3rem;margin-bottom:1.55rem;}
  .contact-line--lg{font-size:1.25rem;line-height:1.08;}
  .contact-mapline{text-align:left;font-size:.58rem;}
  .contact-location-brand{font-size:1.8rem;}
  .contact-address,.contact-hours,.contact-direct-link{font-size:1.25rem;line-height:1.1;}
  .contact-direct-block{margin-top:1.5rem;}
  .contact-social-link{font-size:1.05rem;}
  .mobile-only{display:inline-flex;align-items:center;}
}


/* =========================================
   THE TEAM — Editorial alternating layout
   (Paste at end of style.css)
========================================= */

.page-theteam {
  background: #ecebe8;
  color: #1f1d1b;
}

/* hide old split layout on The Team page if still present */
.page-theteam .team-layout,
.page-theteam .team-left,
.page-theteam .team-right {
  display: none !important;
}

.team-editorial {
  max-width: 980px;
  margin: 0 auto;
  padding: 6.2rem 1rem 2.5rem;
  font-family: Georgia, "Times New Roman", serif;
}

.team-editorial__title {
  margin: 0 0 2.25rem;
  text-align: center;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  color: rgba(32, 30, 28, 0.9);
}

.team-person {
  width: min(540px, 100%);
  margin: 0 0 2.75rem;
  color: rgba(28, 27, 25, 0.9);
}

.team-person.is-right {
  margin-left: auto;
  text-align: right;
}

.team-person__head {
  margin-bottom: 0.7rem;
}

.team-person__brush {
  display: block;
  width: clamp(66px, 10vw, 110px);
  height: auto;
  margin-bottom: 0.25rem;
  opacity: 0.9;
}

.team-person.is-right .team-person__brush {
  margin-left: auto;
  margin-right: 0;
}

.team-person__name {
  margin: 0;
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(24, 23, 21, 0.96);
}

.team-person__role {
  margin: 0.05rem 0 0;
  font-size: clamp(0.9rem, 1.15vw, 1.05rem);
  line-height: 1.05;
  font-style: italic;
  font-weight: 500;
  color: rgba(20, 19, 18, 0.94);
}

.team-person__body p {
  margin: 0 0 0.85rem;
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  line-height: 1.18;
  color: rgba(31, 30, 28, 0.9);
  text-wrap: pretty;
}

.team-person.is-right .team-person__body p {
  margin-left: auto;
}

.team-person.is-right .team-person__body {
  max-width: 500px;
  margin-left: auto;
}

.team-person + .team-person {
  margin-top: 1.6rem;
}

@media (min-width: 1100px) {
  .team-editorial {
    max-width: 1120px;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .team-person {
    width: 48%;
  }

  .team-person__body p {
    font-size: 1.22rem;
    line-height: 1.16;
  }
}

@media (max-width: 768px) {
  .team-editorial {
    padding: 5.4rem 0.4rem 1.4rem;
  }

  .team-editorial__title {
    margin-bottom: 1.25rem;
    font-size: 1.8rem;
  }

  .team-person {
    width: 100%;
    margin-bottom: 1.8rem;
  }

  /* Keep alternating alignment feel on mobile */
  .team-person:not(.is-right) {
    padding-right: 12%;
  }

  .team-person.is-right {
    padding-left: 12%;
    padding-right: 0;
  }

  .team-person__brush {
    width: 72px;
    margin-bottom: 0.18rem;
  }

  .team-person__name {
    font-size: 0.98rem;
  }

  .team-person__role {
    font-size: 0.88rem;
  }

  .team-person__body p {
    font-size: 0.98rem;
    line-height: 1.16;
    margin-bottom: 0.72rem;
  }
}

/* =========================================
   THE TEAM — topbar / info panel scale patch
   Makes nav elements feel proportionate to enlarged Team content
   Scoped to body.page-theteam only
========================================= */

/* top header links on The Team page */
body.page-theteam .topbar-link,
body.page-theteam .brand {
  font-size: clamp(2.2rem, 2.9vw, 3.25rem) !important;
  line-height: 1 !important;
}

/* info panel menu (bottom sheet links) when opened on The Team page */
body.page-theteam .panel-nav a {
  font-size: clamp(2.35rem, 3.25vw, 3.9rem) !important;
  line-height: 1.02 !important;
}

/* close icon + michelin badge sizing for visual balance */
body.page-theteam .close-btn {
  font-size: 3.35rem !important;
  line-height: 1 !important;
}

body.page-theteam .michelin-badge {
  width: 148px !important;
  height: 148px !important;
}

/* Tablet tuning */
@media (max-width: 1100px) and (min-width: 768px) {
  body.page-theteam .topbar-link,
  body.page-theteam .brand {
    font-size: clamp(1.7rem, 2.2vw, 2.2rem) !important;
  }

  body.page-theteam .panel-nav a {
    font-size: clamp(1.9rem, 2.7vw, 2.75rem) !important;
  }

  body.page-theteam .close-btn {
    font-size: 2.6rem !important;
  }

  body.page-theteam .michelin-badge {
    width: 148px !important;
    height: 148px !important;
  }
}

/* Mobile: keep current global scale (avoid oversized header/panel) */
@media (max-width: 767px) {
  body.page-theteam .topbar-link,
  body.page-theteam .brand,
  body.page-theteam .panel-nav a,
  body.page-theteam .close-btn {
    font-size: revert !important;
  }

  body.page-theteam .michelin-badge {
    width: 148 !important;
    height: 148!important;
  }
}
