/* ============================================
   THE BLOOM ROOM LA — Luxury Y2K Style
   Palette: Coral #D4694A | Fuchsia #E8155B | 
   Brass #C9A84C | Near-Black #08081A | Cream #F8F4EE
   ============================================ */

:root {
  --coral: #D4694A;
  --coral-dark: #B85235;
  --coral-light: #E8845C;
  --fuchsia: #E8155B;
  --fuchsia-dark: #C4114D;
  --brass: #C9A84C;
  --brass-light: #E2C06A;
  --black: #08081A;
  --black-soft: #12121F;
  --charcoal: #2A2A2A;
  --cream: #F8F4EE;
  --cream-dark: #EDE8E0;
  --white: #FFFFFF;
  --text-dark: #1A1A2E;
  --text-mid: #4A4A5A;
  --text-light: #8A8A9A;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', sans-serif;
  --shadow: 0 4px 30px rgba(8, 8, 26, 0.12);
  --shadow-lg: 0 8px 60px rgba(8, 8, 26, 0.18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

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

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

/* ============================================ ANNOUNCEMENT BAR */
.announcement-bar {
  background: var(--black);
  color: var(--brass-light);
  text-align: center;
  padding: 10px 20px;
  font-size: 12px;
  font-family: var(--font-sans);
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* ============================================ NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 244, 238, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cream-dark);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 1px;
}

.logo-the {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--coral);
  font-weight: 500;
}

.logo-bloom {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 0.08em;
}

.logo-la {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--brass);
  font-weight: 500;
  text-align: right;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 12px;
  letter-spacing: 0.15em;
  font-weight: 500;
  color: var(--text-mid);
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--coral); }

.nav-cta {
  background: var(--black);
  color: var(--cream);
  padding: 10px 24px;
  font-size: 11px;
  letter-spacing: 0.15em;
  font-weight: 600;
  text-transform: uppercase;
  transition: background 0.2s;
}

.nav-cta:hover { background: var(--coral); }

/* ============================================ BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--coral);
  color: var(--white);
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--coral-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--cream);
  padding: 13px 30px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1.5px solid rgba(248, 244, 238, 0.5);
  cursor: pointer;
  transition: all 0.2s;
}

.btn-secondary:hover {
  border-color: var(--cream);
  background: rgba(248, 244, 238, 0.1);
}

.btn-full { width: 100%; justify-content: center; }

/* ============================================ HERO */
.hero {
  position: relative;
  height: 92vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8, 8, 26, 0.72) 0%,
    rgba(8, 8, 26, 0.45) 50%,
    rgba(212, 105, 74, 0.35) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 700px;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.35em;
  color: var(--brass-light);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 400;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  color: var(--brass-light);
}

.hero-sub {
  font-family: var(--font-sans);
  font-size: 14px;
  color: rgba(248, 244, 238, 0.85);
  letter-spacing: 0.05em;
  line-height: 1.8;
  margin-bottom: 36px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-badges {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-badges span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(248, 244, 238, 0.75);
  text-transform: uppercase;
}

.hero-badges span i {
  color: var(--coral-light);
  font-size: 12px;
}

/* ============================================ BRAND STATEMENT — "You deserve this" */
.brand-statement {
  background: var(--cream);
  padding: 100px 24px;
  overflow: hidden;
}

.bs-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Image column */
.bs-img-col {
  position: relative;
}

.bs-img-wrap {
  position: relative;
}

.bs-img-main {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  box-shadow: var(--shadow-lg);
}

.bs-img-accent {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 55%;
  border: 6px solid var(--cream);
  box-shadow: var(--shadow-lg);
}

.bs-img-secondary {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

/* Brass corner frame behind main image */
.bs-img-col::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  width: 60%;
  height: 60%;
  border-top: 2px solid var(--brass);
  border-left: 2px solid var(--brass);
  pointer-events: none;
  z-index: 0;
}

.bs-img-wrap { position: relative; z-index: 1; }

/* Text column */
.bs-text-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.bs-eyebrow {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 500;
  margin-bottom: 24px;
}

.bs-headline {
  font-family: var(--font-serif);
  font-size: clamp(38px, 4.5vw, 60px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 32px;
}

.bs-headline em {
  font-style: italic;
  color: var(--coral);
}

.bs-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--brass), var(--fuchsia));
  margin-bottom: 28px;
}

