:root {
  --ink: #182026;
  --muted: #63707a;
  --paper: #fffaf1;
  --cream: #fff2d8;
  --sea: #8dd8d1;
  --sea-deep: #1d6668;
  --pistachio: #c7df9d;
  --lemon: #f7dc77;
  --almond: #f0c7b8;
  --coral: #e76f5d;
  --stone: #eee5d9;
  --white: #ffffff;
  --shadow: 0 28px 90px rgba(28, 48, 52, 0.14);
  --line: rgba(24, 32, 38, 0.1);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(115deg, rgba(141, 216, 209, 0.22), transparent 34rem),
    linear-gradient(180deg, #fffaf1 0%, #fff8ec 45%, #f8eee1 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: geometricPrecision;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 3.5rem);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.86);
  backdrop-filter: blur(20px) saturate(1.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.brand-mark {
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid rgba(36, 107, 112, 0.2);
  border-radius: 50%;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: "Playfair Display", serif;
  max-width: 18rem;
  font-size: clamp(0.95rem, 1.4vw, 1.12rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  color: rgba(24, 32, 38, 0.7);
  font-size: 0.92rem;
  font-weight: 650;
}

.nav a {
  text-decoration: none;
}

.language-switch {
  justify-self: end;
  display: inline-flex;
  padding: 0.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
}

.lang-button {
  min-width: 2.35rem;
  min-height: 2rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

.lang-button.is-active {
  background: var(--ink);
  color: var(--white);
}

.section-shell {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 4.7rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.86fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding: clamp(3rem, 7vw, 7rem) 0;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--sea-deep);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  margin-bottom: 1.2rem;
  font-size: clamp(4.2rem, 8.8vw, 9.1rem);
  line-height: 0.88;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.25rem, 5vw, 4.8rem);
  line-height: 0.96;
}

h3 {
  margin-bottom: 0.35rem;
  font-size: 1.1rem;
}

.hero-body,
.split-section > div > p,
.story-card p,
.section-heading p,
.visit-copy p {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.7;
}

.hero-body {
  max-width: 42rem;
}

.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.live-proof {
  max-width: 33rem;
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(36, 107, 112, 0.18);
  border-radius: var(--radius);
  background: rgba(142, 215, 214, 0.16);
}

.live-proof span,
.live-proof strong {
  display: block;
}

.live-proof span {
  color: var(--sea-deep);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.live-proof strong {
  margin-top: 0.35rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.05;
}

.button {
  display: inline-flex;
  min-height: 3.05rem;
  align-items: center;
  justify-content: center;
  padding: 0 1.25rem;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 18px 40px rgba(30, 38, 48, 0.16);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.64);
}

.button:hover {
  transform: translateY(-1px);
}

.button:focus-visible,
.lang-button:focus-visible,
.nav a:focus-visible {
  outline: 3px solid rgba(141, 216, 209, 0.7);
  outline-offset: 3px;
}

.hero-visual {
  position: relative;
  min-height: 38rem;
}

.photo-stack::before {
  content: "";
  position: absolute;
  inset: 3rem 0 0 12%;
  border-radius: 46% 54% 50% 50%;
  background:
    linear-gradient(145deg, rgba(248, 220, 119, 0.62), rgba(142, 215, 214, 0.6)),
    var(--cream);
  filter: saturate(1.08);
}

.hero-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-photo img,
.owner-panel img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-main {
  right: 3%;
  bottom: 1rem;
  width: min(27rem, 82vw);
  height: 35rem;
}

.hero-photo-main img {
  object-position: 50% 42%;
}

.hero-photo-small {
  left: -1.5rem;
  top: 3rem;
  width: 13.5rem;
  height: 24rem;
}

.hero-logo-card {
  position: absolute;
  left: 5%;
  bottom: 1.5rem;
  width: 12rem;
  padding: 0.85rem;
  border: 1px solid rgba(30, 38, 48, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 50px rgba(30, 38, 48, 0.1);
}

.hero-logo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 6px;
  object-fit: cover;
}

.hero-logo-card span {
  display: block;
  margin-top: 0.75rem;
  color: var(--sea-deep);
  font-size: 0.95rem;
  font-weight: 850;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(1060px, calc(100% - 2rem));
  margin: 0 auto clamp(4rem, 8vw, 7rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(30, 38, 48, 0.08);
}

.proof-strip article {
  padding: clamp(1.2rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.7);
}

.proof-strip strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 0.9;
}

.proof-strip span {
  display: block;
  margin-top: 0.55rem;
  color: var(--muted);
  font-weight: 700;
}

.split-section {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.flavor-board {
  display: grid;
  gap: 0.85rem;
}

.flavor-card {
  display: grid;
  grid-template-columns: 7.8rem 1fr;
  gap: 1rem;
  align-items: center;
  min-height: 8.8rem;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 18px 50px rgba(30, 38, 48, 0.07);
  overflow: hidden;
}

.flavor-card img {
  width: 7rem;
  height: 7.2rem;
  border-radius: 6px;
  object-fit: cover;
  background: var(--stone);
}

.flavor-card p,
.menu-grid p {
  margin: 0;
  color: var(--muted);
}

.gourmet-note {
  margin: 1.4rem 0 0;
  padding: 1rem 1.05rem;
  border-left: 3px solid var(--coral);
  background: rgba(255, 255, 255, 0.52);
  color: var(--ink);
  font-size: clamp(0.98rem, 1.35vw, 1.08rem);
  font-weight: 720;
  line-height: 1.58;
}

.story-band {
  background:
    linear-gradient(90deg, rgba(141, 216, 209, 0.24), transparent),
    var(--stone);
}

.craft-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(20rem, 0.72fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.craft-media {
  min-height: 24rem;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.craft-media video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 24rem;
  object-fit: cover;
}

.craft-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.7;
}

.story-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.story-card {
  padding: clamp(1.4rem, 4vw, 3rem);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.78);
  box-shadow: var(--shadow);
}

.story-points {
  display: grid;
  gap: 1rem;
}

.owner-panel {
  display: grid;
  grid-template-columns: minmax(14rem, 0.74fr) 1fr;
  gap: 1.2rem;
  align-items: center;
}

.owner-panel > img {
  min-height: 28rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.story-points article {
  display: grid;
  grid-template-columns: 1.1rem 1fr;
  gap: 1rem;
  align-items: start;
}

.story-points span {
  width: 0.85rem;
  height: 0.85rem;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 0.45rem rgba(235, 121, 102, 0.14);
}

.story-points p {
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  font-weight: 760;
  line-height: 1.35;
}

.place-section {
  padding: 0 0 clamp(4rem, 8vw, 7rem);
}

.place-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(16rem, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: end;
  margin-bottom: 1.1rem;
}

.place-heading h2 {
  max-width: 14ch;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.place-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.78fr 0.78fr;
  gap: 0.85rem;
}

.place-card {
  position: relative;
  min-height: 21rem;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--stone);
  box-shadow: 0 18px 50px rgba(30, 38, 48, 0.09);
}

.place-card-large {
  min-height: 27rem;
}

.place-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.place-card figcaption {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  left: 0.75rem;
  padding: 0.78rem 0.85rem;
  border-radius: 6px;
  background: rgba(255, 250, 241, 0.88);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 760;
  line-height: 1.35;
  backdrop-filter: blur(16px);
}

.menu-section,
.reviews-section,
.visit-section,
.contact-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-heading {
  max-width: 42rem;
  margin-bottom: 2rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.menu-grid article {
  min-height: 10rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  overflow: hidden;
}

.menu-grid img {
  width: calc(100% + 2.4rem);
  height: 8.5rem;
  margin: -1.2rem -1.2rem 1rem;
  object-fit: cover;
  background: var(--stone);
}

.menu-grid span {
  color: var(--muted);
  line-height: 1.45;
}

.menu-grid strong {
  margin-top: 1rem;
  font-size: 1.1rem;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.review-grid article {
  min-height: 17rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.2rem, 3vw, 1.6rem);
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(29, 102, 104, 0.3), transparent 42%),
    var(--ink);
  color: var(--white);
}

.review-grid p {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  line-height: 1.18;
}

.review-grid span {
  color: rgba(255, 255, 255, 0.66);
  font-weight: 800;
}

.visit-section {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: stretch;
}

.review-ask {
  max-width: 38rem;
  padding-left: 1rem;
  border-left: 3px solid var(--coral);
  color: var(--ink) !important;
  font-weight: 750;
}

.map-card {
  display: flex;
  min-height: 28rem;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1rem;
  padding: clamp(1.4rem, 4vw, 2.2rem);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(24, 32, 38, 0.08), rgba(24, 32, 38, 0.78)),
    url("/assets/studio/storefront-walk.jpg") center / cover;
  color: var(--white);
  box-shadow: var(--shadow);
}

.map-card span {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.map-card strong {
  max-width: 18rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.45;
}

.map-card a {
  width: fit-content;
  padding-bottom: 0.18rem;
  border-bottom: 1px solid currentColor;
  font-weight: 850;
  text-decoration: none;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(22rem, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
  border-top: 1px solid var(--line);
}

.contact-copy p:not(.eyebrow) {
  max-width: 35rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.7;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.1rem, 3vw, 1.6rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 50px rgba(30, 38, 48, 0.07);
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: rgba(24, 32, 38, 0.78);
  font-size: 0.86rem;
  font-weight: 850;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(24, 32, 38, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.86);
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
}

.contact-form input {
  min-height: 3rem;
  padding: 0 0.95rem;
}

.contact-form textarea {
  min-height: 10rem;
  padding: 0.85rem 0.95rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(29, 102, 104, 0.52);
  outline: 3px solid rgba(141, 216, 209, 0.28);
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.contact-note,
.contact-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.contact-status {
  min-height: 1.25rem;
  color: var(--sea-deep);
  font-weight: 800;
}

.honeypot {
  display: none;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem clamp(1rem, 4vw, 3.5rem);
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer a {
  text-decoration: none;
}

.content-error [data-render],
.content-error [data-content] {
  opacity: 0.55;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero,
  .split-section,
  .craft-section,
  .place-heading,
  .story-grid,
  .visit-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3rem;
  }

  h1 {
    max-width: 9ch;
    font-size: clamp(4rem, 18vw, 6.4rem);
  }

  .hero-visual {
    min-height: 34rem;
  }

  .proof-strip,
  .owner-panel,
  .place-grid,
  .menu-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .place-card,
  .place-card-large {
    min-height: 20rem;
  }

  .owner-panel > img {
    min-height: 24rem;
  }

  .proof-strip article,
  .review-grid article {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 0.8rem 1rem;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    max-width: 12rem;
    font-size: 0.9rem;
  }

  .hero {
    gap: 1.3rem;
    padding-top: 1.4rem;
  }

  .hero .hero-visual {
    order: -1;
  }

  h1 {
    max-width: 10ch;
    font-size: clamp(3.45rem, 15vw, 5.2rem);
  }

  .hero-actions,
  .visit-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 19rem;
  }

  .hero-photo-main {
    right: 0;
    width: 76%;
    height: 18rem;
  }

  .hero-photo-main img {
    object-position: 50% 48%;
  }

  .hero-photo-small {
    left: 0;
    top: 0;
    width: 42%;
    height: 11.5rem;
  }

  .hero-logo-card {
    left: 0;
    bottom: 0;
    width: 7.5rem;
    padding: 0.55rem;
  }

  .hero-logo-card span {
    font-size: 0.76rem;
  }
}
