:root {
  --ink: #241f27;
  --muted: #746572;
  --soft: #fff8fb;
  --soft-2: #fff0f6;
  --pink: #f4a9c9;
  --pink-deep: #df6fa1;
  --blue: #cdeeff;
  --gold: #e8c45d;
  --cream: #fffdf7;
  --line: rgba(36, 31, 39, 0.11);
  --shadow: 0 24px 70px rgba(88, 49, 74, 0.14);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(244, 169, 201, 0.38), transparent 35rem),
    radial-gradient(circle at 92% 8%, rgba(232, 196, 93, 0.25), transparent 28rem),
    linear-gradient(180deg, #fff8fb 0%, #fffdf7 48%, #fff6fa 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  transform: translateY(-160%);
  z-index: 100;
  background: var(--ink);
  color: white;
  padding: 0.85rem 1rem;
  border-radius: 999px;
}

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

.site-shell {
  position: relative;
  isolation: isolate;
}

.site-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background-image: url("assets/soft-sparkle-background.png");
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}

.section-pad {
  width: min(var(--container), calc(100% - 2rem));
  margin-inline: auto;
  padding: 6rem 0;
}

.site-header {
  position: sticky;
  top: 0.8rem;
  z-index: 50;
  width: min(var(--container), calc(100% - 2rem));
  margin: 0.8rem auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(22px);
  box-shadow: 0 18px 50px rgba(80, 49, 69, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 150px;
}

.brand img {
  width: 178px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.site-nav a {
  color: rgba(36, 31, 39, 0.76);
  font-size: 0.94rem;
  font-weight: 750;
  padding: 0.78rem 1rem;
  border-radius: 999px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  background: rgba(244, 169, 201, 0.18);
}

.site-nav .nav-cta {
  color: white;
  background: var(--ink);
  box-shadow: 0 10px 22px rgba(36, 31, 39, 0.18);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: white;
  background: #111;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  place-items: center;
  cursor: pointer;
}

.nav-toggle span {
  width: 19px;
  height: 2px;
  background: currentColor;
  display: block;
  margin: 4px 0;
  transition: transform 180ms ease, opacity 180ms ease;
}

body.nav-open .nav-toggle span:first-child {
  transform: translateY(3px) rotate(45deg);
}

body.nav-open .nav-toggle span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.hero {
  min-height: calc(100vh - 6rem);
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.97fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  position: relative;
  padding-top: 5rem;
}

.sparkle-field::before,
.sparkle-field::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  z-index: -1;
}

.sparkle-field::before {
  width: 30rem;
  height: 30rem;
  left: -10rem;
  top: 5rem;
  background: rgba(244, 169, 201, 0.42);
}

.sparkle-field::after {
  width: 24rem;
  height: 24rem;
  right: -7rem;
  top: 8rem;
  background: rgba(205, 238, 255, 0.62);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--pink-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

h1 {
  max-width: 760px;
  margin-bottom: 1.35rem;
  font-size: clamp(3.25rem, 8vw, 7.6rem);
}

h2 {
  font-size: clamp(2.4rem, 5.3vw, 5rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.24rem;
  margin-bottom: 0.55rem;
  letter-spacing: -0.02em;
}

.hero-lede,
.intro-card p,
.enquiry-copy p,
.facebook-proof p {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 2rem 0 2.2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.3rem;
  padding: 0.95rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: white;
  background: var(--ink);
  box-shadow: 0 18px 45px rgba(36, 31, 39, 0.2);
}

.button-soft {
  color: var(--ink);
  background: white;
  border-color: rgba(223, 111, 161, 0.35);
}

.button-dark {
  color: white;
  background: var(--ink);
  white-space: nowrap;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 720px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 45px rgba(80, 49, 69, 0.08);
}

.trust-strip div {
  padding: 1.15rem;
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong {
  display: block;
  font-size: 1.25rem;
  line-height: 1.1;
}

.trust-strip span {
  display: block;
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.4;
}

.hero-visual {
  position: relative;
  min-height: 680px;
}

.photo-stack {
  position: relative;
  height: 680px;
}

.photo-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.8);
  border-radius: 34px;
  background: white;
  box-shadow: var(--shadow);
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-card figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  color: white;
  background: rgba(36, 31, 39, 0.68);
  backdrop-filter: blur(16px);
  font-size: 0.88rem;
  font-weight: 850;
  text-align: center;
}

.main-card {
  top: 0;
  right: 0;
  width: min(88%, 520px);
  height: 360px;
  transform: rotate(2deg);
}

.bow-card {
  left: 0;
  bottom: 5rem;
  width: 52%;
  height: 255px;
  transform: rotate(-4deg);
}

.ruffle-card {
  right: 1rem;
  bottom: 0;
  width: 58%;
  height: 320px;
  transform: rotate(4deg);
}

.floating-proof {
  position: absolute;
  left: 2rem;
  top: 25rem;
  width: min(350px, 70%);
  padding: 1.05rem 1.1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  border: 1px solid rgba(244, 169, 201, 0.35);
  border-radius: 22px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  font-weight: 800;
  line-height: 1.45;
}

.proof-dot {
  width: 0.75rem;
  height: 0.75rem;
  margin-top: 0.28rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--pink-deep);
  box-shadow: 0 0 0 7px rgba(223, 111, 161, 0.12);
}

.intro-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 1.2rem;
  align-items: stretch;
}