.bs-body {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 20px;
}

.bs-body em {
  color: var(--black);
  font-style: normal;
  font-weight: 500;
}

.bs-quote {
  background: var(--black);
  padding: 28px 32px;
  margin: 28px 0 36px;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.bs-quote-mark {
  font-family: var(--font-serif);
  font-size: 72px;
  line-height: 0.7;
  color: var(--coral);
  opacity: 0.6;
  flex-shrink: 0;
  margin-top: 8px;
}

.bs-quote-text {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
}

.bs-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.bs-link {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.05em;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.bs-link:hover { color: var(--coral); }

/* Responsive */
@media (max-width: 900px) {
  .bs-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .bs-img-accent {
    bottom: -24px;
    right: -16px;
  }
  .bs-img-col::before { display: none; }
}

@media (max-width: 480px) {
  .bs-img-accent { display: none; }
  .brand-statement { padding: 72px 24px; }
  .bs-quote { padding: 20px 20px; }
  .bs-quote-mark { font-size: 48px; }
  .bs-quote-text { font-size: 18px; }
}

/* ============================================ INFO STRIP */
.info-strip {
  background: var(--black);
  padding: 0;
}

.info-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 40px;
}

.info-item i {
  font-size: 22px;
  color: var(--brass);
  flex-shrink: 0;
}

.info-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.info-item strong {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 600;
}

.info-item span {
  font-size: 12px;
  color: rgba(248, 244, 238, 0.6);
  letter-spacing: 0.03em;
}

.info-divider {
  width: 1px;
  height: 40px;
  background: rgba(248, 244, 238, 0.12);
}

/* ============================================ SECTION HEADER */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 500;
  margin-bottom: 12px;
}

.section-eyebrow.light { color: var(--brass-light); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  color: var(--black);
  line-height: 1.1;
}

.section-title.light { color: var(--cream); }

.section-sub {
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
}

/* ============================================ SEASONAL */
.seasonal {
  padding: 100px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.seasonal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.seasonal-card {
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.seasonal-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.seasonal-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.seasonal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.seasonal-card:hover .seasonal-img-wrap img {
  transform: scale(1.04);
}

.seasonal-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--fuchsia);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 14px;
}

.easter-badge { background: var(--coral); }

.seasonal-body {
  padding: 36px;
}

.seasonal-body h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 14px;
}

.seasonal-body p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 22px;
}

.seasonal-perks {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.seasonal-perks li {
  font-size: 13px;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 10px;
}

.seasonal-perks li i {
  color: var(--coral);
  font-size: 11px;
}

/* ============================================ HOW TO ORDER */
.how-to-order {
  background: var(--black);
  padding: 100px 24px;
}

.hto-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.steps-grid {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.step {
  flex: 1;
  min-width: 240px;
  max-width: 300px;
  text-align: center;
  padding: 20px;
}

.step-number {
  font-family: var(--font-serif);
  font-size: 80px;
  font-weight: 300;
  color: rgba(212, 105, 74, 0.18);
  line-height: 1;
  margin-bottom: 12px;
}

.step h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 12px;
}

.step p {
  font-size: 13px;
  color: rgba(248, 244, 238, 0.6);
  line-height: 1.8;
}

.step-arrow {
  font-size: 20px;
  color: var(--coral);
  opacity: 0.5;
  padding: 0 8px;
}

/* ============================================ ORDER FORM */
.order-section {
  background: var(--cream);
  padding: 100px 24px;
}

.order-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.order-wrap {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

/* Sidebar */
.order-sidebar {
  background: var(--black);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: sticky;
  top: 90px;
}

.sidebar-block h4 {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-block h4 i { font-size: 11px; }

.sidebar-block p {
  font-size: 13px;
  color: rgba(248, 244, 238, 0.7);
  line-height: 1.7;
}

.sidebar-block p em {
  color: var(--coral-light);
  font-style: normal;
}

.sidebar-text-btn {
  color: var(--cream);
  border-color: rgba(248, 244, 238, 0.25);
  font-size: 11px;
}

/* Form */
.order-form {
  background: var(--white);
  padding: 48px;
  box-shadow: var(--shadow);
}

.form-section-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--cream-dark);
  margin-top: 32px;
}

.form-section-title:first-child { margin-top: 0; }

.form-row { margin-bottom: 0; }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 22px;
}

