:root,
[data-theme="light"] {
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2.4rem, 1.4rem + 3.2vw, 5rem);

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  --color-bg: #ffffff;
  --color-surface: #eef6fa;
  --color-surface-2: #dff0f6;
  --color-surface-offset: #c8e5f0;
  --color-border: #75a6bc;
  --color-divider: #97bfde;

  --color-text: #071e2c;
  --color-text-muted: #2f81a1;
  --color-text-faint: #5d90a8;
  --color-text-inverse: #ffffff;

  --color-primary: #2f81a1;
  --color-primary-hover: #1d6a87;
  --color-primary-highlight: #c8e5f0;

  --color-secondary: #75a6bc;
  --color-secondary-hover: #2f81a1;
  --color-secondary-highlight: #eef6fa;

  --shadow-sm: 0 2px 8px rgba(7, 30, 44, 0.1), 0 1px 2px rgba(7, 30, 44, 0.06);
  --shadow-md: 0 8px 28px rgba(7, 30, 44, 0.14), 0 2px 6px rgba(7, 30, 44, 0.08);
  --shadow-lg: 0 20px 56px rgba(7, 30, 44, 0.18), 0 6px 16px rgba(7, 30, 44, 0.1);

  --radius-sm: 0.65rem;
  --radius-md: 0.95rem;
  --radius-lg: 1.4rem;
  --radius-xl: 1.9rem;
  --radius-full: 999px;

  --font-display: 'Zodiak', Georgia, serif;
  --font-body: 'General Sans', Inter, sans-serif;
  --content: 1180px;
}

[data-theme="dark"] {
  --color-bg: #071b24;
  --color-surface: #0c2535;
  --color-surface-2: #112f41;
  --color-surface-offset: #173a50;
  --color-border: #2f81a1;
  --color-divider: #14374a;

  --color-text: #ffffff;
  --color-text-muted: #bbe0e9;
  --color-text-faint: #97bfde;
  --color-text-inverse: #071b24;

  --color-primary: #bbe0e9;
  --color-primary-hover: #ffffff;
  --color-primary-highlight: #173a50;

  --color-secondary: #97bfde;
  --color-secondary-hover: #bbe0e9;
  --color-secondary-highlight: #0c2535;

  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.3), 0 4px 12px rgba(0, 0, 0, 0.22);
  --shadow-md: 0 8px 28px rgba(0, 0, 0, 0.38), 0 2px 6px rgba(0, 0, 0, 0.28);
  --shadow-lg: 0 20px 56px rgba(0, 0, 0, 0.5), 0 6px 16px rgba(0, 0, 0, 0.36);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  background:
    radial-gradient(circle at top left, color-mix(in srgb, var(--color-primary-highlight) 44%, transparent) 0, transparent 36%),
    radial-gradient(circle at bottom right, color-mix(in srgb, var(--color-secondary) 10%, transparent) 0, transparent 28%),
    var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

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

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
  border-radius: var(--radius-sm);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: var(--color-primary);
  color: var(--color-text-inverse);
  padding: 0.75rem 1rem;
  z-index: 1000;
  border-radius: var(--radius-full);
}

.container {
  width: min(100%, var(--content));
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: color-mix(in srgb, var(--color-bg) 82%, transparent);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid color-mix(in srgb, var(--color-border) 72%, transparent);
}

.site-header .container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-inline: clamp(0.75rem, 3vw, 1.5rem);
}

.section {
  padding: clamp(var(--space-12), 7vw, var(--space-24)) 0;
  position: relative;
}

.section + .section {
  border-top: 1px solid color-mix(in srgb, var(--color-divider) 70%, transparent);
}

.eyebrow {
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 700;
}

/* HEADER */
.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 0;
  width: 100%;
}

.brand-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 0 0 auto;
  margin-right: auto;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.85rem;
  min-width: 0;
  flex-shrink: 0;
  margin-right: auto;
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 130px;
  height: 52px;
  flex: 0 0 130px;
  overflow: hidden;
}

