:root {
  --pink: #ce3368;
  --pink-dark: #a92355;
  --gold: #b97819;
  --paper: #fffaf5;
  --cream: #f8efe6;
  --ink: #382015;
  --muted: #855345;
  --green: #5e7245;
  --charcoal: #25201d;
  --line: rgba(206, 51, 104, .22);
  --section: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Montserrat, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .88), rgba(255, 255, 255, .98)),
    url("assets/pattern-icons.png") center / 560px auto;
  opacity: .2;
  pointer-events: none;
}

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

a {
  color: inherit;
}

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

h1 img {
  width: clamp(240px, 30vw, 420px);
}

.hero-logo {
  margin-left: auto;
  margin-right: auto;
  width: clamp(260px, 34vw, 520px);
}

h2 {
  color: var(--pink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.1rem, 7vw, 5.5rem);
  font-weight: 600;
  line-height: .9;
}

h3 {
  color: var(--pink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 600;
  line-height: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 48px);
  background: rgba(255, 250, 245, .92);
  border-bottom: 1px solid rgba(206, 51, 104, .12);
  backdrop-filter: blur(16px);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--pink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
  text-decoration: none;
}

.brand-link img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(10px, 2.5vw, 28px);
  color: var(--muted);
  font-size: .9rem;
  font-weight: 600;
}

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

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--pink);
}

.section-band {
  position: relative;
  overflow: clip;
}

.hero {
  min-height: min(820px, calc(100svh - 124px));
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(460px, 1.1fr);
  align-items: center;
  background: #fff;
}

.hero .reveal {
  opacity: 1;
  transform: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: clamp(48px, 8vw, 110px) clamp(26px, 8vw, 108px);
}

.kicker {
  display: flex;
  align-items: center;
  position: relative;
  gap: 0;
  margin-bottom: 28px;
  padding-left: 72px;
  color: var(--gold);
  font-size: clamp(.98rem, 2vw, 1.18rem);
  font-weight: 500;
}

.kicker::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 10px;
  background: #e5b33d;
}

.hero-line {
  margin-top: 24px;
  color: var(--pink);
  font-size: clamp(1.05rem, 2.1vw, 1.32rem);
  font-weight: 500;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 18px;
  color: #fff;
  background: var(--pink);
  border: 2px solid var(--pink);
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
}

.button:hover,
.button:focus-visible {
  background: var(--pink-dark);
  border-color: var(--pink-dark);
}

.button-quiet {
  color: var(--pink);
  background: transparent;
}

.button-quiet:hover,
.button-quiet:focus-visible {
  color: #fff;
}

.hero-visual {
  min-height: min(820px, calc(100svh - 124px));
  display: grid;
  align-items: center;
  padding: clamp(36px, 7vw, 76px) clamp(24px, 5vw, 58px) clamp(34px, 6vw, 64px) 0;
}

.hero-visual img {
  position: relative;
  z-index: 1;
  width: min(760px, 92%);
  margin-left: auto;
  filter: drop-shadow(0 24px 40px rgba(97, 44, 20, .14));
}

.pink-slab {
  position: absolute;
  inset: 0 0 0 auto;
  width: 42%;
  background: var(--pink);
}

.service-strip {
  width: var(--section);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: clamp(34px, 6vw, 72px) auto;
}