.form-group label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--cream-dark);
  background: var(--cream);
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-dark);
  transition: border-color 0.2s;
  appearance: none;
  border-radius: 0;
  outline: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234A4A5A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--coral);
  background: var(--white);
}

.form-group textarea { resize: vertical; }

.form-hint {
  font-size: 11px;
  color: var(--text-light);
  line-height: 1.5;
}

.btn-submit {
  margin-top: 12px;
  font-size: 13px;
  padding: 18px 32px;
  background: var(--black);
}

.btn-submit:hover { background: var(--coral); }

.form-disclaimer {
  margin-top: 16px;
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================ CONFIRMATION */
.confirmation {
  margin-top: 24px;
}

.confirmation-inner {
  background: var(--white);
  padding: 60px 48px;
  text-align: center;
  box-shadow: var(--shadow);
  max-width: 600px;
  margin: 0 auto;
}

.confirmation-icon {
  font-size: 48px;
  color: var(--coral);
  margin-bottom: 24px;
  animation: bloom 0.5s ease;
}

@keyframes bloom {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.confirmation-inner h3 {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 16px;
}

.conf-sub {
  font-size: 15px;
  color: var(--text-mid);
  margin-bottom: 28px;
  line-height: 1.7;
}

.conf-details {
  background: var(--cream);
  padding: 24px;
  margin-bottom: 24px;
  text-align: left;
  font-size: 14px;
  line-height: 2;
  color: var(--text-mid);
}

.conf-details strong { color: var(--black); }

.conf-next {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 28px;
}

.conf-address {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--black);
  color: var(--cream);
  padding: 20px 24px;
  text-align: left;
  margin-bottom: 28px;
  font-size: 13px;
  line-height: 1.8;
}

.conf-address i {
  color: var(--coral-light);
  font-size: 18px;
  margin-top: 4px;
  flex-shrink: 0;
}

.conf-address em {
  color: var(--coral-light);
  font-style: normal;
}

.confirmation .btn-secondary {
  color: var(--text-dark);
  border-color: var(--cream-dark);
}

.confirmation .btn-secondary:hover {
  border-color: var(--coral);
  background: transparent;
  color: var(--coral);
}

/* ============================================ SYMPATHY */
.sympathy-section {
  background: linear-gradient(135deg, var(--black) 0%, #1A0A14 100%);
  padding: 100px 24px;
}

.sympathy-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sympathy-text p {
  font-size: 15px;
  color: rgba(248, 244, 238, 0.7);
  line-height: 1.9;
  margin-bottom: 28px;
}

.sympathy-list {
  list-style: none;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sympathy-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(248, 244, 238, 0.75);
}

.sympathy-list li i { color: var(--coral-light); font-size: 13px; }

.sympathy-img {
  position: relative;
}

.sympathy-img img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.sympathy-img::before {
  content: '';
  position: absolute;
  inset: -12px 12px 12px -12px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  z-index: -1;
}

/* ============================================ INSTAGRAM */
.instagram-section {
  background: var(--coral);
  padding: 80px 24px;
  text-align: center;
}

.insta-inner { max-width: 600px; margin: 0 auto; }

.instagram-section .section-eyebrow { color: rgba(248, 244, 238, 0.7); }

.instagram-section .section-title {
  color: var(--white);
  font-size: 48px;
  margin-bottom: 16px;
}

.insta-sub {
  font-size: 14px;
  color: rgba(248, 244, 238, 0.85);
  line-height: 1.8;
  margin-bottom: 32px;
}

.instagram-section .btn-primary {
  background: var(--black);
  color: var(--cream);
}

.instagram-section .btn-primary:hover { background: var(--black-soft); }

/* ============================================ FOOTER */
.footer {
  background: var(--black-soft);
  padding: 80px 24px 0;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(248, 244, 238, 0.08);
}

.footer-brand .footer-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(248, 244, 238, 0.5);
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-mantra {
  font-family: var(--font-serif);
  font-size: 13px;
  font-style: italic;
  color: var(--brass-light) !important;
  opacity: 0.75;
  margin-top: -8px !important;
  letter-spacing: 0.02em;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(248, 244, 238, 0.08);
  color: var(--cream);
  font-size: 16px;
  transition: background 0.2s;
}

.footer-social a:hover { background: var(--coral); }

.footer-info h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-bottom: 16px;
}

.footer-info p {
  font-size: 13px;
  color: rgba(248, 244, 238, 0.55);
  line-height: 1.9;
  margin-bottom: 10px;
}

.footer-info p em {
  color: var(--coral-light);
  font-style: normal;
}

.footer-info a {
  color: rgba(248, 244, 238, 0.55);
  transition: color 0.2s;
}

.footer-info a:hover { color: var(--coral-light); }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(248, 244, 238, 0.3);
}

