: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.3rem, 1.3rem + 3vw, 4.8rem);

  --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: #f8f2ee;
  --color-surface: #fff9f5;
  --color-surface-2: #fffdfb;
  --color-surface-offset: #f1e5dd;
  --color-border: #dccdc3;
  --color-divider: #e7d8cf;
  --color-text: #2e211d;
  --color-text-muted: #7f6c63;
  --color-text-faint: #b39c90;
  --color-text-inverse: #fffaf7;
  --color-primary: #8b4b64;
  --color-primary-hover: #72364f;
  --color-primary-highlight: #eed7df;
  --color-secondary: #c98a4b;

  --shadow-sm: 0 1px 2px rgba(41, 20, 13, 0.08);
  --shadow-md: 0 16px 40px rgba(71, 37, 24, 0.12);
  --shadow-lg: 0 24px 70px rgba(64, 29, 21, 0.18);

  --radius-sm: 0.5rem;
  --radius-md: 0.8rem;
  --radius-lg: 1.25rem;
  --radius-xl: 1.8rem;
  --radius-full: 999px;

  --font-display: 'Zodiak', Georgia, serif;
  --font-body: 'General Sans', Inter, sans-serif;
  --content: 1180px;
}

[data-theme="dark"] {
  --color-bg: #191412;
  --color-surface: #211a17;
  --color-surface-2: #2a221e;
  --color-surface-offset: #312722;
  --color-border: #473a33;
  --color-divider: #3d312c;
  --color-text: #f2e7df;
  --color-text-muted: #c8b5aa;
  --color-text-faint: #8d786c;
  --color-text-inverse: #211714;
  --color-primary: #dd9ab4;
  --color-primary-hover: #f0b7cc;
  --color-primary-highlight: #43323b;
  --color-secondary: #f2bc77;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 16px 40px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 24px 70px rgba(0, 0, 0, 0.45);
}

*,
*::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: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  padding-left: 1rem;
  padding-right: 1rem;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
textarea {
  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);
}

.site-header .container {
  width: 100%;
  max-width: none;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  margin: 0;
}


.section {
  padding: clamp(var(--space-12), 8vw, var(--space-24)) 0;
}

.eyebrow {
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--color-bg) 84%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid color-mix(in srgb, var(--color-border) 70%, transparent);
}


.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 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 .custom-logo-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  line-height: 0;
}
.brand-logo-wrap .custom-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 118px;
  height: 46px;
  flex: 0 0 118px;
  overflow: hidden;
}


.brand-mark {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-name {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
}

.brand-name strong {
  font-size: 1rem;
}

.brand-name span {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}


.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: var(--text-sm);
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.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: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  display: grid;
  place-items: center;
  background: var(--color-surface);
  color: var(--color-text);
}

.menu-toggle {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 48px;
  padding: 0.95rem 1.3rem;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  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: var(--color-primary);
  color: var(--color-text-inverse);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
}

.btn-secondary {
  background: transparent;
  border-color: var(--color-border);
}

.hero {
  padding: clamp(var(--space-12), 8vw, var(--space-20)) 0 var(--space-12);
}

.hero-copy {
  max-width: 1200px;
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.2vw, 4.5rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  max-width: 90%;
  margin: 0.65rem 0 1rem;
}

.hero-description {
  margin-top: 1.25rem;
  max-width: 50ch;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--color-text-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.6rem;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
  max-width: 920px;
}

.hero-meta div {
  padding: 1.1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: color-mix(in srgb, var(--color-surface) 86%, transparent);
}

.hero-meta strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 1rem;
}


.grid-2 {
  display: flex;
  justify-content: space-between;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-6);
}


.card {
  background: var(--color-surface);
  border: 1px solid color-mix(in srgb, var(--color-border) 75%, transparent);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}

.card h3 {
  font-size: var(--text-lg);
  margin: 0.55rem 0;
  font-family: var(--font-display);
}

.card p {
  color: var(--color-text-muted);
}

.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;
}

.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) 44%, 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.55rem 0.85rem;
  border-radius: var(--radius-full);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  font-size: var(--text-xs);
}

.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, #f7dfcf, #fdf7f2 60%, #eed9d7);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.story-panel .swirl {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), 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.72);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.step-no {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--color-primary-highlight);
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-6);
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}

.contact-item {
  padding: 1rem 1.1rem;
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  background: var(--color-surface-2);
}

form {
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

label {
  font-size: var(--text-sm);
  font-weight: 600;
}

input,
textarea,
select {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  border: 1px solid var(--color-border);
  background: var(--color-surface-2);
  color: var(--color-text);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  padding: var(--space-8) 0 var(--space-10);
  border-top: 1px solid var(--color-divider);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

[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 var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
  padding: 0.7rem 1rem;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 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);
}

.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) 75%, transparent);
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 5;
  min-height: 0;
  isolation: isolate;
  height: 400px;
  width: 100%;

}

.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(34, 21, 18, 0.78) 0%,
    rgba(34, 21, 18, 0.34) 42%,
    rgba(34, 21, 18, 0.08) 70%,
    rgba(34, 21, 18, 0.02) 100%
  );
  z-index: 1;
}

.gallery-card:hover img {
  transform: scale(1.04);
}

.gallery-overlay {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  color: #fffaf7;
}

.gallery-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-full);
  background: rgba(255, 250, 247, 0.14);
  border: 1px solid rgba(255, 250, 247, 0.22);
  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.2rem, 1rem + 0.6vw, 1.8rem);
  margin-bottom: 0.35rem;
  line-height: 1.05;
}

