@import url("https://fonts.googleapis.com/css2?family=Bodoni+Moda:opsz,wght@6..96,500;6..96,600;6..96,700&family=Cormorant+Garamond:wght@400;500;600;700&family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --bg: #eee3e0;
  --surface: #fff8f4;
  --surface-soft: #ead8d8;
  --text: #2f1817;
  --muted: #6b5653;
  --brand: #7b1e2b;
  --brand-dark: #4b2232;
  --gold: #c59b4a;
  --gold-rich: #c89b46;
  --gold-soft: #f3e1bd;
  --border: rgba(197, 155, 74, 0.18);
  --shadow: 0 16px 40px rgba(75, 34, 50, 0.12);
  --shadow-strong: 0 22px 60px rgba(75, 34, 50, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(197, 155, 74, 0.18), transparent 0 28%),
    radial-gradient(circle at top right, rgba(123, 30, 43, 0.1), transparent 0 24%),
    linear-gradient(135deg, #f8efea 0%, #eee3e0 45%, #e6d6d8 100%);
  line-height: 1.7;
  letter-spacing: 0.01em;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

main a:not(.btn):hover,
.site-footer a:hover {
  color: #ffffff;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.narrow {
  width: min(860px, 100%);
}

.announcement-bar {
  background: linear-gradient(90deg, #8a3f5f 0%, #6f324c 100%);
  color: #fff5fa;
  font-size: 0.9rem;
}

.announcement-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(253, 243, 241, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(111, 50, 76, 0.14);
}

.header-shell {
  padding: 0.8rem 0 1rem;
}

.header-utility {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding-bottom: 0.5rem;
}

.utility-text {
  margin: 0;
  color: var(--gold-rich);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand strong {
  display: block;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-rich);
}

.brand small {
  display: block;
  color: #7e5a68;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand) 0%, #b13b50 100%);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.6rem 1rem;
  padding: 0.35rem 0;
}

.site-nav a {
  color: var(--gold-rich);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  padding: 0.2rem 0.35rem;
  border-radius: 6px;
  transition: color 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.site-nav a:hover {
  color: var(--brand-dark);
  background: rgba(123, 30, 43, 0.08);
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.hero,
.page-hero {
  padding: 4.5rem 0 3rem;
}

.page-hero {
  position: relative;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.page-hero-copy {
  max-width: 700px;
}

.page-hero-gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
}

.decorative-frame {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 250px;
  padding: 1rem;
  display: flex;
  align-items: end;
  background:
    linear-gradient(rgba(10, 8, 8, 0.18), rgba(10, 8, 8, 0.55)),
    linear-gradient(135deg, rgba(200, 155, 70, 0.8) 0%, rgba(123, 30, 43, 0.92) 100%);
  border: 1px solid rgba(197, 155, 74, 0.32);
  box-shadow: var(--shadow-strong);
}

.decorative-frame::before {
  content: "";
  position: absolute;
  inset: 0.6rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.decorative-frame span {
  position: relative;
  z-index: 1;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(20, 12, 12, 0.55);
  color: var(--gold-soft);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.decorative-frame-large {
  min-height: 300px;
}

.decorative-frame-small {
  min-height: 220px;
}

.hero-luxe {
  position: relative;
}

.hero-luxe::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197, 155, 74, 0.7), transparent);
}

.hero-grid,
.feature-grid,
.feature-banner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.hero-copy {
  padding-right: 1rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.4rem;
}

.hero-meta span {
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(197, 155, 74, 0.12);
  border: 1px solid rgba(197, 155, 74, 0.28);
  color: var(--brand-dark);
  font-size: 0.88rem;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.9rem;
  padding: 0.34rem 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--gold);
  background: rgba(197, 155, 74, 0.09);
  border: 1px solid rgba(197, 155, 74, 0.25);
  border-radius: 999px;
  font-weight: 700;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  line-height: 1.08;
  color: var(--gold-rich);
}

h1 {
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(2.9rem, 4.5vw, 4.9rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 0.9rem;
}

h2,
h3,
h4 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

h2 {
  font-size: clamp(2rem, 3vw, 2.9rem);
  margin-bottom: 0.7rem;
}

h3 {
  font-size: 1.7rem;
}

.lead,
.section-intro {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 62ch;
}

.section-intro {
  margin: 0 auto;
}

.center-heading {
  text-align: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand) 0%, #ab3850 100%);
  color: #fff;
  box-shadow: var(--shadow-strong);
}

.btn-secondary {
  background: rgba(255, 250, 244, 0.92);
  color: var(--brand);
  border-color: rgba(123, 30, 43, 0.25);
}

.hero-panel,
.info-panel,
.promo-card,
.feature-banner {
  background: linear-gradient(160deg, #fff9f1 0%, #f6e2bf 100%);
  border: 1px solid rgba(197, 155, 74, 0.28);
  border-radius: 26px;
  box-shadow: var(--shadow-strong);
}

.hero-panel {
  min-height: 430px;
  padding: 1.2rem;
  position: relative;
  overflow: hidden;
}

.hero-panel::before,
.page-hero-pattern::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(123, 30, 43, 0.2), transparent 0 34%),
    radial-gradient(circle at bottom left, rgba(197, 155, 74, 0.26), transparent 0 28%);
}

.hero-panel-rich {
  background:
    linear-gradient(160deg, rgba(255, 248, 236, 0.96), rgba(243, 225, 189, 0.88));
}

.ornament-card {
  position: absolute;
  inset: 1.25rem;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 0.65rem;
  padding: 1.6rem;
  background:
    linear-gradient(rgba(77, 17, 25, 0.2), rgba(77, 17, 25, 0.48)),
    linear-gradient(135deg, #d3ac67 0%, #7b1e2b 100%);
  color: #fffaf4;
}

.ornament-card strong {
  font-size: 1.7rem;
  font-family: "Cormorant Garamond", Georgia, serif;
}

.ornament-card em {
  font-style: normal;
  color: rgba(255, 250, 244, 0.9);
}

.section {
  padding: 1.75rem 0 4rem;
}

.section-tight {
  padding-top: 0.75rem;
}

.section-alt {
  background: rgba(234, 216, 216, 0.45);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-heading {
  margin-bottom: 1.6rem;
}

.hero-copy .lead,
.section-intro,
.page-hero .lead,
.feature-banner p,
.feature-grid > div:first-child p {
  color: #5a474c;
}

.promo-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1rem;
}

.promo-card {
  display: block;
  min-height: 220px;
  padding: 1.35rem;
  position: relative;
  overflow: hidden;
}

.promo-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -20% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 30, 43, 0.16), transparent 70%);
}