.footer-bottom a {
  color: rgba(248, 244, 238, 0.3);
  transition: color 0.2s;
}

.footer-bottom a:hover { color: var(--coral-light); }

/* ============================================ LIFE STAGES HERO SLIDESHOW */
.hero-slideshow {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  background: var(--black);
}

/* Track holds all slides stacked */
.hs-track {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Individual slide */
.hs-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.hs-slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* Slide background image — Ken Burns zoom */
.hs-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.08);
  transition: transform 6s ease-out;
}

.hs-slide.active .hs-img {
  transform: scale(1.0);
}

/* Dark gradient overlay */
.hs-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8, 8, 26, 0.18) 0%,
    rgba(8, 8, 26, 0.55) 40%,
    rgba(8, 8, 26, 0.80) 100%
  );
  z-index: 1;
}

/* Caption — slides up on active */
.hs-caption {
  position: absolute;
  z-index: 2;
  bottom: 220px;
  left: 0;
  right: 0;
  text-align: center;
  padding: 0 24px;
  transform: translateY(24px);
  opacity: 0;
  transition: transform 0.9s ease 0.5s, opacity 0.9s ease 0.5s;
}

.hs-slide.active .hs-caption {
  transform: translateY(0);
  opacity: 1;
}

.hs-stage {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--brass-light);
  font-weight: 400;
  margin-bottom: 16px;
}

.hs-line {
  font-family: var(--font-serif);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
}

.hs-line em {
  font-style: italic;
  color: var(--coral-light);
}

/* Bottom brand + CTA bar */
.hs-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  text-align: center;
  padding: 28px 24px 52px;
  background: linear-gradient(to top, rgba(8, 8, 26, 0.92) 0%, transparent 100%);
}

.hs-brand {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 6px;
}

.hs-brand-the {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--coral);
  font-weight: 600;
  text-transform: uppercase;
}

.hs-brand-name {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.1em;
}

.hs-brand-la {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--brass-light);
  font-weight: 500;
  text-transform: uppercase;
}

.hs-tagline {
  font-size: 12px;
  color: rgba(248, 244, 238, 0.5);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  font-family: var(--font-sans);
}

.hs-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hs-btn-outline {
  color: var(--cream) !important;
  border-color: rgba(248, 244, 238, 0.35) !important;
  font-size: 12px !important;
  padding: 13px 28px !important;
}

.hs-btn-outline:hover {
  border-color: var(--cream) !important;
  background: rgba(248, 244, 238, 0.1) !important;
}

/* Dots */
.hs-dots {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hs-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(248, 244, 238, 0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
}

.hs-dot.active {
  background: var(--brass-light);
  transform: scale(1.5);
}

.hs-dot:hover:not(.active) {
  background: rgba(248, 244, 238, 0.6);
}

/* Progress bar */
.hs-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(248, 244, 238, 0.1);
  z-index: 10;
}

