:root {
  --bg: #f6f1ea;
  --bg-soft: #fbf8f4;
  --surface: #ffffff;
  --surface-2: rgba(255, 255, 255, 0.7);
  --text: #191614;
  --muted: #6d625a;
  --line: rgba(25, 22, 20, 0.08);

  --primary: #6f0f24;
  --primary-2: #8d1c36;
  --accent: #d0ab73;
  --dark: #1b1514;

  --shadow-sm: 0 10px 24px rgba(28, 21, 20, 0.06);
  --shadow-md: 0 18px 40px rgba(28, 21, 20, 0.09);
  --shadow-lg: 0 24px 70px rgba(28, 21, 20, 0.16);

  --radius-sm: 16px;
  --radius-md: 22px;
  --radius-lg: 30px;
  --container: 1220px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(208, 171, 115, 0.14), transparent 24%),
    linear-gradient(180deg, #fbf8f5 0%, #f4eee7 100%);
  line-height: 1.6;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(246, 241, 234, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: 0.3s ease;
}

.site-header.scrolled {
  background: rgba(246, 241, 234, 0.9);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.logo-badge {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary-2), var(--primary));
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

.logo-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-copy strong {
  font-size: 1rem;
  font-weight: 800;
}

.logo-copy small {
  color: var(--muted);
  font-size: 0.83rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.main-nav a {
  color: var(--muted);
  font-weight: 600;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

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

.main-nav a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0.25rem;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: 0.3s ease;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0 4.5rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(120deg, rgba(17, 11, 10, 0.78), rgba(17, 11, 10, 0.34)),
    url("https://images.unsplash.com/photo-1506377247377-2a5b3b417ebb?auto=format&fit=crop&w=1800&q=80")
      center/cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 78% 16%, rgba(208, 171, 115, 0.3), transparent 20%),
    linear-gradient(180deg, rgba(10, 8, 8, 0.1), rgba(10, 8, 8, 0.45));
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.hero-copy {
  color: #fff;
  padding: 2rem 0;
}

.eyebrow {
  margin: 0 0 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--accent);
}

.hero h1,
.section-heading h2,
.feature-copy h2,
.contact-content h2 {
  margin: 0 0 1rem;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.98;
}

.hero h1 {
  font-size: clamp(3.2rem, 7vw, 6.1rem);
  max-width: 11ch;
}

.hero h1 span {
  color: #f0d8a7;
}

.hero-text {
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary-2), var(--primary));
  box-shadow: 0 16px 32px rgba(111, 15, 36, 0.28);
}

.btn-secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.btn-light {
  color: var(--text);
  background: #fff;
  border: 1px solid var(--line);
}

.hero-info {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-info-card {
  min-width: 180px;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.hero-info-card strong {
  display: block;
  color: #fff;
  font-size: 1.15rem;
}

.hero-info-card span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.93rem;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 0.8rem;
  border-radius: 999px;
  background: rgba(240, 216, 167, 0.16);
  color: #f3ddb0;
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero-panel h2 {
  margin: 0 0 0.8rem;
  font-size: 2rem;
  font-family: "Cormorant Garamond", serif;
}

.hero-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.hero-panel-list {
  margin: 1.5rem 0;
  display: grid;
  gap: 1rem;
}

.mini-feature {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0.9rem;
  align-items: start;
}

.mini-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  font-size: 1.15rem;
}

.mini-feature strong {
  display: block;
  margin-bottom: 0.2rem;
}

.mini-feature p {
  font-size: 0.95rem;
}

.panel-link {
  display: inline-flex;
  font-weight: 700;
  color: #fff;
}

.brands-strip {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.brands-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  min-height: 78px;
  align-items: center;
  text-align: center;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
}

.section {
  padding: 5.5rem 0;
}

.section-soft {
  background: linear-gradient(180deg, #fbf7f2, #f1e7dc);
}

.section-dark {
  background: linear-gradient(180deg, #1a1413, #241b19);
  color: #fff;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.2rem;
}

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

.section-heading h2,
.feature-copy h2,
.contact-content h2 {
  font-size: clamp(2.2rem, 4vw, 4.2rem);
}

.section-heading p:last-child,
.contact-content p,
.intro-card p,
.content-card p,
.gift-card p,
.service-card p,
.quote-box span,
.feature-copy .check-item,
.contact-card span {
  color: var(--muted);
}

.section-dark .feature-copy .check-item,
.section-dark .feature-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.intro-grid,
.two-col,
.contact-grid,
.gift-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.intro-card,
.content-card,
.service-card,
.gift-card,
.quote-box,
.contact-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
}

.intro-card {
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1rem;
  align-items: center;
  backdrop-filter: blur(12px);
}

.intro-card-number {
  width: 100px;
  height: 100px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(111, 15, 36, 0.12), rgba(208, 171, 115, 0.18));
  color: var(--primary);
  font-size: 2rem;
  font-weight: 800;
}

.card-grid {
  display: grid;
  gap: 1.25rem;
}

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

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.content-card,
.service-card {
  padding: 1.5rem;
  background: #fff;
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.icon-wrap {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(111, 15, 36, 0.08), rgba(208, 171, 115, 0.15));
  font-size: 1.3rem;
}

.card-tag,
.gift-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--primary);
  background: rgba(111, 15, 36, 0.08);
}

.content-card h3,
.gift-card h3,
.service-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
}

.content-card a {
  margin-top: 0.8rem;
  display: inline-flex;
  color: var(--primary);
  font-weight: 700;
}

