:root {
  --bg: #0f1115;
  --surface: #171a20;
  --surface-soft: #20242d;
  --card: #f5f1e8;
  --card-strong: #fffaf2;
  --text: #f7f1e6;
  --text-muted: #b8b1a4;
  --ink: #1a1611;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #d8a657;
  --accent-strong: #f2bf6b;
  --accent-dark: #8c4b2d;
  --success: #90c8a1;
  --shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(216, 166, 87, 0.18), transparent 32%),
    linear-gradient(180deg, #0c0e12 0%, #11151d 45%, #171b22 100%);
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  background: rgba(12, 14, 18, 0.82);
}

.site-header__inner,
.section,
.site-footer__inner {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-mark__badge {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(216, 166, 87, 0.55);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 243, 191, 0.85), rgba(255, 192, 92, 0.32) 30%, transparent 54%),
    linear-gradient(160deg, rgba(255, 124, 56, 0.9), rgba(84, 14, 10, 0.88));
  color: #fff5d8;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0;
  box-shadow:
    0 0 0 1px rgba(255, 183, 92, 0.08),
    0 0 24px rgba(255, 114, 49, 0.35);
}

.brand-mark__badge::after {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255, 239, 192, 0.25);
  border-radius: 50%;
}

.brand-mark__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-mark__name {
  color: #fff3dc;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 0.95;
  text-transform: none;
  text-shadow: 0 0 18px rgba(255, 122, 48, 0.18);
}

.brand-mark__sub {
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  padding: 10px 14px;
  cursor: pointer;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav__links a,
.footer-links a {
  color: var(--text-muted);
  transition: color 0.2s ease, background-color 0.2s ease;
}

.site-nav__links a {
  padding: 10px 14px;
  border-radius: 999px;
}

.site-nav__links a:hover,
.site-nav__links a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.button,
.paypal-button button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 14px 22px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #110d09;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 18px 35px rgba(140, 75, 45, 0.28);
  cursor: pointer;
}

.button--ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  box-shadow: none;
}

.button:hover,
.paypal-button button:hover,
.button--ghost:hover {
  transform: translateY(-1px);
}

.hero {
  padding: 72px 0 56px;
}

.hero--home {
  padding-top: 88px;
}

.hero__grid,
.split-grid,
.contact-grid,
.story-grid,
.product-hero {
  display: grid;
  gap: 32px;
}

.hero__grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(216, 166, 87, 0.3);
  border-radius: 999px;
  background: rgba(216, 166, 87, 0.12);
  color: #f5d29f;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.product-copy h1,
.story-copy h1,
.contact-card h1 {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.hero p,
.page-hero p,
.story-copy p,
.contact-card p,
.product-copy p {
  margin: 0 0 18px;
  color: var(--text-muted);
  font-size: 1.04rem;
}

.hero__actions,
.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-card,
.panel,
.product-card,
.contact-card,
.gallery-card,
.story-panel,
.metric,
.cta-band {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.hero-card {
  overflow: hidden;
}

.hero-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.section {
  padding: 28px 0 56px;
}

.section__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.section__header h2,
.story-copy h2,
.contact-card h2,
.product-facts h2 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
}

.section__header p,
.product-facts p {
  margin: 0;
  color: var(--text-muted);
}

.metric-grid,
.product-grid,
.trust-grid,
.footer-grid,
.gallery-grid,
.fact-list {
  display: grid;
  gap: 20px;
}

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

.metric {
  padding: 24px;
}

.metric strong {
  display: block;
  margin-bottom: 8px;
  font-size: 2rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--accent-strong);
}

.metric span {
  color: var(--text-muted);
}

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

.product-card {
  overflow: hidden;
}

.product-card__media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.product-card:hover .product-card__media img {
  transform: scale(1.04);
}

.product-card__body {
  padding: 22px;
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.04), rgba(255, 255, 255, 0.02));
}

.product-card__top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.product-card h3,
.gallery-card h3 {
  margin: 0;
  font-size: 1.25rem;
  font-family: "Cormorant Garamond", Georgia, serif;
}

.product-card p {
  margin: 0 0 20px;
  color: var(--text-muted);
}

.product-card .button {
  min-height: 40px;
  padding: 10px 16px;
}

.price {
  color: var(--accent-strong);
  font-weight: 800;
  white-space: nowrap;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.product-card__tag,
.product-badge {
  color: var(--success);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.panel,
.story-panel,
.contact-card,
.gallery-card {
  padding: 28px;
}

.panel h3,
.story-panel h3,
.contact-card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.panel p,
.story-panel p,
.contact-card p,
.contact-card li {
  color: var(--text-muted);
}

.split-grid,
.story-grid,
.contact-grid,
.product-hero {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.story-panel ul,
.contact-card ul,
.product-facts ul {
  margin: 0;
  padding-left: 18px;
}

.story-media img,
.story-media video,
.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.legacy-art {
  overflow: hidden;
  padding: 18px;
  background:
    radial-gradient(circle at top, rgba(255, 116, 54, 0.16), transparent 42%),
    rgba(255, 255, 255, 0.04);
}

.legacy-art img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.32);
}

.legacy-art__caption {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.field textarea {
  min-height: 180px;
  resize: vertical;
}

.helper {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.page-hero {
  padding: 72px 0 24px;
}

.page-hero__panel {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(140deg, rgba(216, 166, 87, 0.15), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.page-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.page-hero__meta span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  font-size: 0.88rem;
}

.product-hero {
  padding: 72px 0 32px;
  align-items: start;
}

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

.gallery-grid .gallery-card:first-child {
  grid-column: 1 / -1;
}

.gallery-card {
  overflow: hidden;
  padding: 0;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.product-copy,
.product-facts {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.product-copy__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.product-price {
  color: var(--accent-strong);
  font-size: 2rem;
  font-weight: 800;
}

.paypal-button {
  margin: 24px 0 18px;
}

.paypal-button button {
  width: 100%;
}

.fact-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  padding: 0;
}

.fact-list li {
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
}

.fact-list strong {
  display: block;
  color: var(--text);
  margin-bottom: 4px;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px;
  margin: 8px 0 56px;
}

.cta-band h2 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3vw, 3rem);
}

.cta-band p {
  margin: 0;
  color: var(--text-muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(7, 8, 11, 0.75);
}

.site-footer__inner {
  padding: 28px 0 36px;
}

.footer-grid {
  grid-template-columns: 1.5fr 1fr 1fr;
}

.site-footer h3 {
  margin: 0 0 14px;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer p,
.site-footer li {
  color: var(--text-muted);
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-note {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .hero__grid,
  .split-grid,
  .contact-grid,
  .story-grid,
  .product-hero,
  .footer-grid,
  .metric-grid,
  .trust-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .site-header__inner {
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-top: 12px;
  }

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

  .site-nav__links,
  .site-nav__links a {
    width: 100%;
  }

  .site-nav__links {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav__actions {
    width: 100%;
  }

  .site-nav__actions .button {
    width: 100%;
  }

  .hero,
  .page-hero,
  .product-hero {
    padding-top: 48px;
  }

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

  .hero-card img,
  .story-media img,
  .story-media video,
  .contact-map iframe {
    min-height: 280px;
  }

  .page-hero__panel,
  .product-copy,
  .product-facts,
  .panel,
  .story-panel,
  .contact-card {
    padding: 24px;
  }
}