.hs-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--coral), var(--fuchsia));
  width: 0%;
  transition: width linear;
}

/* Scroll hint */
.hs-scroll-hint {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 11;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: rgba(248, 244, 238, 0.35);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  pointer-events: none;
  animation: hs-bounce 2s ease-in-out infinite;
}

.hs-scroll-hint i { font-size: 11px; }

@keyframes hs-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(5px); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-slideshow { height: 100svh; min-height: 600px; }
  .hs-caption { bottom: 230px; }
  .hs-dots { right: 12px; }
  .hs-line { font-size: 36px; }
  .hs-brand-name { font-size: 20px; }
  .hs-bottom { padding: 20px 16px 48px; }
  .hs-btns { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hs-line { font-size: 30px; }
  .hs-caption { bottom: 250px; }
}

/* ============================================ HERO FORM LINK */
.hero-form-link {
  margin-top: 16px;
}
.hero-form-link a {
  font-size: 12px;
  color: rgba(248, 244, 238, 0.55);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.hero-form-link a span {
  color: var(--brass-light);
  text-decoration: underline;
}
.hero-form-link a:hover { color: var(--cream); }

.btn-hero-text {
  background: var(--fuchsia) !important;
  font-size: 14px !important;
  padding: 16px 36px !important;
  box-shadow: 0 4px 24px rgba(232, 21, 91, 0.35);
}
.btn-hero-text:hover {
  background: var(--fuchsia-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232, 21, 91, 0.45);
}

/* ============================================ QUICK ORDER */
.quick-order {
  background: var(--black);
  padding: 100px 24px;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.quick-order-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}

.quick-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 16px;
}

.quick-sub {
  font-size: 15px;
  color: rgba(248, 244, 238, 0.6);
  line-height: 1.8;
  margin-bottom: 32px;
}

.quick-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.quick-step {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: rgba(248, 244, 238, 0.75);
}

.quick-step span {
  width: 30px;
  height: 30px;
  border: 1px solid var(--coral);
  color: var(--coral);
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}

.quick-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.btn-quick-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--fuchsia);
  color: var(--white);
  padding: 18px 32px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.2s;
  box-shadow: 0 4px 24px rgba(232, 21, 91, 0.35);
}

.btn-quick-text:hover {
  background: var(--fuchsia-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232, 21, 91, 0.5);
}

.btn-quick-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  color: var(--cream);
  padding: 16px 32px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1.5px solid rgba(248, 244, 238, 0.2);
  transition: all 0.2s;
}

.btn-quick-call:hover {
  border-color: var(--brass-light);
  color: var(--brass-light);
}

.quick-note {
  font-size: 12px;
  color: rgba(248, 244, 238, 0.4);
  letter-spacing: 0.03em;
}

/* Size Cards */
.quick-sizes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.size-card {
  background: rgba(248, 244, 238, 0.04);
  border: 1px solid rgba(248, 244, 238, 0.08);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
}

.size-card:hover {
  background: rgba(248, 244, 238, 0.08);
  border-color: var(--coral);
  transform: translateY(-3px);
}

.size-featured {
  background: rgba(212, 105, 74, 0.1);
  border-color: var(--coral);
}

.size-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--coral);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 12px;
  white-space: nowrap;
}

.size-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.size-card h4 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 8px;
}

.size-card p {
  font-size: 12px;
  color: rgba(248, 244, 238, 0.5);
  line-height: 1.6;
  margin-bottom: 18px;
}

.btn-size {
  display: block;
  background: var(--coral);
  color: var(--white);
  padding: 10px 16px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.2s;
}

.btn-size:hover { background: var(--coral-dark); }

.size-featured .btn-size {
  background: var(--fuchsia);
}
.size-featured .btn-size:hover { background: var(--fuchsia-dark); }

/* ============================================ GALLERY */
.gallery-section {
  padding: 100px 0 60px;
  background: var(--cream);
}

.gallery-header {
  text-align: center;
  padding: 0 24px;
  margin-bottom: 56px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 6px;
  padding: 0 6px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
  cursor: pointer;
}

