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

/* ══════════════════════════════════════
   CUSTOM FONTS
   ══════════════════════════════════════ */
@font-face {
  font-family: 'Brioche';
  src: url('fonts/Brioche.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ══════════════════════════════════════
   DESIGN TOKENS
   Fonts:   Oswald (headings), Inter (body)
   Sizes:   .7rem (micro), .8rem (small), .9rem (body), 1rem (large body)
            + clamp() for responsive headings
   Colours: #111 (text), #555 (secondary), #999 (muted), #ccc (faint)
            #eee (border), #fff (bg), #3141A3 (accent), #1e2d7a (accent-dark)
   ══════════════════════════════════════ */

html {
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  color: #111;
  background: #fff;
  overflow-x: hidden;
}

/* Scroll snap on the page container */
#page {
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  overflow-y: auto;
  height: 100vh;
}

.section {
  width: 100%;
  position: relative;
  scroll-snap-align: start;
  min-height: 100vh;
}

/* ══════════════════════════════════════
   NAV — Sticky top bar (right-aligned, over content only)
   ══════════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 45%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 2.5rem;
  height: 56px;
  background: transparent;
}

.site-nav__logo { display: flex; align-items: center; text-decoration: none; }
.site-nav__logo-img { height: 34px; width: auto; }

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav__link {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #555;
  text-decoration: none;
  position: relative;
  transition: color .2s;
}

.site-nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: #3141A3;
  transition: width .3s ease;
}

.site-nav__link:hover { color: #3141A3; }
.site-nav__link:hover::after { width: 100%; }
.site-nav__link--active { color: #3141A3; }
.site-nav__link--active::after { width: 100%; }

/* Burger menu — hidden on desktop */
.site-nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.site-nav__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #333;
  border-radius: 1px;
  transition: all .3s;
}

/* Burger open state */
.site-nav__burger--open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.site-nav__burger--open span:nth-child(2) { opacity: 0; }
.site-nav__burger--open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ══════════════════════════════════════
   HERO
   ══════════════════════════════════════ */
#hero {
  display: grid;
  grid-template-columns: 50% 50%;
  min-height: 100vh;
}

.hero-image { position: relative; overflow: hidden; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3.5rem;
  background: #fff;
  position: relative;
}

.hero-logo { 
  display: none;
}
.hero-title-wrap { position: relative; display: inline-block; }

.hero__subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: .4rem;
}

.hero__title {
  font-family: 'Brioche', 'Inter', sans-serif;
  font-weight: normal;
  font-size: clamp(2.5rem, 4.5vw, 5rem);
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1;
  color: #3141A3;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 2;
}

.hero__text {
  font-weight: 300;
  font-size: .9rem;
  line-height: 1.8;
  color: #555;
  max-width: 400px;
  margin-bottom: 2rem;
}

.hero__cta {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #3141A3;
  text-decoration: none;
  border-bottom: 1px solid #3141A3;
  padding-bottom: .2rem;
  transition: color .2s, gap .2s;
  width: fit-content;
  margin-top: 1.5rem;
}

.hero__cta:hover { color: #1e2d7a; gap: 1rem; }
.hero__cta svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 2; }

/* ══════════════════════════════════════
   SHARED TYPOGRAPHY
   ══════════════════════════════════════ */
.section__label {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #999;
}

.cake__label {
  font-family: 'Brioche', 'Inter', sans-serif;
  font-weight: normal;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1;
  color: #3141A3;
}

.cake__sub {
  font-weight: 300;
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #999;
  margin-top: .5rem;
}

/* ══════════════════════════════════════
   CENTERED SECTIONS
   ══════════════════════════════════════ */
.section-centered {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 2rem 3rem;
  text-align: center;
}

.section-centered .section__label { margin-bottom: .5rem; }
.section-centered .cake__label { margin-bottom: 1rem; }
.section-centered .hero__cta { margin: 1.5rem auto 0; }

.section-centered .order-form,
.section-centered .order-form__label,
.section-centered .pricing-table,
.section-centered .pricing__heading,
.section-centered .pricing__desc,
.section-centered .pricing-storage-note { text-align: left; }

/* ══════════════════════════════════════
   CAKES / PRICING
   ══════════════════════════════════════ */