.intro-card,
.mini-values,
.proof-card,
.enquiry-copy,
.enquiry-form {
  border: 1px solid rgba(244, 169, 201, 0.28);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.intro-card {
  padding: clamp(1.5rem, 4vw, 3rem);
}

.mini-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
}

.mini-values div {
  padding: 1.5rem;
  border-right: 1px solid var(--line);
}

.mini-values div:last-child {
  border-right: 0;
}

.mini-values span,
.steps span {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--soft-2);
  color: var(--pink-deep);
  font-weight: 950;
}

.mini-values p,
.product-card p,
.steps p {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 2rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.product-card {
  overflow: hidden;
  min-height: 100%;
  border: 1px solid rgba(244, 169, 201, 0.24);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 45px rgba(80, 49, 69, 0.09);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 65px rgba(80, 49, 69, 0.14);
}

.product-card img {
  aspect-ratio: 1;
  width: 100%;
  object-fit: cover;
}

.product-card div {
  padding: 1.25rem;
}

.occasion-band {
  width: min(var(--container), calc(100% - 2rem));
  margin: 2rem auto;
  padding: clamp(1.4rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.62), transparent 26rem),
    linear-gradient(135deg, rgba(244, 169, 201, 0.88), rgba(205, 238, 255, 0.86));
  box-shadow: var(--shadow);
}

.occasion-band h2 {
  max-width: 900px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4rem);
}

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

.steps article {
  padding: 1.5rem;
  border: 1px solid rgba(244, 169, 201, 0.26);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 45px rgba(80, 49, 69, 0.08);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 240px;
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 10px solid rgba(255, 255, 255, 0.72);
  border-radius: 30px;
  box-shadow: 0 18px 45px rgba(80, 49, 69, 0.1);
}

.gallery-grid .wide {
  grid-column: span 2;
  grid-row: span 2;
}

.proof-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 2rem;
  align-items: center;
  padding: clamp(1.3rem, 4vw, 3rem);
}

.proof-card img {
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(80, 49, 69, 0.12);
}

.enquiry {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(380px, 1.15fr);
  gap: 1.2rem;
  align-items: start;
}

.enquiry-copy {
  padding: clamp(1.4rem, 4vw, 3rem);
  position: sticky;
  top: 7rem;
}

.contact-note {
  margin-top: 1.5rem;
  padding: 1rem;
  border: 1px solid rgba(223, 111, 161, 0.25);
  border-radius: 18px;
  color: var(--muted);
  background: var(--soft-2);
  line-height: 1.6;
}

.enquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: clamp(1.2rem, 3vw, 2rem);
}

.enquiry-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--ink);
  font-weight: 850;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(36, 31, 39, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  padding: 0.95rem 1rem;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.enquiry-form textarea {
  resize: vertical;
  min-height: 142px;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  border-color: var(--pink-deep);
  box-shadow: 0 0 0 4px rgba(244, 169, 201, 0.18);
}

.full-span {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.form-status.success {
  color: #277046;
}

.form-status.error {
  color: #9d2e52;
}

.site-footer {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto 1rem;
  padding: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem;
  border: 1px solid rgba(244, 169, 201, 0.22);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.75);
}

.site-footer img {
  width: 170px;
  margin-bottom: 0.6rem;
}

.site-footer p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.footer-links a {
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 850;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--ink);
  background: var(--soft-2);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1050px) {
  .hero,
  .intro-panel,
  .enquiry,
  .proof-card {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 610px;
  }

  .photo-stack {
    height: 610px;
  }

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

  .enquiry-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  .section-pad {
    padding: 4.5rem 0;
  }

  .site-header {
    top: 0.5rem;
    border-radius: 28px;
  }

  .brand img {
    width: 148px;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    inset: 5.5rem 1rem auto 1rem;
    display: grid;
    gap: 0.5rem;
    padding: 0.85rem;
    border: 1px solid rgba(244, 169, 201, 0.25);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  body.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    width: 100%;
    text-align: center;
  }

  .hero {
    min-height: unset;
    padding-top: 3.5rem;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  h2 {
    font-size: clamp(2.3rem, 12vw, 3.7rem);
  }

  .trust-strip,
  .mini-values,
  .steps,
  .enquiry-form {
    grid-template-columns: 1fr;
  }

  .trust-strip div,
  .mini-values div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip div:last-child,
  .mini-values div:last-child {
    border-bottom: 0;
  }

  .hero-visual,
  .photo-stack {
    min-height: unset;
    height: auto;
  }

  .photo-stack {
    display: grid;
    gap: 1rem;
  }

  .photo-card,
  .main-card,
  .bow-card,
  .ruffle-card {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    transform: none;
  }

  .floating-proof {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    margin-top: 1rem;
  }

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

  .gallery-grid {
    grid-auto-rows: auto;
  }

  .gallery-grid img,
  .gallery-grid .wide {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

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

  .occasion-band .button {
    width: 100%;
  }
}

@media (max-width: 460px) {
  .hero-actions .button {
    width: 100%;
  }

  .photo-card {
    border-width: 7px;
    border-radius: 24px;
  }
}