.gallery-tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,26,0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay p {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 10px;
}

.gallery-overlay a {
  display: inline-block;
  background: var(--fuchsia);
  color: var(--white);
  padding: 8px 18px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  width: fit-content;
  transition: background 0.2s;
}

.gallery-overlay a:hover { background: var(--fuchsia-dark); }

.gallery-cta {
  text-align: center;
  padding: 48px 24px 0;
}

/* ============================================ SEO CONTENT SECTION */
.seo-section {
  background: var(--black-soft);
  padding: 80px 24px;
}

.seo-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.seo-block h2 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 14px;
  line-height: 1.3;
}

.seo-block p {
  font-size: 13px;
  color: rgba(248, 244, 238, 0.55);
  line-height: 1.9;
}

/* ============================================ FAQ */
.faq-section {
  background: var(--cream);
  padding: 100px 24px;
}

.faq-inner {
  max-width: 900px;
  margin: 0 auto;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  background: var(--white);
  border-left: 3px solid transparent;
  transition: border-color 0.2s;
}

.faq-item[open] {
  border-left-color: var(--coral);
}

.faq-item summary {
  padding: 20px 24px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 20px;
  color: var(--coral);
  font-weight: 300;
  transition: transform 0.2s;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item[open] summary {
  color: var(--coral);
}

.faq-item p {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
}

/* ============================================ STICKERS — refined, not animated */
.sticker-inline {
  width: 40px;
  height: 40px;
  object-fit: contain;
  vertical-align: middle;
  margin-left: 10px;
  filter: drop-shadow(0 3px 8px rgba(0,0,0,0.3));
}

.sticker-inline-sm {
  width: 24px;
  height: 24px;
  object-fit: contain;
  vertical-align: middle;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.sticker-card {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.35));
  transition: transform 0.3s ease;
}

.size-card:hover .sticker-card {
  transform: scale(1.05);
}

/* .btn-sticker — no longer used, replaced with FA icon */

/* ============================================ LOYALTY SECTION */
.loyalty-section {
  background: linear-gradient(135deg, var(--black) 0%, #1A0514 60%, #0D0820 100%);
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}

.loyalty-stickers {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.loyalty-sticker {
  position: absolute;
  opacity: 0.08;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4)) grayscale(20%);
}

.s1 { width: 200px; top: -40px; left: -40px; transform: rotate(-15deg); }
.s2 { width: 180px; bottom: -30px; right: 5%; transform: rotate(10deg); }
.s3 { width: 150px; top: 40%; right: -20px; transform: rotate(5deg); }

.loyalty-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.loyalty-content { text-align: center; }

.loyalty-title {
  font-family: var(--font-serif);
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 20px;
}

.loyalty-title em {
  font-style: italic;
  color: var(--brass-light);
}

.loyalty-sub {
  font-size: 15px;
  color: rgba(248, 244, 238, 0.65);
  line-height: 1.9;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.loyalty-perks {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.loyalty-perk {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 160px;
}

.loyalty-perk img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.35));
  transition: transform 0.3s ease;
}

.loyalty-perk:hover img {
  transform: scale(1.08);
}

.loyalty-perk span {
  font-size: 12px;
  color: rgba(248, 244, 238, 0.65);
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

/* Loyalty Form */
.loyalty-form {
  background: rgba(248, 244, 238, 0.04);
  border: 1px solid rgba(248, 244, 238, 0.1);
  padding: 44px;
  text-align: left;
}

.loyalty-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}

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

.lf-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.lf-group label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass-light);
}

.lf-group input,
.lf-group select {
  padding: 13px 16px;
  background: rgba(248, 244, 238, 0.06);
  border: 1.5px solid rgba(248, 244, 238, 0.12);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  border-radius: 0;
}

.lf-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A84C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-color: rgba(248, 244, 238, 0.06);
  padding-right: 40px;
}

.lf-group select option { background: var(--black); color: var(--cream); }

.lf-group input:focus,
.lf-group select:focus {
  border-color: var(--brass);
  background: rgba(248, 244, 238, 0.09);
}