#orders { padding-top: 5rem; }
#cakes { background: #fff; padding: 0; }

/* Cakes — split layout (image left, content right) */
.cakes-split {
  display: flex;
  width: 100%;
  min-height: inherit;
}

.cakes-split__image {
  flex: 0 0 50%;
  background-size: cover;
  background-position: center;
}

.cakes-split__content {
  flex: 1;
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}

.pricing__heading {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #555;
  margin-top: 1.5rem;
  margin-bottom: .5rem;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: .25rem;
  text-align: left;
}

.pricing-table thead th {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #555;
  padding: .35rem 0;
  border-bottom: 1px solid #eee;
}

.pricing-table tbody td {
  padding: .65rem 0;
  font-size: .9rem;
  font-weight: 300;
  color: #555;
  border-bottom: 1px solid #eee;
}

.pricing-table tbody tr:last-child td { border-bottom: 1px solid #eee; }

.pricing-table__size {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: .9rem;
  letter-spacing: .02em;
  color: #333;
}

.pricing-table__price {
  text-align: right;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  color: #333;
}

.pricing__desc,
.pricing-storage-note p,
.pricing-descriptions p {
  font-size: .9rem;
  font-weight: 300;
  line-height: 1.8;
  color: #555;
  margin-bottom: .75rem;
}

.pricing-storage-note { margin-top: 1rem; padding-top: .75rem; }
.pricing-desc__label { font-weight: 500; color: #111; }

/* ══════════════════════════════════════
   FIXED LOGO — bottom right corner
   ══════════════════════════════════════ */
.fixed-logo {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  height: 200px;
  width: auto;
  opacity: 1;
  pointer-events: none;
  z-index: 100;
  transition: opacity .3s;
}

/* ══════════════════════════════════════
   LOGO DIVIDER
   ══════════════════════════════════════ */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1.5rem 0 1rem;
}

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  max-width: 160px;
  height: 1px;
  background: #eee;
}

.section-divider img {
  height: 190px;
  width: auto;
}

/* Inline variant — used inside split layout content columns */
.section-divider--inline {
  margin-top: auto;
  padding: 2rem 0 0;
}

.section-divider--inline::before,
.section-divider--inline::after {
  max-width: 100px;
}

/* ══════════════════════════════════════
   CUSTOM CAKES — split layout
   ══════════════════════════════════════ */
.custom-cakes-split {
  display: flex;
  width: 100%;
  min-height: inherit;
}

.custom-cakes-split__image {
  flex: 0 0 50%;
  background-size: cover;
  background-position: center;
}

.custom-cakes-split__content {
  flex: 1;
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  background: #fff;
}

.custom-cakes__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.custom-cakes__text p {
  font-weight: 300;
  font-size: .9rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: .75rem;
}

.custom-cakes__link {
  color: #3141A3;
  text-decoration: underline;
  transition: color .2s;
}

.custom-cakes__link:hover { color: #1e2d7a; }

/* ══════════════════════════════════════
   ABOUT — split layout
   ══════════════════════════════════════ */
.about-split {
  display: flex;
  width: 100%;
  min-height: inherit;
}

.about-split__image {
  flex: 0 0 50%;
  background-size: cover;
  background-position: center;
}

.about-split__content {
  flex: 1;
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}

.about-split__title {
  font-family: 'Brioche', 'Inter', sans-serif;
  font-weight: normal;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  text-transform: uppercase;
  letter-spacing: .02em;
  color: #3141A3;
  margin-bottom: .25rem;
  line-height: 1;
}

.about-split__subtitle {
  font-weight: 300;
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 1.75rem;
}

.about-bio { margin: 0 0 1.5rem; }

.about-bio p {
  font-weight: 300;
  font-size: .9rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: .65rem;
}

.about-bio p:first-child {
  font-weight: 400;
  font-size: 1rem;
  color: #111;
}

.about-split__footer {
  margin-top: auto;
  padding-top: 2.5rem;
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #ccc;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.about-split__footer a {
  color: #ccc;
  text-decoration: underline;
}

/* ── About Contact Form ── */
.about-contact {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
}

.about-contact__title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 1rem;
}

