:root {
  --ballet-blush: #E8A0A8;
  --buttercream: #FFF5EE;
  --vanilla-cream: #F7EDE4;
  --cocoa-brown: #4A2F2A;
  --warm-gold: #D6A85C;
  --soft-white: #FFFCF8;
  --shadow: 0 18px 50px rgba(74, 47, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--buttercream);
  color: var(--cocoa-brown);
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid rgba(214, 168, 92, 0.35);
  background: rgba(255, 245, 238, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  display: grid;
  gap: 0;
  min-width: max-content;
  line-height: 1;
}

.brand-name,
.footer-brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.brand-name {
  font-size: clamp(18px, 2.4vw, 28px);
}

.brand-script,
.footer-brand span {
  color: var(--ballet-blush);
  font-family: "Allura", cursive;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.nav-links,
.footer-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(74, 47, 42, 0.72);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a[aria-current="page"],
.footer-links a:hover,
.text-link:hover {
  color: var(--ballet-blush);
}

.nav-links a[aria-current="page"] {
  position: relative;
}

.nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: var(--warm-gold);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 22px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(74, 47, 42, 0.14);
}

.button-primary {
  background: var(--ballet-blush);
  color: var(--cocoa-brown);
}

.button-secondary {
  border-color: rgba(214, 168, 92, 0.7);
  background: rgba(255, 252, 248, 0.65);
  color: var(--cocoa-brown);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(56px, 8vw, 108px) clamp(18px, 4vw, 54px) 72px;
}

.hero-copy,
.section-copy {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--ballet-blush);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--cocoa-brown);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 1.05;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(48px, 8vw, 92px);
}

h2 {
  margin: 0;
  font-size: clamp(34px, 5.2vw, 62px);
}

h3 {
  margin: 0;
  font-size: 28px;
}

.lead {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(74, 47, 42, 0.76);
  font-size: clamp(18px, 2vw, 21px);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.image-placeholder {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(214, 168, 92, 0.45);
  border-radius: 34px;
  background:
    radial-gradient(circle at 28% 25%, rgba(232, 160, 168, 0.42), transparent 30%),
    radial-gradient(circle at 74% 66%, rgba(214, 168, 92, 0.32), transparent 28%),
    linear-gradient(135deg, #fffaf6, #f0d8d5 48%, #f7ede4);
  box-shadow: var(--shadow);
}

.image-placeholder::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
}

.image-placeholder::after {
  content: "";
  position: absolute;
  width: 58%;
  height: 28%;
  right: -12%;
  bottom: 10%;
  border-radius: 50%;
  background: rgba(255, 245, 238, 0.44);
  transform: rotate(-18deg);
}

.placeholder-kicker,
.gallery-tile span {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 1;
  color: rgba(74, 47, 42, 0.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-visual {
  min-height: clamp(440px, 58vw, 680px);
}

.cake-stage {
  border-radius: 42px;
}

.photo-frame,
.photo-tile {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(214, 168, 92, 0.45);
  background: var(--soft-white);
  box-shadow: var(--shadow);
}

.photo-frame img,
.photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 54%, rgba(74, 47, 42, 0.16));
  pointer-events: none;
}

.hero-visual img {
  object-position: center center;
}

.studio-moment img {
  object-position: center center;
}

.statement-section,
.about-preview,
.seasonal-feature,
.final-cta,
.section {
  padding: 82px clamp(18px, 4vw, 54px);
}

.page-hero {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 4vw, 54px);
  background:
    linear-gradient(135deg, rgba(255, 245, 238, 0.88), rgba(247, 237, 228, 0.96)),
    radial-gradient(circle at 16% 12%, rgba(232, 160, 168, 0.24), transparent 30%);
}

.page-hero h1 {
  max-width: 920px;
  font-size: clamp(44px, 7vw, 84px);
}

.split-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
}

.about-portrait,
.order-photo {
  min-height: clamp(400px, 46vw, 620px);
  border-radius: 34px;
}

.statement-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  background: var(--vanilla-cream);
}

.section-image {
  min-height: 480px;
  border-radius: 34px;
}

.gold-rule {
  width: 92px;
  height: 2px;
  margin: 24px 0;
  background: var(--warm-gold);
}

.section-copy p,
.about-preview p,
.seasonal-feature p,
.final-cta p {
  color: rgba(74, 47, 42, 0.75);
  font-size: 18px;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 46px;
  text-align: center;
}

.card-grid,
.testimonial-grid,
.steps-grid {
  display: grid;
  gap: 18px;
}

.card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bake-card,
.testimonial-grid figure,
.steps-grid article {
  min-height: 100%;
  margin: 0;
  border: 1px solid rgba(214, 168, 92, 0.34);
  border-radius: 28px;
  background: rgba(255, 252, 248, 0.72);
  box-shadow: 0 10px 28px rgba(74, 47, 42, 0.07);
}

