:root {
  color-scheme: light;
  --ink: #1d1741;
  --ink-soft: #5c5773;
  --paper: #fffdf8;
  --purple-950: #24106d;
  --purple-800: #4318a6;
  --purple-600: #6b2de2;
  --blue: #176de8;
  --cyan: #12b9d5;
  --mint: #75e5bb;
  --green: #21c96c;
  --orange: #ff8a2a;
  --pink: #f64f99;
  --line: rgba(56, 34, 121, 0.13);
  --shadow: 0 28px 80px rgba(43, 20, 111, 0.16);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --page: min(1180px, calc(100% - 40px));
  font-family: Inter, ui-rounded, "SF Pro Rounded", "Avenir Next", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  color: white;
  background: var(--purple-950);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--page);
  min-height: 108px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 112px;
  height: 78px;
  overflow: hidden;
  border-radius: 18px;
  background: white;
}

.brand img {
  width: 112px;
  height: auto;
  transform: translateY(1px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: 700;
}

.site-nav > a:not(.button) {
  text-decoration: none;
}

.site-nav > a:not(.button):hover {
  color: var(--purple-600);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 0;
  border-radius: 999px;
  color: white;
  background: linear-gradient(120deg, var(--purple-800), var(--blue) 66%, var(--cyan));
  box-shadow: 0 14px 28px rgba(62, 31, 171, 0.23);
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  box-shadow: 0 18px 34px rgba(62, 31, 171, 0.3);
  transform: translateY(-2px);
}

.button:focus-visible,
.text-link:focus-visible,
.site-nav a:focus-visible,
.site-footer a:focus-visible {
  outline: 3px solid var(--purple-950);
  outline-offset: 4px;
}

.button svg,
.hero__location svg,
.location-card svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button--small {
  min-height: 44px;
  padding: 10px 18px;
  font-size: 0.94rem;
}

.hero {
  display: grid;
  width: var(--page);
  min-height: 680px;
  margin: 0 auto;
  padding: 68px 0 86px;
  grid-template-columns: minmax(0, 0.9fr) minmax(510px, 1.1fr);
  align-items: center;
  gap: 44px;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--purple-800);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(33, 201, 108, 0.13);
}

.hero h1,
.section-heading h2,
.coming-soon h2,
.visit h2 {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.048em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 690px;
  font-size: clamp(3.25rem, 6vw, 5.8rem);
}

.hero h1 em {
  color: transparent;
  background: linear-gradient(90deg, var(--purple-600), var(--blue), var(--green));
  background-clip: text;
  -webkit-background-clip: text;
  font-family: "Segoe Script", "Bradley Hand", cursive;
  font-size: 0.78em;
  font-style: normal;
  letter-spacing: -0.08em;
}

.hero__lead {
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 30px;
}

.text-link {
  color: var(--purple-800);
  font-weight: 800;
  text-underline-offset: 5px;
}

.hero__location {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 34px;
  color: var(--ink-soft);
}

.hero__location svg {
  flex: 0 0 auto;
  color: var(--pink);
}

.hero__location span {
  display: grid;
}

.hero__location strong {
  color: var(--ink);
}

.hero__visual {
  position: relative;
  margin: 0;
}

.hero__visual::before,
.hero__visual::after {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  content: "";
  filter: blur(2px);
}

.hero__visual::before {
  top: -42px;
  right: 28px;
  width: 190px;
  height: 190px;
  background: rgba(117, 229, 187, 0.42);
}

.hero__visual::after {
  bottom: -30px;
  left: 18px;
  width: 150px;
  height: 150px;
  background: rgba(246, 79, 153, 0.22);
}

.hero__visual img {
  width: 100%;
  border: 8px solid white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  aspect-ratio: 1.58;
  object-fit: cover;
  object-position: center;
}

.hero__visual figcaption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  color: white;
  background: rgba(28, 13, 79, 0.72);
  backdrop-filter: blur(12px);
  font-size: 0.78rem;
  font-weight: 800;
}

.flavours {
  padding: 108px max(20px, calc((100vw - 1180px) / 2));
  background: #f5f2ff;
}

.section-heading {
  display: grid;
  max-width: 780px;
  margin: 0 auto 48px;
  text-align: center;
}

.eyebrow--dark {
  justify-content: center;
}

.section-heading h2,
.visit h2 {
  font-size: clamp(2.35rem, 4.5vw, 4rem);
}