.service-strip article {
  min-height: 176px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-strip .reveal {
  opacity: 1;
  transform: none;
}

.service-strip strong {
  display: block;
  color: var(--pink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}

.service-strip p {
  margin-top: 14px;
  color: var(--muted);
}

.bike-section {
  width: var(--section);
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  margin: 0 auto;
  padding: clamp(42px, 6vw, 78px) 0;
}

.bike-copy > p:not(.kicker),
.intro-copy > p,
.dish-copy p,
.story-copy p,
.contact-copy p {
  max-width: 42rem;
  color: var(--pink);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
}

.statement {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
  margin-top: 42px;
  padding: 22px;
  color: #fff;
  background: var(--pink);
  border-radius: 8px;
}

.statement img {
  width: 82px;
}

.statement p {
  color: #fff;
  font-weight: 600;
}

.bike-photo {
  position: relative;
  min-height: 460px;
}

.bike-photo::before {
  content: "";
  position: absolute;
  inset: 16% -6% -8% 22%;
  background: var(--pink);
}

.bike-photo img {
  position: relative;
  width: 100%;
  height: clamp(420px, 54vw, 620px);
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(340px, .93fr) minmax(420px, 1.07fr);
  align-items: center;
  margin-top: clamp(34px, 7vw, 76px);
  background: #fff;
}

.intro-photo img {
  width: 100%;
  height: min(760px, 75vw);
  min-height: 520px;
  object-fit: cover;
  object-position: center 40%;
}

.intro-copy {
  padding: clamp(38px, 8vw, 96px);
}

.intro-copy h2 {
  margin-bottom: 28px;
}

.callout-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 42px;
}

.callout {
  min-height: 116px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 18px;
  border-radius: 6px;
  font-weight: 600;
}

.callout-fill {
  color: #fff;
  background: var(--pink);
}

.callout-fill img {
  width: 72px;
}

.callout-line {
  color: var(--pink);
  border: 2px solid var(--pink);
}

.taco-icon {
  display: inline-grid;
  width: 58px;
  place-items: center;
  color: var(--pink);
}

.taco-icon svg {
  width: 58px;
  height: 40px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5;
}

.dish-section {
  width: var(--section);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  margin: clamp(58px, 8vw, 96px) auto;
}

.dish-copy {
  padding: clamp(10px, 3vw, 34px);
}

.dish-copy h2 {
  margin-bottom: 26px;
}

.dish-copy p + p {
  margin-top: 14px;
}

.dish-photo {
  margin: 0;
}

.dish-photo img {
  width: 100%;
  height: clamp(430px, 54vw, 640px);
  object-fit: cover;
  border-radius: 8px;
}

.dish-cauli .dish-photo img {
  object-position: center 34%;
}

.dish-aubergine .dish-photo img {
  object-position: center 58%;
}

.dish-jackfruit .dish-photo img {
  object-position: center 48%;
}

.dish-carlota .dish-photo img {
  object-position: center 48%;
}

.dish-nachos .dish-photo img {
  object-position: center 50%;
}

.dish-photo figcaption {
  width: min(86%, 460px);
  margin: -56px auto 0;
  position: relative;
  padding: 22px 24px;
  color: #fff;
  background: var(--pink);
  border-radius: 8px;
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  font-weight: 600;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(340px, 1fr) minmax(420px, .9fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  padding: clamp(54px, 8vw, 92px) max(20px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(90deg, #fff 0 58%, var(--pink) 58% 100%);
}

.story-copy {
  padding: 0 clamp(0px, 3vw, 30px);
}

.story-copy h3 {
  margin: 16px 0 26px;
}

.story-copy p + p {
  margin-top: 22px;
}

.story-photo {
  position: relative;
  justify-self: center;
  width: min(460px, 100%);
}

.story-photo > img:first-child {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 26%;
  border-radius: 8px;
}

.location-section {
  width: var(--section);
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  margin: clamp(62px, 9vw, 108px) auto;
}

.location-copy h2 {
  margin-bottom: 24px;
}

.location-copy p:not(.kicker) {
  max-width: 34rem;
  color: var(--pink);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  margin-top: 30px;
  color: var(--pink);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 800;
  text-decoration: none;
}

.map-link:hover,
.map-link:focus-visible {
  color: var(--pink-dark);
}

.map-link span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 3px solid currentColor;
  border-radius: 8px;
}

.map-link svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.map-panel {
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.map-panel iframe {
  display: block;
  width: 100%;
  height: clamp(360px, 42vw, 520px);
  border: 0;
}

.contact-section {
  width: var(--section);
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(28px, 5vw, 66px);
  align-items: center;
  margin: clamp(62px, 9vw, 108px) auto 0;
  padding-bottom: clamp(46px, 8vw, 90px);
}

.contact-photo {
  position: relative;
}

.contact-photo::before {
  content: "";
  position: absolute;
  inset: 20% -10% -8% 38%;
  background: var(--pink);
}

.contact-photo img {
  position: relative;
  height: clamp(360px, 46vw, 540px);
  width: 100%;
  object-fit: cover;
  object-position: center 40%;
  border-radius: 8px;
}

.contact-copy {
  padding: 12px 0;
}

.contact-copy h2 {
  margin-bottom: 24px;
}

.contact-links {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.contact-links a {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 16px;
  color: var(--pink);
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 800;
  text-decoration: none;
}

.contact-links a:hover,
.contact-links a:focus-visible {
  color: var(--pink-dark);
}

.contact-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 3px solid currentColor;
  border-radius: 8px;
  font-size: 1.5rem;
  line-height: 1;
}

.contact-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.contact-icon-text {
  font-size: 1.45rem;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity .7s ease, transform .7s ease;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
}

.js .hero .reveal,
.js .service-strip .reveal,
.js .reveal.visible,
.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .intro-section,
  .bike-section,
  .dish-section,
  .story-section,
  .location-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    padding-top: clamp(38px, 10vw, 72px);
    padding-bottom: 16px;
  }

  .hero-visual {
    min-height: auto;
    padding: 26px 20px 52px;
    background: var(--pink);
  }

  .hero-visual img {
    width: min(680px, 96%);
    margin: 0 auto;
  }

  .pink-slab {
    display: none;
  }

  .service-strip {
    grid-template-columns: 1fr;
  }

  .service-strip {
    width: min(680px, calc(100% - 32px));
  }

  .bike-section,
  .dish-section,
  .location-section,
  .contact-section {
    width: min(680px, calc(100% - 32px));
  }

  .intro-photo img {
    height: 520px;
    min-height: 0;
  }

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

  .dish-aubergine .dish-photo {
    order: 2;
  }

  .dish-carlota .dish-photo {
    order: 2;
  }

  .story-section {
    padding-left: 20px;
    padding-right: 20px;
    background: linear-gradient(180deg, #fff 0 62%, var(--pink) 62% 100%);
  }

  .story-photo {
    width: min(520px, 86%);
  }

}

@media (max-width: 620px) {
  :root {
    --section: min(100% - 28px, 1180px);
  }

  body {
    font-size: 15px;
  }

  .site-header {
    padding: 12px 14px;
  }

  .brand-link img {
    width: 40px;
    height: 40px;
  }

  .site-nav {
    gap: 16px;
    justify-content: flex-start;
    font-size: .82rem;
  }

  .kicker {
    margin-bottom: 20px;
  }

  .kicker::before {
    width: 40px;
    height: 8px;
  }

  .hero-copy {
    padding-left: 22px;
    padding-right: 22px;
  }

  .hero-logo {
    width: min(100%, calc(100vw - 28px));
  }

  .hero-line {
    text-align: center;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 360px);
    margin-left: auto;
    margin-right: auto;
  }

  .button {
    width: 100%;
  }

  .service-strip article,
  .statement,
  .callout,
  .dish-photo figcaption {
    padding: 18px;
  }

  .statement,
  .callout {
    grid-template-columns: 1fr;
  }

  .intro-copy {
    padding: 34px 22px;
  }

  .intro-photo img,
  .bike-photo img,
  .dish-photo img,
  .contact-photo img {
    height: 360px;
  }

  .story-photo {
    width: min(420px, 78%);
  }

}
