:root {
  --wedding-red: #c5a059;
  --wedding-red-dark: #8f6f2f;
  --wedding-gold: #c5a059;
  --wedding-cream: #faf9f6;
  --wedding-ink: #1a1a1a;
  --wedding-muted: rgba(26, 26, 26, 0.66);
  --white: #ffffff;
  --line: rgba(197, 160, 89, 0.28);
  --soft-line: rgba(26, 26, 26, 0.1);
  --shadow: 0 28px 80px rgba(26, 26, 26, 0.14);
  --font-sans: Inter, Arial, sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;
  --ink: var(--wedding-ink);
  --muted: var(--wedding-muted);
  --paper: var(--wedding-cream);
  --linen: #f2ead8;
  --petal: #f3d5d8;
  --rose: var(--wedding-red);
  --rose-deep: var(--wedding-red-dark);
  --sage: #657764;
  --gold: var(--wedding-gold);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--wedding-ink);
  background: var(--wedding-cream);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

[hidden] {
  display: none !important;
}

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

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

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

h1,
h2,
h3 {
  font-family: var(--font-serif);
  letter-spacing: 0;
}

h1 {
  margin-bottom: 28px;
  color: var(--wedding-ink);
  font-size: clamp(3.9rem, 8vw, 8.8rem);
  font-weight: 700;
  line-height: 0.86;
}

h1 span,
h2 span {
  display: block;
  color: var(--wedding-gold);
  font-style: italic;
  font-weight: 400;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.7rem, 5.6vw, 6rem);
  font-weight: 600;
  line-height: 0.95;
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  font-weight: 600;
  line-height: 1.02;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--wedding-gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border: 1px solid var(--wedding-red);
  background: transparent;
  color: var(--wedding-red);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(197, 160, 89, 0.22);
}

.button.primary,
.primary {
  border-color: var(--wedding-red);
  background: var(--wedding-red);
  color: var(--white);
}

.button.ghost,
.ghost {
  border-color: rgba(197, 160, 89, 0.7);
  color: var(--wedding-gold);
  backdrop-filter: blur(14px);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-height: 82px;
  padding: 16px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(197, 160, 89, 0.16);
  background: rgba(250, 249, 246, 0.82);
  box-shadow: 0 18px 60px rgba(26, 26, 26, 0.04);
  backdrop-filter: blur(14px);
  transition: min-height 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  min-height: 70px;
  border-bottom: 1px solid var(--line);
  background: rgba(250, 249, 246, 0.92);
  box-shadow: 0 18px 60px rgba(26, 26, 26, 0.06);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  min-width: 152px;
}

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

.brand span {
  margin-left: 2px;
  color: var(--wedding-gold);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 2.3vw, 34px);
}

.main-nav a {
  color: rgba(26, 26, 26, 0.78);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.main-nav a:hover {
  color: var(--wedding-red);
}

.main-nav .nav-cta {
  min-height: 38px;
  padding: 12px 18px;
  border: 1px solid rgba(197, 160, 89, 0.8);
  color: var(--wedding-gold);
}

.main-nav .nav-cta:hover {
  border-color: var(--wedding-gold);
  background: var(--wedding-gold);
  color: var(--white);
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 11px 18px;
  border: 1px solid var(--wedding-gold);
  color: var(--wedding-gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-action:hover {
  background: var(--wedding-gold);
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--wedding-ink);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 92vh;
  min-height: 92svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 132px clamp(20px, 5vw, 72px) 76px;
  text-align: center;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(26, 26, 26, 0.22), rgba(26, 26, 26, 0.48) 52%, rgba(250, 249, 246, 0.92)),
    radial-gradient(circle at center, rgba(197, 160, 89, 0.18), rgba(26, 26, 26, 0.34));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
}

.hero-content .eyebrow {
  display: inline-block;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(26, 26, 26, 0.24);
  color: var(--wedding-gold);
  backdrop-filter: blur(10px);
}

.hero-content p:not(.eyebrow) {
  max-width: 560px;
  margin: 0 auto 36px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.92rem, 1.4vw, 1rem);
  line-height: 1.75;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--soft-line);
  background: var(--white);
}

.feature-strip div {
  min-height: 122px;
  padding: 28px clamp(18px, 4vw, 48px);
  border-right: 1px solid var(--soft-line);
}

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

.feature-strip strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.02rem;
  font-weight: 800;
}

.feature-strip span {
  color: var(--wedding-muted);
  line-height: 1.6;
}

.section-shell,
.seo-summary,
.clearance,
.story-section,
.faq-section,
.contact-section {
  padding: clamp(64px, 9vw, 118px) clamp(20px, 5vw, 72px);
}

.seo-summary {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
  background: var(--white);
  border-bottom: 1px solid var(--soft-line);
}