.bake-card {
  padding: 28px;
}

.bake-card p,
.steps-grid p,
.testimonial-grid blockquote {
  color: rgba(74, 47, 42, 0.72);
}

.card-icon,
.steps-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: rgba(232, 160, 168, 0.22);
  color: var(--cocoa-brown);
  font-size: 13px;
  font-weight: 800;
}

.gallery-section {
  background: linear-gradient(180deg, var(--buttercream), var(--vanilla-cream));
}

.full-gallery-section {
  padding-top: 34px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.gallery-tile {
  min-height: 260px;
  border-radius: 28px;
}

.photo-tile {
  background: var(--soft-white);
}

.photo-tile figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  width: fit-content;
  max-width: calc(100% - 36px);
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(255, 245, 238, 0.88);
  color: var(--cocoa-brown);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.photo-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(74, 47, 42, 0.22));
  pointer-events: none;
}

.wedding-tile img {
  object-position: center 62%;
}

.gallery-tile:nth-child(1),
.gallery-tile:nth-child(6) {
  grid-column: span 2;
}

.gallery-tile:nth-child(2),
.gallery-tile:nth-child(3),
.gallery-tile:nth-child(4),
.gallery-tile:nth-child(5) {
  grid-column: span 2;
}

.full-gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.full-gallery-grid .gallery-tile {
  grid-column: span 1;
  min-height: 360px;
}

.full-gallery-grid .gallery-large {
  grid-column: span 2;
  min-height: 460px;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.about-preview {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(24px, 5vw, 78px);
  align-items: start;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--cocoa-brown);
  font-weight: 800;
}

.testimonials {
  background: var(--soft-white);
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-grid figure {
  padding: 30px;
}

.testimonial-grid blockquote {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
  line-height: 1.2;
}

.testimonial-grid figcaption {
  margin-top: 22px;
  color: var(--ballet-blush);
  font-weight: 800;
}

.about-story {
  align-items: start;
}

.values-list {
  display: grid;
  gap: 18px;
}

.values-list article,
.order-card {
  border: 1px solid rgba(214, 168, 92, 0.34);
  border-radius: 28px;
  background: rgba(255, 252, 248, 0.72);
  box-shadow: 0 10px 28px rgba(74, 47, 42, 0.07);
}

.values-list article {
  padding: 28px;
}

.values-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(232, 160, 168, 0.22);
  color: var(--cocoa-brown);
  font-size: 13px;
  font-weight: 800;
}

.values-list p,
.order-card p,
.order-card li {
  color: rgba(74, 47, 42, 0.72);
}

.ordering-section {
  background: var(--vanilla-cream);
}

.steps-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.steps-grid article {
  padding: 26px;
}

.order-details {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 20px;
  align-items: stretch;
}

.order-card {
  padding: clamp(28px, 4vw, 44px);
}

.order-card ul {
  display: grid;
  gap: 10px;
  margin: 26px 0 30px;
  padding-left: 20px;
}

.blush-card {
  background: rgba(232, 160, 168, 0.18);
}

.seasonal-feature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  background: var(--cocoa-brown);
  color: var(--buttercream);
}

.seasonal-feature h2,
.seasonal-feature p {
  color: var(--buttercream);
}

.final-cta {
  display: grid;
  justify-items: center;
  text-align: center;
}

.final-cta p {
  max-width: 760px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(260px, auto);
  gap: 24px;
  padding: 38px clamp(18px, 4vw, 54px);
  border-top: 1px solid rgba(214, 168, 92, 0.35);
  background: var(--buttercream);
}

.footer-brand {
  margin: 0 0 8px;
  font-size: 24px;
}

.allergy-note {
  grid-column: 1 / -1;
  max-width: 860px;
  margin: 0;
  color: rgba(74, 47, 42, 0.62);
  font-size: 13px;
}

@media (max-width: 1000px) {
  .site-header {
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    overflow-x: auto;
  }

  .hero,
  .statement-section,
  .about-preview,
  .split-page-hero,
  .order-details {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .section-image {
    min-height: 420px;
  }

  .card-grid,
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .full-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .full-gallery-grid .gallery-tile,
  .full-gallery-grid .gallery-large {
    grid-column: span 1;
    min-height: 330px;
  }
}

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

  .header-button {
    width: 100%;
  }

  .nav-links {
    justify-content: flex-start;
    gap: 16px;
  }

  .hero,
  .statement-section,
  .about-preview,
  .seasonal-feature,
  .final-cta,
  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero {
    padding-top: 42px;
  }

  .button-row,
  .seasonal-feature {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .card-grid,
  .steps-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

  .gallery-tile,
  .gallery-tile:nth-child(n),
  .full-gallery-grid .gallery-tile,
  .full-gallery-grid .gallery-large {
    grid-column: auto;
  }

  .page-hero h1 {
    font-size: clamp(42px, 14vw, 58px);
  }
}