.section-heading > p:last-child,
.visit__copy > p:last-of-type {
  margin: 22px auto 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.flavour-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.flavour-card {
  position: relative;
  min-height: 315px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: 0 18px 48px rgba(41, 21, 100, 0.09);
}

.flavour-card::after {
  position: absolute;
  right: -45px;
  bottom: -55px;
  width: 170px;
  height: 170px;
  border-radius: 45% 55% 60% 40%;
  background: var(--card-accent);
  content: "";
  opacity: 0.12;
  transform: rotate(18deg);
}

.flavour-card--green {
  --card-accent: var(--green);
}

.flavour-card--blue {
  --card-accent: var(--blue);
}

.flavour-card--orange {
  --card-accent: var(--orange);
}

.flavour-card__number {
  position: absolute;
  top: 28px;
  right: 30px;
  color: rgba(36, 16, 109, 0.2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.flavour-card__icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 19px;
  color: white;
  background: var(--card-accent);
  box-shadow: 0 12px 28px color-mix(in srgb, var(--card-accent) 30%, transparent);
}

.flavour-card__icon svg {
  width: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.flavour-card h3 {
  margin: 28px 0 8px;
  font-size: 1.45rem;
  letter-spacing: -0.025em;
}

.flavour-card p {
  max-width: 280px;
  margin: 0;
  color: var(--ink-soft);
}

.coming-soon {
  position: relative;
  display: grid;
  min-height: 640px;
  overflow: hidden;
  place-items: center;
  padding: 72px 20px;
}

.coming-soon > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coming-soon::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(33, 10, 102, 0.83), rgba(63, 29, 151, 0.34));
  content: "";
}

.coming-soon__panel {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  padding: 46px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: var(--radius-xl);
  color: white;
  background: rgba(34, 12, 105, 0.66);
  box-shadow: 0 30px 80px rgba(16, 5, 59, 0.3);
  backdrop-filter: blur(18px);
}

.eyebrow--light {
  color: var(--mint);
}

.coming-soon h2 {
  max-width: 650px;
  font-size: clamp(2.45rem, 5vw, 4.4rem);
}

.coming-soon__panel > p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
}

.coming-soon__note {
  display: inline-block;
  margin-top: 26px;
  color: white;
  font-weight: 800;
}

.visit {
  display: grid;
  width: var(--page);
  margin: 0 auto;
  padding: 110px 0;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 78px;
}

.visit .eyebrow {
  justify-content: flex-start;
}

.visit__note {
  margin-top: 28px;
  color: var(--purple-800);
  font-weight: 800;
}

.location-card {
  position: relative;
  display: grid;
  overflow: hidden;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, white, #f1fff8);
  box-shadow: var(--shadow);
  font-style: normal;
}

.location-card::after {
  position: absolute;
  right: -75px;
  bottom: -100px;
  width: 260px;
  height: 260px;
  border-radius: 44% 56% 52% 48%;
  background: linear-gradient(135deg, var(--cyan), var(--purple-600));
  content: "";
  opacity: 0.13;
}

.location-card__pin {
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 21px;
  color: white;
  background: linear-gradient(135deg, var(--pink), var(--orange));
}

.location-card > span {
  color: var(--purple-800);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-card strong {
  margin-top: 8px;
  font-size: clamp(1.75rem, 4vw, 2.55rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.location-card p {
  margin: 12px 0 24px;
  color: var(--ink-soft);
}

.location-card__status {
  position: relative;
  z-index: 1;
  width: fit-content;
  color: var(--purple-800);
  font-size: 1.12rem;
  font-weight: 900;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 34px max(20px, calc((100vw - 1180px) / 2));
  border-top: 1px solid var(--line);
  background: white;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-footer__brand img {
  width: 68px;
  height: 60px;
  object-fit: cover;
}

.site-footer__brand p {
  color: var(--purple-800);
  font-weight: 900;
}

.site-footer__meta {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.site-footer__meta a {
  color: var(--purple-800);
  font-weight: 800;
  text-underline-offset: 4px;
}

.privacy-page {
  min-height: 100vh;
  background: linear-gradient(180deg, #f5f2ff, var(--paper) 36%);
}

.privacy-main {
  width: min(780px, calc(100% - 40px));
  margin: 0 auto;
  padding: 80px 0 110px;
}

.privacy-main h1 {
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 5rem);
  letter-spacing: -0.055em;
  line-height: 1;
}

.privacy-main .privacy-intro {
  margin: 24px 0 46px;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.privacy-section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.privacy-section h2 {
  margin: 0 0 10px;
  font-size: 1.38rem;
}

.privacy-section p,
.privacy-section li {
  color: var(--ink-soft);
}

.privacy-section a {
  color: var(--purple-800);
  font-weight: 800;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 52px;
  }

  .hero__content {
    max-width: 760px;
  }

  .hero__visual img {
    max-height: 580px;
  }

  .visit {
    gap: 42px;
  }
}

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

  .site-header {
    min-height: 88px;
  }

  .brand {
    width: 88px;
    height: 64px;
  }

  .brand img {
    width: 88px;
  }

  .site-nav {
    gap: 12px;
  }

  .site-nav > a:not(.button) {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 48px 0 70px;
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero__visual figcaption {
    right: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
    text-align: center;
  }

  .flavours {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .flavour-grid {
    grid-template-columns: 1fr;
  }

  .flavour-card {
    min-height: 275px;
  }

  .coming-soon {
    min-height: 700px;
    padding: 34px 14px;
  }

  .coming-soon__panel {
    padding: 34px 26px;
  }

  .visit {
    padding: 80px 0;
    grid-template-columns: 1fr;
  }

  .location-card {
    padding: 32px 26px;
  }

  .site-footer,
  .site-footer__meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    gap: 22px;
  }

  .site-footer__meta {
    gap: 8px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