.seo-summary h2 {
  font-size: clamp(2.2rem, 4.6vw, 4.8rem);
}

.seo-summary p {
  color: var(--wedding-muted);
  line-height: 1.78;
}

.seo-summary a {
  color: var(--wedding-red);
  font-weight: 800;
}

.section-shell {
  background: var(--wedding-cream);
}

.hero-collections {
  padding-top: clamp(112px, 11vw, 136px);
}

.hero-collections h1 {
  max-width: 1180px;
  margin-inline: auto;
  margin-bottom: 20px;
  font-size: clamp(3.2rem, 6.2vw, 6.6rem);
  line-height: 0.92;
}

.hero-collections h1 span {
  display: inline;
  color: var(--wedding-red);
}

.hero-collections .section-heading {
  margin-bottom: clamp(26px, 3.5vw, 42px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: clamp(34px, 5vw, 62px);
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading > p:not(.eyebrow) {
  max-width: 600px;
  margin: 0 auto 28px;
  color: var(--wedding-muted);
  font-weight: 300;
  line-height: 1.75;
}

.heading-rule {
  display: block;
  width: 80px;
  height: 3px;
  margin: 22px auto 24px;
  background: var(--wedding-gold);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  max-width: 1180px;
  margin: 0 auto;
  border: 1px solid var(--line);
  background: var(--line);
}

.collection-card {
  display: grid;
  min-height: 560px;
  padding: clamp(26px, 4vw, 48px);
  background: var(--wedding-cream);
}

.collection-card > span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 26px;
  border: 1px solid var(--wedding-gold);
  border-radius: 50%;
  color: var(--wedding-gold);
  font-family: var(--font-serif);
  font-style: italic;
}

.collection-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-bottom: 18px;
  color: var(--wedding-red);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.collection-meta em {
  color: rgba(26, 26, 26, 0.44);
  font-style: normal;
}

.collection-card p {
  max-width: 500px;
  margin-bottom: 28px;
  color: var(--wedding-muted);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
}

.collection-card img {
  align-self: end;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: grayscale(0.25);
  transition: filter 500ms ease, transform 500ms ease;
}

.collection-card:hover img {
  filter: grayscale(0);
  transform: scale(1.012);
}

.price {
  color: var(--wedding-red);
}

.catalog-section {
  background: var(--wedding-cream);
}

.catalog-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto clamp(30px, 4vw, 54px);
}

.catalog-top .section-heading {
  margin-bottom: 0;
}

.catalog-top h2 span {
  color: var(--wedding-red);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
  max-width: 1180px;
  margin: 0 auto;
}

.product-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: default;
}

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

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: grayscale(0.18);
  transition: filter 420ms ease, transform 560ms ease;
}

.product-card:hover img {
  filter: grayscale(0);
  transform: scale(1.05);
}