.lf-group small {
  font-size: 11px;
  color: rgba(248, 244, 238, 0.35);
  line-height: 1.4;
}

.btn-loyalty {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--fuchsia);
  color: var(--white);
  padding: 18px 32px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 24px rgba(232, 21, 91, 0.35);
}

.btn-loyalty:hover {
  background: var(--fuchsia-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232, 21, 91, 0.5);
}

.loyalty-disclaimer {
  text-align: center;
  font-size: 11px;
  color: rgba(248, 244, 238, 0.3);
  margin-top: 16px;
  line-height: 1.6;
}

/* Loyalty Success */
.loyalty-success {
  background: rgba(248, 244, 238, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 48px;
  text-align: center;
}

.success-sticker {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 24px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}

.loyalty-success h3 {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 14px;
}

.loyalty-success p {
  font-size: 14px;
  color: rgba(248, 244, 238, 0.65);
  line-height: 1.8;
  margin-bottom: 24px;
}

.loyalty-code-box {
  background: var(--black);
  border: 2px dashed var(--brass);
  padding: 20px 32px;
  display: inline-block;
  margin-bottom: 16px;
}

.loyalty-code-box .code-label {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-bottom: 6px;
}

.loyalty-code-box .code-value {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 600;
  color: var(--brass-light);
  letter-spacing: 0.1em;
}

.loyalty-code-box .code-desc {
  font-size: 11px;
  color: rgba(248, 244, 238, 0.45);
  margin-top: 6px;
}

.loyalty-code-note {
  font-size: 12px;
  color: rgba(248, 244, 238, 0.4);
  font-style: italic;
}

/* ============================================ LOYALTY POPUP */
.loyalty-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 26, 0.75);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.loyalty-popup {
  background: var(--black-soft);
  border: 1px solid rgba(201, 168, 76, 0.25);
  padding: 48px 40px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  position: relative;
  animation: slideUp 0.35s ease;
}

@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.popup-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: rgba(248, 244, 238, 0.4);
  font-size: 18px;
  cursor: pointer;
  transition: color 0.2s;
}

.popup-close:hover { color: var(--cream); }

.popup-sticker {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 24px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}

.loyalty-popup h3 {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 14px;
  line-height: 1.2;
}

.loyalty-popup p {
  font-size: 13px;
  color: rgba(248, 244, 238, 0.6);
  line-height: 1.8;
  margin-bottom: 28px;
}

.popup-skip {
  display: block;
  width: 100%;
  background: none;
  border: none;
  color: rgba(248, 244, 238, 0.3);
  font-size: 11px;
  cursor: pointer;
  margin-top: 14px;
  transition: color 0.2s;
  font-family: var(--font-sans);
  letter-spacing: 0.03em;
}

.popup-skip:hover { color: rgba(248, 244, 238, 0.6); }

/* ============================================ RESPONSIVE */
@media (max-width: 1024px) {
  .order-wrap {
    grid-template-columns: 1fr;
  }
  .order-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .sidebar-text-btn { grid-column: 1 / -1; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { padding: 9px 18px; font-size: 10px; }
  .hero { height: 80vh; }
  .seasonal-grid { grid-template-columns: 1fr; }
  .sympathy-inner { grid-template-columns: 1fr; }
  .sympathy-img { display: none; }
  .steps-grid { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }
  .two-col { grid-template-columns: 1fr; }
  .order-sidebar { grid-template-columns: 1fr; }
  .order-form { padding: 28px 20px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .info-strip-inner { flex-direction: column; }
  .info-divider { display: none; }
  .info-item { padding: 16px 24px; width: 100%; }
  .quick-order-inner { grid-template-columns: 1fr; gap: 48px; }
  .quick-sizes { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
  .quick-btns { flex-direction: column; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-tall { grid-row: span 1; aspect-ratio: 1/1; }
  .gallery-wide { grid-column: span 2; aspect-ratio: 2/1; }
  .gallery-overlay { opacity: 1; }
  .seo-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-title { font-size: 44px; }
}