.brand-logo-wrap .custom-logo-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  line-height: 0;
}

.brand-logo-wrap .custom-logo,
.brand-mark {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.brand-name {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
}

.brand-name strong {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-name span {
  font-size: 0.76rem;
  color: var(--color-text-muted);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 0.22rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  font-size: var(--text-sm);
  color: var(--color-text);
}

.nav-links a {
  position: relative;
  font-weight: 500;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.28rem;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
  opacity: 0.75;
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}

.theme-toggle,
.menu-toggle {
  width: 46px;
  height: 46px;
  border: 1px solid color-mix(in srgb, var(--color-border) 80%, transparent);
  border-radius: var(--radius-full);
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--color-surface) 76%, transparent);
  color: var(--color-text);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  flex-shrink: 0;
}

.theme-toggle:hover,
.menu-toggle:hover {
  transform: translateY(-2px);
  border-color: var(--color-primary);
}

.menu-toggle {
  display: none;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 50px;
  padding: 0.95rem 1.35rem;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), color-mix(in srgb, var(--color-secondary) 45%, var(--color-primary)));
  color: var(--color-text-inverse);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-primary-hover), var(--color-primary));
}

.btn-secondary {
  background: color-mix(in srgb, var(--color-surface) 84%, transparent);
  border-color: color-mix(in srgb, var(--color-border) 90%, transparent);
  color: var(--color-text);
}

.btn-secondary:hover {
  border-color: var(--color-primary);
  background: color-mix(in srgb, var(--color-primary-highlight) 42%, var(--color-surface));
}

/* HERO */
.hero {
  padding: clamp(var(--space-16), 9vw, var(--space-24)) 0 var(--space-12);
}

.hero-copy {
  max-width: 1200px;
}

.hero-meta-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.hero-meta-card span {
  color: var(--color-text-muted);
  line-height: 1.55;
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 6vw, 6rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  max-width: 13ch;
  margin: 0.7rem 0 1rem;
  text-wrap: balance;
}

.hero-description {
  margin-top: 1.25rem;
  max-width: 39ch;
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--color-text-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.25rem;
  max-width: 980px;
}

.hero-meta div {
  padding: 1.2rem 1.2rem 1.15rem;
  border: 1px solid color-mix(in srgb, var(--color-border) 80%, transparent);
  border-radius: var(--radius-lg);
  background: color-mix(in srgb, var(--color-surface) 90%, transparent);
  box-shadow: var(--shadow-sm);
}

.hero-meta strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

/* GRID / CARD */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-6);
}

.card {
  background: color-mix(in srgb, var(--color-surface) 92%, transparent);
  border: 1px solid color-mix(in srgb, var(--color-border) 80%, transparent);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(6px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: color-mix(in srgb, var(--color-primary) 26%, var(--color-border));
}

.card h3 {
  font-size: var(--text-lg);
  margin: 0.55rem 0;
  font-family: var(--font-display);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.card p {
  color: var(--color-text-muted);
}

/* SECTION HEAD */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  margin-top: 0.4rem;
  max-width: 14ch;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.section-head p {
  max-width: 26ch;
  color: var(--color-text-muted);
}

.section-copy {
  display: grid;
  gap: 0.45rem;
}

.section-intro {
  max-width: 29ch;
  color: var(--color-text-muted);
}

.gallery-filter-wrap {
  margin-bottom: var(--space-2);
}

.gallery-results {
  margin-top: var(--space-2);
}

/* BENTO */
.bento {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: var(--space-5);
}

.bento .card {
  min-height: 220px;
}

.bento .wide {
  grid-row: span 2;
  min-height: 460px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--color-primary-highlight) 50%, var(--color-surface)), var(--color-surface));
}

.price {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-primary);
  margin-top: 1rem;
}

.flavour-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.1rem;
}

.pill {
  padding: 0.58rem 0.9rem;
  border-radius: var(--radius-full);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  font-size: var(--text-xs);
}

/* STORY */
.story {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-8);
  align-items: center;
}