.feature-split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: center;
}

.image-stage {
  min-height: 520px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(15, 10, 10, 0.15), rgba(15, 10, 10, 0.25)),
    url("https://images.unsplash.com/photo-1516594915697-87eb3b1c14ea?auto=format&fit=crop&w=1600&q=80")
      center/cover no-repeat;
  box-shadow: var(--shadow-lg);
}

.floating-card {
  position: absolute;
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  color: #fff;
}

.floating-card span {
  display: block;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0.2rem;
}

.floating-card strong {
  display: block;
  font-size: 1.05rem;
}

.top-card {
  top: 22px;
  left: 22px;
}

.bottom-card {
  right: 22px;
  bottom: 22px;
}

.check-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.check-item {
  padding: 1rem 1rem 1rem 2.6rem;
  position: relative;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.check-item::before {
  content: "✓";
  position: absolute;
  left: 1rem;
  top: 1rem;
  color: var(--accent);
  font-weight: 800;
}

.gift-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.gift-card {
  padding: 1.5rem;
  background: #fff;
}

.gift-card.featured {
  background: linear-gradient(135deg, var(--primary), #401217);
  color: #fff;
  border: none;
}

.gift-card.featured p,
.gift-card.featured .gift-badge {
  color: rgba(255, 255, 255, 0.88);
}

.gift-card.featured .gift-badge {
  background: rgba(255, 255, 255, 0.12);
}

.quote-box {
  padding: 2rem;
  background: linear-gradient(135deg, #6f0f24, #381112);
  color: #fff;
  border: none;
}

.quote-box p {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-family: "Cormorant Garamond", serif;
  line-height: 1.15;
}

.quote-box span {
  color: rgba(255, 255, 255, 0.72);
}

.contact-section {
  padding-top: 3rem;
}

.contact-content {
  max-width: 620px;
}

.contact-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
}

.contact-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-row strong {
  text-align: right;
}

.contact-row.no-border {
  border-bottom: 0;
}

.site-footer {
  padding: 1.5rem 0 2rem;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr auto auto;
  gap: 1rem;
  align-items: center;
}

.footer-inner p,
.footer-meta {
  color: var(--muted);
  margin: 0.25rem 0 0;
}

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

.footer-links a {
  color: var(--muted);
  font-weight: 600;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero-grid,
  .feature-split,
  .intro-grid,
  .gift-layout,
  .two-col,
  .contact-grid,
  .card-grid.four,
  .card-grid.three,
  .brands-strip-inner {
    grid-template-columns: 1fr 1fr;
  }

  .gift-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 780px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 86px;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-md);
  }

  .main-nav.open {
    display: flex;
  }

  .hero,
  .section {
    padding: 4rem 0;
  }

  .hero-grid,
  .feature-split,
  .intro-grid,
  .gift-layout,
  .two-col,
  .contact-grid,
  .card-grid.four,
  .card-grid.three,
  .gift-cards,
  .brands-strip-inner,
  .footer-inner,
  .check-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 100%;
  }

  .intro-card {
    grid-template-columns: 1fr;
  }

  .contact-row {
    flex-direction: column;
  }

  .contact-row strong {
    text-align: left;
  }

  .image-stage {
    min-height: 360px;
  }
}

.intro-section {
  position: relative;
  overflow: hidden;
}

.intro-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(208, 171, 115, 0.10), transparent 28%),
    radial-gradient(circle at 90% 80%, rgba(111, 15, 36, 0.06), transparent 24%);
  pointer-events: none;
}

.intro-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 2rem;
  align-items: stretch;
}

.intro-copy {
  margin-bottom: 0;
}

.intro-copy .intro-lead {
  max-width: 62ch;
  font-size: 1.05rem;
  line-height: 1.75;
}

.intro-features {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.intro-feature {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}

.intro-feature-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(111, 15, 36, 0.08),
    rgba(208, 171, 115, 0.18)
  );
  font-size: 1.25rem;
}

.intro-feature strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 1rem;
  color: var(--text);
}

.intro-feature p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.intro-highlight-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.6rem;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(111, 15, 36, 0.98), rgba(52, 18, 20, 0.96));
  color: #fff;
  box-shadow: var(--shadow-lg);
  min-height: 100%;
  position: relative;
  overflow: hidden;
}

.intro-highlight-card::before {
  content: "";
  position: absolute;
  inset: auto -80px -80px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(208, 171, 115, 0.22), transparent 70%);
  pointer-events: none;
}

.intro-highlight-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.intro-highlight-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.intro-highlight-number {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.5rem, 6vw, 5rem);
  line-height: 0.9;
  color: #f2d9aa;
  flex-shrink: 0;
}

.intro-highlight-content h3 {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
  line-height: 1.2;
  color: #fff;
}

.intro-highlight-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
}

.intro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-top: 1.75rem;
}

.intro-stat {
  padding: 0.95rem 0.9rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
}

.intro-stat strong {
  display: block;
  color: #fff;
  font-size: 0.98rem;
  margin-bottom: 0.2rem;
}

.intro-stat span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  line-height: 1.4;
}

@media (max-width: 980px) {
  .intro-grid {
    grid-template-columns: 1fr;
  }

  .intro-highlight-card {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .intro-feature {
    grid-template-columns: 1fr;
  }

  .intro-feature-icon {
    width: 48px;
    height: 48px;
  }

  .intro-stats {
    grid-template-columns: 1fr;
  }

  .intro-highlight-top {
    align-items: flex-start;
    flex-direction: column;
  }
}