.promo-card-large {
  min-height: 250px;
}

.promo-card span {
  color: var(--muted);
}

.card-grid,
.placeholder-grid,
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.category-card,
.placeholder-card,
.product-card,
.feature-list > div {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.25rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.category-card {
  min-height: 240px;
  display: block;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--brand));
}

.category-card:hover,
.product-card:hover,
.feature-list > div:hover,
.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(197, 155, 74, 0.38);
}

.category-card p,
.category-card span,
.product-card p {
  color: var(--muted);
}

.product-card h3 {
  margin: 0 0 0.55rem;
}

.product-card > p:not(.product-code) {
  flex-grow: 1;
  margin: 0 0 0.8rem;
}

.card-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--brand);
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.feature-list {
  display: grid;
  gap: 1rem;
}

.feature-banner {
  padding: 1.5rem 1.7rem;
}

.info-panel {
  padding: 1.2rem 1.3rem;
}

.placeholder-card {
  min-height: 180px;
  display: grid;
  place-items: center;
  color: var(--brand);
  background: linear-gradient(135deg, rgba(197, 155, 74, 0.12), rgba(123, 30, 43, 0.06));
}

.product-card strong {
  display: block;
  margin-top: auto;
  color: var(--brand);
}

.product-actions {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.9rem;
}

.product-code {
  margin: 0.5rem 0 0.75rem;
  color: var(--brand-dark);
  font-size: 0.84rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
}

.product-cta {
  margin-top: 0;
  width: 100%;
}

.product-copy {
  width: 100%;
  padding: 0.78rem 1.1rem;
  cursor: pointer;
  box-shadow: none;
}

.product-image {
  aspect-ratio: 4 / 5;
  margin-bottom: 1rem;
  border-radius: 14px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem;
  color: #fffaf4;
  background: linear-gradient(135deg, rgba(123, 30, 43, 0.9), rgba(197, 155, 74, 0.85));
}

.product-image.has-media {
  padding: 0;
  background: none;
  overflow: hidden;
}

.product-image.has-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-hero {
  position: relative;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.trust-strip > div {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.trust-strip p {
  margin-bottom: 0;
  color: var(--muted);
}

.site-footer {
  background: linear-gradient(180deg, #7a3a58 0%, #5d2b43 100%);
  color: #fff3f8;
  padding: 3rem 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr 1fr;
  gap: 1.5rem;
}

.footer-simple {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.footer-social {
  margin-top: 0.9rem;
  color: #ffe9f2;
}

.footer-social a {
  color: #ffe0b2;
  font-weight: 700;
}

.footer-social a:hover {
  color: #ffffff;
}

.footer-title {
  margin: 0 0 0.9rem;
  color: #ffe0b2;
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin-bottom: 0.5rem;
  color: #ffe9f2;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  margin-top: 2rem;
  padding-top: 1rem;
  color: #ffe3ef;
  font-size: 0.95rem;
}

@media (max-width: 960px) {
  .header-utility,
  .header-main,
  .hero-grid,
  .feature-grid,
  .feature-banner,
  .footer-grid,
  .promo-grid,
  .page-hero-grid,
  .page-hero-gallery {
    grid-template-columns: 1fr;
  }

  .header-main {
    display: grid;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .card-grid,
  .placeholder-grid,
  .product-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .announcement-inner {
    flex-direction: column;
  }

  .utility-text {
    font-size: 0.95rem;
    text-align: center;
  }
}