.story-panel {
  position: relative;
  min-height: 420px;
  border-radius: var(--radius-xl);
  background: linear-gradient(155deg, #bbe0e9, #f9fbf7 55%, #97bfde);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

[data-theme="dark"] .story-panel {
  background: linear-gradient(155deg, #0c2535, #071b24 58%, #112f41);
}

.story-panel .swirl {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0));
  mix-blend-mode: screen;
}

.swirl.s1 {
  width: 320px;
  height: 320px;
  top: -70px;
  right: -60px;
}

.swirl.s2 {
  width: 220px;
  height: 220px;
  left: -40px;
  bottom: 20px;
}

.swirl.s3 {
  width: 180px;
  height: 180px;
  right: 90px;
  bottom: 70px;
}

.quote {
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 2rem;
  padding: 1.2rem 1.3rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #0d2e3d;
}

[data-theme="dark"] .quote {
  background: rgba(7, 27, 36, 0.75);
  border-color: rgba(187, 224, 233, 0.15);
  color: var(--color-text);
}

/* STEPS */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.step-no {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--color-primary-highlight) 92%, transparent);
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 1rem;
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--color-primary) 16%, transparent);
}

.step-card {
  position: relative;
  overflow: hidden;
}

.step-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--color-primary-highlight) 60%, transparent);
  filter: blur(20px);
  opacity: 0.45;
  pointer-events: none;
}

/* CONTACT ORDER SECTION */
.contact-order-section {
  padding: 40px 0;
}

.contact-order-single {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

.contact-order-header {
  margin-bottom: 18px;
  max-width: 640px;
}

.contact-order-header .eyebrow {
  margin-bottom: 8px;
}

.contact-order-header .contact-title {
  margin: 0;
  max-width: 100%;
}

.contact-order-header .contact-intro {
  margin-top: 10px;
  color: var(--color-text-muted);
  max-width: 52ch;
}

.contact-order-section .contact-form-card {
  padding: 14px;
  border-radius: 18px;
  background: #edf7fc;
  border: 1px solid rgba(40, 94, 120, 0.14);
  box-shadow: 0 8px 24px rgba(25, 68, 88, 0.08);
  overflow: hidden;
}

.contact-order-section .cake-order-form {
  display: grid;
  gap: 10px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.contact-order-section .contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px 12px;
  align-items: start;
  width: 100%;
}

.contact-order-section .field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
  width: 100%;
}

.contact-order-section .field label {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
  color: #10293a;
}