.product-info {
  padding: 22px;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  color: rgba(26, 26, 26, 0.45);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-info h3 {
  margin-bottom: 10px;
  font-size: 1.55rem;
}

.product-info p {
  margin-bottom: 0;
  color: var(--wedding-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.clearance-badge {
  display: inline-flex;
  margin-top: 18px;
  padding: 7px 10px;
  background: rgba(197, 160, 89, 0.12);
  color: var(--wedding-red);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.clearance {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background: var(--wedding-red);
  color: var(--white);
}

.clearance .eyebrow {
  color: var(--wedding-gold);
}

.clearance-copy {
  max-width: 520px;
}

.clearance-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.75;
}

.clearance .button.primary {
  border-color: var(--white);
  background: var(--white);
  color: var(--wedding-gold);
}

.sale-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.clearance-item,
.empty-clearance {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 132px;
  padding: 14px;
  border: 1px solid rgba(250, 249, 246, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.clearance-item img {
  width: 112px;
  height: 104px;
  object-fit: cover;
}

.clearance-item span,
.empty-clearance span {
  display: block;
  margin-bottom: 8px;
  color: var(--wedding-gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.clearance-item strong,
.empty-clearance strong {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  line-height: 1.1;
}

.empty-clearance {
  grid-column: 1 / -1;
  grid-template-columns: 1fr;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  max-width: 1280px;
  margin: 0 auto;
  gap: 1px;
  background: var(--line);
}

.story-copy,
.story-image {
  background: var(--wedding-cream);
}

.story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 520px;
  padding: clamp(34px, 5vw, 76px);
}

.story-copy h2 span {
  color: var(--wedding-red);
}

.story-copy p:not(.eyebrow) {
  max-width: 460px;
  color: var(--wedding-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  text-transform: uppercase;
}

.story-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 18px;
  color: var(--wedding-gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.story-image {
  min-height: 520px;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.12);
}

.faq-section {
  background: var(--wedding-cream);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 1180px;
  margin: 0 auto;
  border: 1px solid var(--line);
  background: var(--line);
}

.faq-grid article {
  min-height: 230px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--white);
}

.faq-grid h3 {
  font-size: clamp(1.6rem, 2.5vw, 2.35rem);
}

.faq-grid p {
  margin-bottom: 0;
  color: var(--wedding-muted);
  line-height: 1.72;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(300px, 1.08fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: center;
  background: var(--white);
}

.contact-info h2 span {
  color: var(--wedding-red);
}

.contact-info > p:not(.eyebrow) {
  max-width: 520px;
  color: var(--wedding-muted);
  line-height: 1.8;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact-actions .button {
  min-height: 48px;
  padding-inline: 20px;
}

.contact-actions .ghost {
  background: rgba(197, 160, 89, 0.06);
}

.showroom-details {
  display: grid;
  gap: 8px;
  margin-top: 34px;
  font-style: normal;
  color: rgba(26, 26, 26, 0.78);
  line-height: 1.55;
}

.showroom-details strong {
  color: var(--wedding-gold);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.showroom-details a:hover {
  color: var(--wedding-red);
}

.enquiry-form {
  display: grid;
  gap: 24px;
  padding: clamp(28px, 5vw, 50px);
  border: 1px solid var(--line);
  background: var(--wedding-cream);
  box-shadow: var(--shadow);
}

.enquiry-form h2 {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.enquiry-form h2::before {
  width: 34px;
  height: 1px;
  background: var(--wedding-red);
  content: "";
}

.enquiry-form label {
  display: grid;
  gap: 8px;
  color: var(--wedding-gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(197, 160, 89, 0.42);
  background: transparent;
  color: var(--wedding-ink);
  padding: 12px 0;
  outline: 0;
  font-size: 0.9rem;
  letter-spacing: 0;
  text-transform: none;
}

.enquiry-form textarea {
  resize: vertical;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
  border-color: var(--wedding-red);
}

.form-note {
  min-height: 20px;
  margin: 0;
  color: var(--wedding-muted);
  font-size: 0.9rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 66px;
  padding: 18px clamp(20px, 5vw, 56px);
  background: var(--wedding-red);
  color: var(--wedding-cream);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.footer-links a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 16px;
  }

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

}

@media (max-width: 900px) {
  .site-header {
    min-height: 76px;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 61;
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 60;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 94px 26px 26px;
    background: var(--wedding-cream);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .main-nav {
    display: flex;
  }

  .main-nav a {
    padding: 17px 0;
    border-bottom: 1px solid var(--soft-line);
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
  }

  .main-nav .nav-cta {
    display: inline-flex;
    justify-content: center;
    margin-top: 18px;
    border: 0;
    background: var(--wedding-red);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .feature-strip,
  .seo-summary,
  .collection-grid,
  .clearance,
  .story-section,
  .faq-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .feature-strip div,
  .feature-strip div:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--soft-line);
  }

  .catalog-top {
    display: grid;
    align-items: start;
  }

  .story-section {
    padding: 0;
  }
}

@media (max-width: 680px) {
  h1 {
    font-size: clamp(3.2rem, 17vw, 4.9rem);
  }

  h2 {
    font-size: clamp(2.35rem, 12vw, 3.5rem);
  }

  .site-header {
    padding-inline: 16px;
  }

  .brand img {
    width: 124px;
  }

  .brand span {
    max-width: 150px;
    font-size: 0.48rem;
    letter-spacing: 0.24em;
  }

  .hero {
    min-height: 84vh;
    min-height: 84svh;
    padding: 112px 18px 56px;
  }

  .hero-collections {
    padding-top: 104px;
  }

  .hero-collections h1 {
    font-size: clamp(2.7rem, 12vw, 3.8rem);
  }

  .hero-collections h1 span {
    display: block;
  }

  .hero-content .eyebrow {
    max-width: 310px;
    line-height: 1.7;
  }

  .hero-content p:not(.eyebrow) {
    font-size: 0.82rem;
  }

  .hero-actions,
  .contact-actions,
  .button {
    width: 100%;
  }

  .section-shell,
  .seo-summary,
  .clearance,
  .faq-section,
  .contact-section {
    padding: 58px 18px;
  }

  .collection-card {
    min-height: auto;
  }

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

  .product-info {
    padding: 20px;
  }

  .clearance-item {
    grid-template-columns: 96px 1fr;
  }

  .clearance-item img {
    width: 96px;
    height: 92px;
  }

  .story-copy,
  .story-image {
    min-height: auto;
  }

  .story-image {
    height: 360px;
  }

  .enquiry-form {
    padding: 24px;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}