.gallery-overlay p {
  color: rgba(255, 250, 247, 0.9);
  font-size: var(--text-sm);
  max-width: 26ch;
}

.gallery-card.is-hidden {
  display: none;
}

@keyframes float {
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

@keyframes drift {
  50% {
    transform: translateY(-12px) scale(1.08);
  }
}
  .footer-row {
    flex-direction: column;
    align-items: center;

  }
  .footer-row span {
    text-align: center;
  }
 

@media (max-width: 980px) {
  .container {
    width: min(calc(100% - 1.5rem), var(--content));
  }

  .hero-grid,
  .grid-2,
  .story,
  .contact-wrap,
  .bento,
  .steps {
    grid-template-columns: 1fr;
  }


  .hero {
    padding: clamp(var(--space-8), 7vw, var(--space-12)) 0 var(--space-12);
  }

  .hero-copy h1 {
    max-width: 50ch;
  }

  .hero-card {
    min-height: 460px;
  }

  .bento .wide {
    grid-row: auto;
    min-height: 280px;
  }

  .nav-links {
    position: fixed;
    top: 74px;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 0.85rem;
    border-radius: 1.1rem;
    background: color-mix(in srgb, var(--color-surface) 96%, transparent);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(14px);
  }

  .nav-links a {
    padding: 0.95rem 1rem;
    min-height: 46px;
    border-radius: 0.85rem;
  }

  .nav-links.open {
    display: flex;
  }

  .menu-toggle {
    display: grid;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-4);
  }

  .gallery-card {
    aspect-ratio: 4 / 5;
  }
}
@media (max-width: 640px) {
 

  .nav {
    padding: 0.75rem 0;
    gap: 0.5rem;
  }

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

body{
  padding-left: 1em;
  
}
.brand-logo-wrap .custom-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
 .site-header .container {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .brand-group {
    gap: 0.5rem;
  }

  .brand-logo-wrap {
    width: 82px;
    height: 34px;
    flex: 0 0 82px;
  }

  .brand-logo-wrap .custom-logo {
    width: 100%;
    height: 100%;
    max-width: 82px;
    max-height: 34px;
  }

  .brand-mark {
    width: 100%;
    height: 100%;
  }

  .brand-name strong {
    font-size: 0.9rem;
  }

  .brand-name span {
    font-size: 0.6rem;
    letter-spacing: 0.12em;
  }
  .actions {
    gap: 0.5rem;
  }

  .theme-toggle,
  .menu-toggle {
    width: 46px;
    height: 46px;
  }

  .actions .btn-primary {
    display: none;
  }

  .hero {
    padding-top: 1rem;
    padding-bottom: 2rem;
    
  }

  .hero-grid {
    gap: 1.5rem;
  }

  .hero-copy {
    max-width: 100%;
  }

  .eyebrow {
    font-size: 0.76rem;
    letter-spacing: 0.22em;
    line-height: 1.4;
    margin-bottom: 0.9rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.15rem, 8.5vw, 3rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
    max-width: 14ch;
    margin: 0 0 0.9rem;
    text-wrap: balance;
  }

  .hero-description,
  .hero-copy p {
    max-width: 30ch;
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-top: 0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    margin-top: 1.25rem;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 52px;
    padding: 0.9rem 1rem;
  }
  .hero-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    margin-top: 1rem;
  }

  .hero-meta div {
    padding: 0.85rem 0.95rem;
    border-radius: 0.95rem;
  }

  .hero-meta strong {
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
  }

  .hero-meta p,
  .hero-meta span {
    font-size: 0.84rem;
    line-height: 1.4;
  }
  #hero-meta-3rd {
    display: none;
  }

  .hero-card {
    min-height: 320px;
    border-radius: 1.4rem;
  }

  .floating-note {
    display: none;
  }

  .cake-stage {
    padding: var(--space-4);
  }

  .cake {
    width: min(68vw, 220px);
    height: 220px;
  }

  .plate {
    width: min(76%, 240px);
    height: 40px;
    bottom: 1.6rem;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
    gap: 0.8rem;
  }

  .section {
    padding: var(--space-10) 0;
  }

  .card {
    padding: 1.15rem;
  }

  .gallery-filter {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.35rem;
    margin-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .gallery-filter::-webkit-scrollbar {
    display: none;
  }

  .gallery-chip {
    flex: 0 0 auto;
    padding: 0.62rem 0.95rem;
    font-size: var(--text-xs);
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .gallery-card {
    aspect-ratio: 4 / 4.2;
    border-radius: var(--radius-lg);
  }

  .gallery-overlay {
    left: 0.85rem;
    right: 0.85rem;
    bottom: 0.85rem;
  }

  .gallery-overlay h3 {
    font-size: 1.15rem;
    line-height: 1;
    margin-bottom: 0.25rem;
  }

  .gallery-overlay p {
    font-size: 0.85rem;
    line-height: 1.35;
    max-width: 24ch;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .footer-row {
    flex-direction: column;
    align-items: center;

  }
  .footer-row span {
    text-align: center;
  }
  .footer-text{
    display: grid;
  }
}

@media (max-width: 420px) {
  .gallery-card {
    aspect-ratio: 4 / 4;
  }

  .gallery-overlay h3 {
    font-size: 1rem;
  }

  .gallery-overlay p {
    font-size: 0.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}