.contact-order-section input,
.contact-order-section select,
.contact-order-section textarea {
  display: block;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: 42px;
  padding: 9px 12px;
  border: 1px solid rgba(40, 94, 120, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  color: #17384b;
  font-size: 14px;
  line-height: 1.3;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
}

.contact-order-section input::placeholder,
.contact-order-section textarea::placeholder {
  color: #6c8fa3;
  opacity: 1;
}

.contact-order-section input:focus,
.contact-order-section select:focus,
.contact-order-section textarea:focus {
  outline: none;
  border-color: rgba(43, 128, 171, 0.5);
  box-shadow: 0 0 0 3px rgba(79, 161, 203, 0.14);
}

.contact-order-section select {
  padding-right: 34px;
  background-image:
    linear-gradient(45deg, transparent 50%, #17384b 50%),
    linear-gradient(135deg, #17384b 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 1px),
    calc(100% - 13px) calc(50% - 1px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.contact-order-section textarea {
  min-height: 76px;
  resize: vertical;
}

.contact-order-section .field-full,
.contact-order-section .field.is-full {
  grid-column: 1 / -1;
}

.contact-order-section .enquiry-submit {
  width: 100%;
  min-height: 48px;
  margin-top: 4px;
  border-radius: 999px;
  grid-column: 1 / -1;
}

/* GENERAL FORM */
form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.15rem, 2vw, 1.7rem);
  border-radius: calc(var(--radius-xl) + 0.1rem);
  background: color-mix(in srgb, var(--color-surface) 92%, transparent);
  border: 1px solid color-mix(in srgb, var(--color-border) 82%, transparent);
  box-shadow: var(--shadow-md);
}

.field {
  display: grid;
  gap: 0.45rem;
}

label {
  font-size: var(--text-sm);
  font-weight: 600;
}

input,
textarea,
select {
  width: 100%;
  padding: 0.98rem 1rem;
  border-radius: 1rem;
  border: 1px solid color-mix(in srgb, var(--color-border) 90%, transparent);
  background: color-mix(in srgb, var(--color-surface-2) 95%, transparent);
  color: var(--color-text);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

input::placeholder,
textarea::placeholder {
  color: var(--color-text-faint);
}

input:focus,
textarea:focus,
select:focus {
  border-color: color-mix(in srgb, var(--color-primary) 80%, white);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--color-primary-highlight) 75%, transparent);
  outline: none;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.enquiry-submit {
  width: 100%;
}

/* FOOTER */
.site-footer {
  padding: clamp(4rem, 8vw, 7rem) 0 2rem;
  border-top: 1px solid color-mix(in srgb, var(--color-border) 65%, transparent);
}

.footer-signature-wrap {
  position: relative;
  text-align: center;
  padding-top: clamp(2rem, 5vw, 3rem);
}

.footer-signature-wrap::before {
  content: "";
  display: block;
  width: min(140px, 24vw);
  height: 1px;
  margin: 0 auto 1.7rem;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.footer-signature-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: 1rem;
}

.footer-signature-logo .custom-logo,
.footer-signature-logo img {
  width: min(180px, 42vw);
  height: auto;
  object-fit: contain;
}

.footer-brand-name,
.footer-wordmark {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  color: var(--color-text);
  text-align: center;
}

.footer-brand-line {
  max-width: 34ch;
  margin: 1.2rem auto 0;
  color: var(--color-text-muted);
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.1rem);
  line-height: 1.85;
  text-align: center;
}

.footer-socials {
  margin-top: 1.8rem;
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.footer-social-link {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--color-surface) 88%, transparent);
  border: 1px solid color-mix(in srgb, var(--color-border) 86%, transparent);
  color: var(--color-text);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.footer-social-link svg {
  width: 22px;
  height: 22px;
}

.footer-social-link:hover {
  transform: translateY(-3px);
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-text-inverse);
}

[data-theme="dark"] .footer-social-link:hover {
  color: #071b24;
}

.footer-contact-strip {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  color: var(--color-text);
  font-size: var(--text-sm);
}

.footer-contact-strip span {
  position: relative;
}

.footer-contact-strip span:not(:last-child)::after {
  content: "•";
  margin-left: 1.25rem;
  color: var(--color-primary);
}

.footer-bottom-line {
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid color-mix(in srgb, var(--color-border) 55%, transparent);
  text-align: center;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

/* REVEAL */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

/* GALLERY */
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: var(--space-6);
}

.gallery-chip {
  border: 1px solid color-mix(in srgb, var(--color-border) 90%, transparent);
  background: color-mix(in srgb, var(--color-surface) 92%, transparent);
  color: var(--color-text);
  padding: 0.72rem 1rem;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 700;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-chip:hover,
.gallery-chip.active {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
}

.gallery-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid color-mix(in srgb, var(--color-border) 78%, transparent);
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4/5;
  min-height: 0;
  isolation: isolate;
  height: 400px;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.55s ease;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 27, 36, 0.9) 0%, rgba(7, 27, 36, 0.42) 45%, rgba(7, 27, 36, 0.08) 72%, rgba(7, 27, 36, 0.02) 100%);
  z-index: 1;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  color: #ffffff;
}

.gallery-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-full);
  background: rgba(187, 224, 233, 0.18);
  border: 1px solid rgba(187, 224, 233, 0.32);
  backdrop-filter: blur(8px);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.gallery-overlay h3 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1rem + 0.7vw, 1.9rem);
  margin-bottom: 0.35rem;
  line-height: 1.02;
}

.gallery-overlay p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-sm);
  max-width: 26ch;
}