.about-contact__form {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.about-contact__input,
.about-contact__textarea {
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  font-weight: 300;
  padding: .7rem .9rem;
  border: 1px solid #eee;
  outline: none;
  color: #111;
  transition: border-color .2s;
}

.about-contact__input:focus,
.about-contact__textarea:focus { border-color: #3141A3; }

.about-contact__textarea { resize: vertical; min-height: 70px; }

.about-contact__btn {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  background: #3141A3;
  border: 1px solid #3141A3;
  padding: .75rem 2rem;
  cursor: pointer;
  transition: all .2s;
  align-self: flex-start;
}

.about-contact__btn:hover { background: #fff; color: #3141A3; }
.about-contact__btn:disabled { opacity: .5; cursor: not-allowed; }

.about-contact__submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.about-contact__recaptcha-note {
  font-size: .7rem;
  color: #999;
  text-align: right;
}

.about-contact__recaptcha-note a { color: #999; text-decoration: underline; }

.about-contact__feedback { font-size: .8rem; margin-top: .5rem; }
.about-contact__feedback--success { color: #2d6a4f; }
.about-contact__feedback--error { color: #c62828; }

.about-contact__or {
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #999;
  margin: 1.5rem 0 1rem;
}

.about-contact__icons {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.about-contact__icons--row {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.about-contact__icons-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .75rem;
}

.about-contact__icon-link {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  color: #555;
  transition: color .2s;
}

.about-contact__icon-link:hover { color: #3141A3; }
.about-contact__icon-link:hover .contact-icons__link { border-color: #3141A3; color: #3141A3; }

.about-contact__icon-label { font-size: .8rem; font-weight: 300; }

/* Hide reCAPTCHA badge */
.grecaptcha-badge { visibility: hidden !important; }

/* ── Contact icons ── */
.contact-icons {
  display: flex;
  justify-content: flex-start;
  gap: .9rem;
  margin: 1.25rem 0;
}

.contact-icons__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border: 1px solid #eee;
  border-radius: 50%;
  color: #555;
  transition: all .25s;
  text-decoration: none;
}

.contact-icons__link:hover {
  border-color: #3141A3;
  color: #3141A3;
  transform: translateY(-2px);
}

.contact-icons__svg { width: 19px; height: 19px; }

.contact-icons__link img.contact-icons__svg { filter: none; opacity: .55; transition: opacity .25s; }
.contact-icons__link:hover img.contact-icons__svg { opacity: 1; }

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 1024px) {
  .site-nav { padding: 0 1.5rem; }
  .site-nav { width: 100%; background: #fff; justify-content: center; left: 0; right: 0; }
  .site-nav__links { gap: 1.5rem; }
  #page { margin-top: 56px; height: calc(100vh - 56px); }
  .section { min-height: calc(100vh - 56px); }
  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-image { height: 55vw; }
  .hero-content { padding: 2.5rem 2rem; }
  #orders, #group3 { padding: 2.5rem 2rem; }
  #cakes { padding: 0; }
  .cakes-split { flex-direction: column; }
  .cakes-split__image { height: 55vw; flex: 0 0 auto; }
  .cakes-split__content { padding: 2.5rem 2rem; }
}

@media (max-width: 767px) {
  .site-nav { padding: 0 1.25rem; }
  #orders, #group3 { padding: 2.5rem 1.25rem; }
  #cakes { padding: 0; }
  .hero-image { height: 65vw; }
  .hero-content { padding: 2rem 1.25rem; }
  .about-split { flex-direction: column; }
  .about-split__image { height: 55vw; flex: 0 0 auto; margin: 1.25rem; }
  .about-split__content { padding: 2.5rem 1.5rem; }
  .custom-cakes-split { flex-direction: column; }
  .custom-cakes-split__image { height: 55vw; flex: 0 0 auto; margin: 1.25rem; }
  .custom-cakes-split__content { padding: 2.5rem 1.5rem; }
  .cakes-split { flex-direction: column; }
  .cakes-split__image { height: 55vw; flex: 0 0 auto; }
  .cakes-split__content { padding: 2.5rem 1.5rem; }
  .about-contact__icons--row { flex-direction: column; align-items: center; }
}
