:root {
  --blue: #96c1ca;
  --warm: #f2e8dc;
  --ink: #171515;
  --white: #ffffff;
  --line: #dedbd6;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--blue); outline-offset: 4px; }
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 1000; padding: .8rem 1rem; background: #000; color: #fff; }
.skip-link:focus { left: 1rem; top: 1rem; }
.uppercase { text-transform: uppercase; }

.hours-bar {
  background: var(--ink);
  color: #fff;
  text-align: center;
  padding: .55rem 1rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
}

.site-header {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 88px;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand img { width: 190px; }
.site-header nav { display: flex; align-items: center; gap: 2rem; font-size: .82rem; font-weight: 700; letter-spacing: .07em; }
.site-header nav a { border-bottom: 2px solid transparent; padding-bottom: .25rem; }
.site-header nav a:hover { border-bottom-color: var(--blue); }

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem 2rem 7rem;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(390px, 1.08fr);
  align-items: start;
  gap: clamp(3rem, 7vw, 7rem);
}
.hero-copy { position: relative; z-index: 2; padding-top: .1rem; }
.script { margin: 0; font-family: "Caveat", cursive; font-size: clamp(2.5rem, 5.8vw, 5.8rem); line-height: .9; font-weight: 600; letter-spacing: -.03em; }
.hero-script { text-align: center; margin-bottom: 1.55rem; }
.hero h1, .section-heading h2, .story-copy h2, .visit-card h2 {
  margin: 0;
  font-size: clamp(2.35rem, 4.8vw, 5.1rem);
  line-height: .98;
  letter-spacing: -.07em;
  font-weight: 800;
}
.hero-intro { max-width: 620px; margin: 1.6rem 0 2rem; font-size: clamp(1rem, 1.6vw, 1.2rem); }
.actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; padding: .85rem 1.25rem; border: 2px solid var(--ink); font-size: .8rem; font-weight: 800; letter-spacing: .06em; text-transform: lowercase; transition: transform .18s ease, background-color .18s ease; }
.button:hover { transform: translateY(-2px); }
.button-dark { background: var(--ink); color: #fff; }
.button-dark:hover { background: var(--blue); color: var(--ink); }
.button-light { background: #fff; color: var(--ink); }
.button-light:hover { background: var(--warm); }
.micro { margin: 1.2rem 0 0; font-size: .72rem; line-height: 1.5; letter-spacing: .06em; }
.hero-visual { position: relative; min-height: 650px; }
.hero-visual figure { position: absolute; margin: 0; inset: 0; overflow: hidden; border: 10px solid #fff; box-shadow: 0 22px 50px rgba(0,0,0,.12); }
.hero-visual figure img { width: 100%; height: 100%; object-fit: cover; object-position: center 52%; }

.menu-section { border-top: 1px solid var(--line); padding: 6.5rem 2rem 8rem; }
.section-heading { max-width: 760px; margin: 0 auto 3.5rem; text-align: center; }
.section-heading p:last-child { max-width: 580px; margin: 1.2rem auto 0; }
.eyebrow { margin: 0 0 .8rem; font-size: .72rem; font-weight: 800; letter-spacing: .18em; }
.product-wall {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 2.4rem 1.35rem;
  padding: 1.5rem 0 2.3rem;
}
.product-card { background: #fff; border: 1px solid var(--line); box-shadow: 0 10px 24px rgba(0,0,0,.05); transition: transform .2s ease, box-shadow .2s ease; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 18px 34px rgba(0,0,0,.09); }
.product-card img { aspect-ratio: 1/1; width: 100%; object-fit: cover; }
.product-card div { padding: 1.05rem 1.15rem 1.2rem; border-top: 1px solid var(--line); }
.product-card h3 { margin: 0; font-size: 1.5rem; line-height: 1; letter-spacing: -.06em; font-weight: 800; }
.product-card p { margin: .55rem 0 0; font-size: .86rem; }

.story-section { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; background: var(--blue); }
.story-image { min-height: 620px; background: var(--white); overflow: hidden; }
.story-image img { width: 100%; height: 100%; object-fit: contain; }
.story-copy { padding: clamp(3rem,7vw,7rem); display: flex; flex-direction: column; justify-content: center; }
.story-copy h2 { font-size: clamp(2.3rem,4.2vw,4.5rem); }
.story-copy > p:not(.eyebrow):not(.script) { max-width: 580px; margin-top: 1.5rem; font-size: 1.08rem; }
.small-script { font-size: clamp(2rem,4vw,4rem); line-height: 1; }
.story-quote-row {margin-top: 2.3rem;display: flex;align-items: center;gap: 1rem;}
.story-smiley { width: clamp(130px, 12vw, 180px);flex: 0 0 auto;justify-self: end;}

.visit-section { max-width: var(--max); margin: 0 auto; padding: 8rem 2rem; display: grid; grid-template-columns: 1.1fr .9fr; gap: 0; align-items: stretch; }
.visit-image { min-height: 650px; overflow: hidden; background: #ddd; }
.visit-image img { width: 100%; height: 100%; object-fit: cover; object-position: left center; }
.visit-card { background: var(--warm); padding: clamp(2.5rem,5vw,5rem); display: flex; flex-direction: column; justify-content: center; }
.visit-card h2 { font-size: clamp(2.4rem,4vw,4.4rem); }
.visit-card address { margin-top: 1.6rem; font-style: normal; font-size: 1rem; }
.details { margin: 1.8rem 0 2.1rem; border-top: 1px solid #c9c2bb; }
.details div { display: grid; grid-template-columns: 92px 1fr; gap: 1rem; padding: .8rem 0; border-bottom: 1px solid #c9c2bb; }
.details dt { font-size: .72rem; font-weight: 800; letter-spacing: .1em; }
.details dd { margin: 0; }
.details a { text-decoration: underline; text-underline-offset: 3px; }

.partners { border-top: 1px solid var(--line); padding: 6rem 2rem 7rem; }
.compact { margin-bottom: 2.5rem; }
.compact h2 { font-size: clamp(2.4rem,4vw,4.2rem); }
.partner-grid { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: repeat(5,1fr); align-items: stretch; border: 1px solid var(--line); }
.partner { min-height: 220px; padding: 1.5rem; display: flex; justify-content: center; align-items: center; border-left: 1px solid var(--line); background: #fff; transition: background-color .18s ease; }
.partner:first-child { border-left: 0; }
.partner:hover { background: #faf9f8; }
.partner img { max-width: 180px; max-height: 100px; width: auto; object-fit: contain; }
.partner img.biblo { width: 110px; max-height: 110px; }
.partner img.square-logo { max-height: 122px; max-width: 122px; border-radius: 2px; }

footer { background: var(--ink); color: #fff; padding: 3.5rem max(2rem,calc((100vw - var(--max))/2 + 2rem)); display: grid; grid-template-columns: 1fr auto; gap: 2rem 4rem; align-items: end; }
.footer-brand img { width: 180px; }
.footer-brand p { margin: 1rem 0 0; font-size: .82rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.4rem; font-size: .78rem; font-weight: 700; letter-spacing: .08em; }
.footer-links a:hover { color: var(--blue); }
.copyright { grid-column: 1/-1; margin: 1rem 0 0; color: #aaa; font-size: .7rem; }
.mobile-actions { display: none; }

@media (max-width: 1180px) {
  .partner-grid { grid-template-columns: repeat(3,1fr); }
  .partner:nth-child(4) { border-left: 0; }
  .partner:nth-child(n+4) { border-top: 1px solid var(--line); }
}

@media (max-width: 980px) {
  .site-header nav { gap: 1rem; }
  .hero { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero-visual { min-height: 560px; }
  .product-wall { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .story-image { min-height: 500px; }
  .visit-section { grid-template-columns: 1fr; }
  .visit-image { min-height: 470px; }
}

@media (max-width: 760px) {
  body { padding-bottom: 62px; }
  .hours-bar { font-size: .63rem; letter-spacing: .08em; }
  .site-header { min-height: 72px; padding: .9rem 1.1rem; }
  .brand img { width: 145px; }
  .site-header nav a:not(:last-child) { display: none; }
  .site-header nav { font-size: .72rem; }
  .hero { padding: 2.2rem 1.15rem 5rem; grid-template-columns: 1fr; gap: 2.6rem; }
  .hero h1 { font-size: clamp(2.7rem,13vw,4.6rem); }
  .script { font-size: clamp(3rem,17vw,5.4rem); }
  .hero-script { text-align: center; margin-bottom: 1rem; }
  .hero-visual { min-height: 520px; }
  .menu-section { padding: 5rem 1.1rem 5.5rem; }
  .product-wall { grid-template-columns: 1fr; padding: 1.4rem 0 2rem; gap: 1.5rem; }
  .story-section { grid-template-columns: 1fr; background: var(--blue); }
  .story-image { min-height: auto; }
  .story-image img { width: 100%; height: auto; }
  .story-copy { padding: 4rem 1.3rem; }
 .story-quote-row {
  align-items: center;}
.story-smiley {width: 96px;}
  .visit-section { padding: 5rem 1.1rem; }
  .visit-image { min-height: 360px; }
  .visit-card { padding: 2.5rem 1.4rem 3rem; }
  .stacked-mobile { flex-direction: column; align-items: stretch; }
  .partners { padding: 4.5rem 1.1rem 5rem; }
  .partner-grid { grid-template-columns: 1fr; }
  .partner { min-height: 190px; border-left: 0; border-top: 1px solid var(--line); }
  .partner:first-child { border-top: 0; }
  footer { padding: 3rem 1.3rem; grid-template-columns: 1fr; align-items: start; }
  .mobile-actions { position: fixed; z-index: 100; left: 0; right: 0; bottom: 0; display: grid; grid-template-columns: 1fr 1fr; background: #fff; box-shadow: 0 -6px 18px rgba(0,0,0,.14); }
  .mobile-actions a { min-height: 62px; display: grid; place-items: center; font-size: .76rem; font-weight: 800; letter-spacing: .06em; text-transform: lowercase; }
  .mobile-actions a:first-child { background: var(--ink); color: #fff; }
  .mobile-actions a:last-child { background: var(--blue); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