.gallery-price {
  display: inline-block;
  margin-top: 0.8rem;
  padding: 0.42rem 0.72rem;
  border-radius: var(--radius-full);
  background: rgba(187, 224, 233, 0.18);
  border: 1px solid rgba(187, 224, 233, 0.28);
  font-weight: 700;
  font-size: var(--text-xs);
}

.gallery-card.is-hidden {
  display: none;
}

/* WHATSAPP */
.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #2dd36f, #1fb85b);
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(12, 61, 31, 0.28), 0 0 0 10px rgba(45, 211, 111, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 24px 48px rgba(12, 61, 31, 0.34), 0 0 0 12px rgba(45, 211, 111, 0.1);
}

.whatsapp-float:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 4px;
}

.whatsapp-float__inner {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

/* DARK MODE OVERRIDES */
[data-theme="dark"] .btn-primary {
  background: linear-gradient(135deg, #3a9ec0, #1f6e8f);
  color: #ffffff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(58, 158, 192, 0.25);
}

[data-theme="dark"] .btn-primary:hover {
  background: linear-gradient(135deg, #4cb4d8, #2f81a1);
}

[data-theme="dark"] .btn-secondary {
  background: rgba(11, 32, 45, 0.95);
  border-color: rgba(151, 191, 222, 0.55);
  color: #f0fafd;
}

[data-theme="dark"] .btn-secondary:hover {
  border-color: #bbe0e9;
  background: rgba(23, 58, 80, 0.95);
}

[data-theme="dark"] input,
[data-theme="dark"] textarea,
[data-theme="dark"] select {
  background: rgba(6, 19, 27, 0.9);
  border-color: rgba(47, 129, 161, 0.48);
  color: #f0fafd;
}

[data-theme="dark"] input:focus,
[data-theme="dark"] textarea:focus,
[data-theme="dark"] select:focus {
  border-color: #3a9ec0;
  box-shadow: 0 0 0 3px rgba(58, 158, 192, 0.18);
}

[data-theme="dark"] input::placeholder,
[data-theme="dark"] textarea::placeholder {
  color: rgba(151, 191, 222, 0.5);
}

[data-theme="dark"] .card {
  border-color: rgba(47, 129, 161, 0.28);
}

[data-theme="dark"] .step-no {
  background: rgba(23, 58, 80, 0.9);
  box-shadow: inset 0 0 0 1px rgba(47, 129, 161, 0.35);
}

[data-theme="dark"] .gallery-chip:hover,
[data-theme="dark"] .gallery-chip.active {
  background: #3a9ec0;
  border-color: #3a9ec0;
  color: #ffffff;
}

[data-theme="dark"] .contact-order-section .contact-form-card {
  background: #0c2535;
  border-color: rgba(47, 129, 161, 0.32);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

[data-theme="dark"] .contact-order-section .field label {
  color: #f0fafd;
}

[data-theme="dark"] .contact-order-section input,
[data-theme="dark"] .contact-order-section select,
[data-theme="dark"] .contact-order-section textarea {
  background: rgba(6, 19, 27, 0.9);
  border-color: rgba(47, 129, 161, 0.48);
  color: #f0fafd;
}

[data-theme="dark"] .contact-order-section input::placeholder,
[data-theme="dark"] .contact-order-section textarea::placeholder {
  color: rgba(151, 191, 222, 0.5);
}

[data-theme="dark"] .contact-order-section select {
  background-image:
    linear-gradient(45deg, transparent 50%, #f0fafd 50%),
    linear-gradient(135deg, #f0fafd 50%, transparent 50%);
}

/* RESPONSIVE 980px */
@media (max-width: 980px) {
  .container {
    width: min(calc(100% - 1.5rem), var(--content));
    padding-inline: 0;
  }

  .grid-2,
  .story,
  .contact-wrap,
  .bento,
  .steps {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: clamp(var(--space-10), 8vw, var(--space-16)) 0 var(--space-10);
  }

  .hero-copy h1 {
    max-width: 12ch;
  }

  .bento .wide {
    grid-row: auto;
    min-height: 280px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-4);
  }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.3rem;
    padding: 0.75rem;
    border-radius: 1.25rem;
    background: color-mix(in srgb, var(--color-surface) 97%, transparent);
    border: 1px solid color-mix(in srgb, var(--color-border) 70%, transparent);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(20px);
    z-index: 49;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 0.9rem 1rem;
    min-height: 48px;
    border-radius: 0.85rem;
    font-size: 1rem;
  }

  .nav-links a:hover {
    background: color-mix(in srgb, var(--color-primary-highlight) 50%, transparent);
  }

  .menu-toggle {
    display: grid;
  }
}

/* RESPONSIVE 768px */
@media (min-width: 768px) {
  .contact-order-section {
    padding: 56px 0;
  }

  .contact-order-header {
    margin-bottom: 24px;
  }

  .contact-order-section .contact-form-card {
    padding: 22px;
    border-radius: 24px;
  }

  .contact-order-section .contact-grid {
    gap: 12px 16px;
  }


  .contact-order-section input,
  .contact-order-section select,
  .contact-order-section textarea {
    min-height: 46px;
    padding: 10px 14px;
  }

  .contact-order-section textarea {
    min-height: 84px;
  }

  .contact-order-section .enquiry-submit {
    min-height: 50px;
    margin-top: 6px;
  }
}

/* RESPONSIVE 640px */
@media (max-width: 640px) {
  .container {
    width: min(100%, var(--content));
    padding-inline: 1rem;
  }

  .site-header .container {
    padding-inline: 0.75rem;
  }

  .nav {
    padding: 0.8rem 0;
    gap: 0.5rem;
  }

  .brand-logo-wrap {
    width: 100px;
    height: 42px;
    flex: 0 0 100px;
  }

  .brand-logo-wrap .custom-logo,
  .brand-mark {
    max-width: 100px;
    max-height: 42px;
    object-fit: contain;
    object-position: left center;
  }

  .brand-name strong {
    font-size: 0.9rem;
  }

  .brand-name span {
    font-size: 0.6rem;
    letter-spacing: 0.14em;
  }

  .theme-toggle,
  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .actions {
    gap: 0.45rem;
  }

  .actions .btn-primary {
    display: none;
  }

  .nav-links {
    top: 68px;
  }

  .nav-links a {
    font-size: 1rem;
    font-weight: 600;
  }

  .hero {
    padding: 2rem 0 2.5rem;
  }

  .eyebrow {
    font-size: 0.67rem;
    letter-spacing: 0.15em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    margin-bottom: 0.75rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.3rem, 10.5vw, 3.4rem);
    line-height: 0.94;
    max-width: 11ch;
    margin: 0 0 0.85rem;
  }

  .hero-description {
    font-size: 0.97rem;
    line-height: 1.72;
    max-width: 36ch;
    margin-top: 0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.7rem;
    margin-top: 1.5rem;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 54px;
    font-size: 1rem;
    justify-content: center;
    border-radius: var(--radius-full);
  }

  .hero-meta {
    grid-template-columns: 1fr;
    gap: 0.6rem;
    margin-top: 1.6rem;
  }

  .hero-meta div {
    padding: 1rem 1.1rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
  }

  .hero-meta strong {
    margin-bottom: 0;
    font-size: 0.95rem;
  }

  .hero-meta span,
  .hero-meta p {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .section {
    padding: 2.5rem 0;
  }

  .section + .section {
    border-top-width: 1px;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 1.4rem;
  }

  .section-head h2 {
    max-width: 100%;
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .section-head p {
    max-width: 100%;
    font-size: 0.95rem;
  }

  .card {
    padding: 1.25rem 1.1rem;
    border-radius: 1.1rem;
  }

  .card h3 {
    font-size: 1.1rem;
  }

  .gallery-filter {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0.5rem;
    padding-bottom: 0.3rem;
    margin-bottom: 1.2rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .gallery-filter::-webkit-scrollbar {
    display: none;
  }

  .gallery-chip {
    flex: 0 0 auto;
    padding: 0.6rem 1rem;
    font-size: 0.82rem;
    min-height: 40px;
    white-space: nowrap;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .gallery-card {
    height: auto;
    aspect-ratio: 4 / 3.4;
    border-radius: 1.1rem;
  }

  .gallery-overlay {
    left: 0.9rem;
    right: 0.9rem;
    bottom: 0.9rem;
  }

  .gallery-overlay h3 {
    font-size: 1.2rem;
    line-height: 1.05;
    margin-bottom: 0.2rem;
  }

  .gallery-overlay p {
    font-size: 0.84rem;
    line-height: 1.4;
    max-width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .gallery-tag {
    font-size: 0.7rem;
    padding: 0.38rem 0.65rem;
    margin-bottom: 0.6rem;
  }

  .gallery-price {
    font-size: 0.78rem;
    margin-top: 0.6rem;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .step-card {
    padding: 1.25rem 1.1rem;
  }

  .step-card h3 {
    font-size: 1.05rem;
  }

  .step-no {
    width: 42px;
    height: 42px;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
  }

  .step-card p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .contact-title {
    font-size: clamp(1.6rem, 6vw, 2rem);
    max-width: 100%;
  }

  form {
    padding: 1.1rem;
    border-radius: 1.25rem;
    gap: 0.9rem;
  }

  .field {
    gap: 0.4rem;
  }

  label {
    font-size: 0.875rem;
    font-weight: 600;
  }

  input,
  textarea,
  select {
    padding: 0.9rem 1rem;
    border-radius: 0.95rem;
    font-size: 16px;
    border-width: 1.5px;
  }

  textarea {
    min-height: 120px;
  }

  .enquiry-submit {
    width: 100%;
    min-height: 54px;
    font-size: 1rem;
    margin-top: 0.25rem;
  }

  .story {
    gap: var(--space-5);
  }

  .story-panel {
    min-height: 300px;
  }

  .quote {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    padding: 1rem 1.1rem;
  }

  .quote p {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .quote cite {
    font-size: 0.8rem;
  }

  .site-footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-brand-name,
  .footer-wordmark {
    font-size: clamp(2.4rem, 14vw, 4.5rem);
    letter-spacing: -0.05em;
  }

  .footer-brand-line {
    max-width: 100%;
    margin-top: 0.9rem;
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .footer-socials {
    gap: 0.65rem;
    margin-top: 1.4rem;
  }

  .footer-social-link {
    width: 48px;
    height: 48px;
  }

  .footer-social-link svg {
    width: 20px;
    height: 20px;
  }

  .footer-contact-strip {
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.88rem;
    margin-top: 1.5rem;
  }
		  .contact-intro {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .footer-contact-strip span:not(:last-child)::after {
    display: none;
  }

  .footer-bottom-line {
    font-size: 0.8rem;
    margin-top: 1rem;
  }

  .footer-signature-wrap {
    padding-top: 1.5rem;
  }

  .bento .wide {
    min-height: 260px;
  }

  .price {
    font-size: 0.875rem;
    margin-top: 0.75rem;
  }

  .flavour-pills {
    gap: 0.5rem;
    margin-top: 0.9rem;
  }

  .pill {
    padding: 0.45rem 0.75rem;
    font-size: 0.78rem;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    right: 0.85rem;
    bottom: 0.85rem;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }

  .contact-order-section {
    padding: 34px 0;
  }

  .contact-order-section .contact-form-card {
    padding: 12px;
    border-radius: 16px;
  }

  .contact-order-section .contact-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-order-section .field label {
    font-size: 12px;
    line-height: 1.2;
  }

  .contact-order-section input,
  .contact-order-section select,
  .contact-order-section textarea {
    min-height: 40px;
    padding: 8px 10px;
    font-size: 13px;
    border-radius: 10px;
  }

  .contact-order-section textarea {
    min-height: 68px;
  }

  .contact-order-section .enquiry-submit {
    min-height: 46px;
    font-size: 14px;
  }
}

body.menu-open {
  overflow: hidden;
}