:root {
  --bg: #0f0d0c;
  --bg-soft: #171311;
  --surface: rgba(23, 17, 14, 0.82);
  --surface-strong: rgba(16, 13, 11, 0.95);
  --surface-light: rgba(255, 250, 240, 0.88);
  --line: rgba(255, 255, 255, 0.1);
  --line-dark: rgba(44, 36, 30, 0.12);
  --gold: #d4b16a;
  --gold-soft: #f1dfb7;
  --cream: #f5edde;
  --sand: #d5c1a3;
  --sage: #8da48f;
  --ink: #f8f4ec;
  --ink-soft: rgba(248, 244, 236, 0.75);
  --ink-dark: #2a221b;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max-width: 1240px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(110, 146, 114, 0.2), transparent 30%),
    radial-gradient(circle at top right, rgba(212, 177, 106, 0.18), transparent 28%),
    linear-gradient(180deg, #0f0d0c 0%, #15110f 22%, #110f0d 46%, #f1e6d5 46%, #ede0ce 100%);
  min-height: 100vh;
}

body.drawer-open,
body.modal-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

.page-glow {
  position: fixed;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.16;
  pointer-events: none;
  z-index: 0;
}

.page-glow-left {
  background: #6f8e70;
  top: 80px;
  left: -140px;
}

.page-glow-right {
  background: #d9b777;
  top: 260px;
  right: -160px;
}

.site-header,
main,
.cart-launcher,
.chat-toggle,
.chatbot,
.cart-drawer,
.product-modal {
  position: relative;
  z-index: 1;
}

.topline {
  display: flex;
  justify-content: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  padding: 0.9rem 1.25rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--line);
}

.topline a {
  color: var(--gold-soft);
}

.nav-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 1.25rem auto 0;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(20, 16, 14, 0.7);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.brandmark {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}

.brandmark-kicker {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold-soft);
}

.brandmark-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 0.9;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.nav-links a,
.ghost-link {
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.nav-links a:hover,
.ghost-link:hover {
  color: var(--ink);
}

.nav-cart {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(212, 177, 106, 0.16), rgba(255, 255, 255, 0.04));
  color: var(--ink);
  border-radius: 999px;
  padding: 0.8rem 1.05rem;
}

.nav-cart span {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--ink-dark);
  font-size: 0.8rem;
  font-weight: 800;
}

.section {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 5.5rem 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 2.5rem;
  align-items: center;
  padding-top: 3.5rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  color: var(--gold-soft);
}

.eyebrow::before {
  content: "";
  width: 2.5rem;
  height: 1px;
  background: currentColor;
}

.hero h1,
.section-heading h2,
.gift-copy h2,
.closing-panel h2 {
  margin: 1.2rem 0 1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.hero h1 span {
  color: var(--gold-soft);
}

.hero-text,
.section-heading p,
.story-copy p,
.gift-copy p,
.closing-panel p {
  margin: 0;
  max-width: 42rem;
  font-size: 1.04rem;
  line-height: 1.8;
  color: var(--ink-soft);
}

.hero-actions,
.gift-actions,
.closing-actions,
.checkout-actions,
.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-actions {
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, #e0c182, #caa25a);
  color: #241c15;
  font-weight: 800;
}

.btn-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
}

.btn.wide {
  width: 100%;
}

.hero-points {
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.hero-points article {
  padding: 1.1rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.hero-points strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.98rem;
}

.hero-points span {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.hero-stage {
  position: relative;
  min-height: 43rem;
}

.hero-card {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-card img {
  height: 100%;
  object-fit: cover;
}

.hero-card-main {
  inset: 2.5rem 2rem 0 4rem;
  background: #221a15;
}

.hero-card-main::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 50%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.65));
}

.hero-card-body {
  position: absolute;
  inset: auto 1.5rem 1.4rem;
  z-index: 1;
}

.hero-card-body p,
.hero-card-body span {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero-card-body h2 {
  margin: 0.55rem 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.15rem;
}

.hero-card-body span {
  color: var(--gold-soft);
}

.hero-card-float {
  width: 13rem;
  height: 17rem;
}

.hero-card-left {
  top: 0;
  left: 0;
  transform: rotate(-7deg);
}

.hero-card-right {
  right: 0;
  bottom: 2.25rem;
  transform: rotate(8deg);
}

.mini-chip,
.hero-badge {
  position: absolute;
  border-radius: 999px;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(18, 14, 12, 0.84);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.mini-chip {
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.85rem;
  text-align: center;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero-badge-top {
  top: 5rem;
  right: 5rem;
}

.hero-badge-bottom {
  left: 3rem;
  bottom: 0;
}

.badge-label {
  display: block;
  margin-bottom: 0.22rem;
  text-transform: uppercase;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
}

.hero-badge strong {
  font-size: 0.98rem;
}

.tape {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.tape-track {
  display: flex;
  gap: 2rem;
  min-width: max-content;
  padding: 1.1rem 0;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  color: var(--gold-soft);
  animation: slideTape 24s linear infinite;
}

@keyframes slideTape {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.manifesto-grid,
.signature-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.manifesto-card,
.signature-card,
.process-card,
.spotlight-story,
.closing-panel,
.cart-drawer,
.product-modal-card,
.chatbot {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.manifesto-card,
.signature-card,
.process-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
}

.manifesto-card h3,
.signature-card h3,
.process-card h3,
.story-copy h3 {
  margin: 0.9rem 0 0.8rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.manifesto-card p,
.signature-card p,
.process-card p,
.faq-list p {
  margin: 0;
  line-height: 1.75;
  color: var(--ink-soft);
}

.manifesto-index,
.process-card span {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(212, 177, 106, 0.12);
  color: var(--gold-soft);
  font-weight: 800;
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading.light h2,
.section-heading.light p {
  color: var(--ink-dark);
}

.section-heading.light .eyebrow {
  color: #7d6641;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.spotlight-story {
  display: grid;
  min-height: 32rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.04);
}

.spotlight-story.dark {
  background: rgba(255, 255, 255, 0.02);
}

.spotlight-story img {
  height: 100%;
  object-fit: cover;
}

.story-copy {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.story-kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  color: var(--gold-soft);
}

.inline-link {
  margin-top: 1.1rem;
  color: var(--gold-soft);
  font-weight: 700;
}

.section-light {
  width: 100%;
  padding: 6rem 0;
  background:
    radial-gradient(circle at top right, rgba(141, 164, 143, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(245, 237, 222, 0.98), rgba(235, 223, 202, 0.98));
  color: var(--ink-dark);
}

.collection .section-heading,
.collection .collection-toolbar,
.collection .product-grid {
  width: min(calc(100% - 32px), var(--max-width));
  margin-left: auto;
  margin-right: auto;
}

.collection-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.filter-button {
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.6);
  color: var(--ink-dark);
  padding: 0.9rem 1.15rem;
  border-radius: 999px;
  font-weight: 700;
}

.filter-button.is-active {
  background: linear-gradient(135deg, #23201d, #4c3f2c);
  color: var(--cream);
  border-color: transparent;
}

.search-shell {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--line-dark);
}

.search-shell span {
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(42, 34, 27, 0.6);
}

.search-shell input {
  min-width: 18rem;
  border: 0;
  background: transparent;
  color: var(--ink-dark);
  outline: none;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 252, 246, 0.9);
  border: 1px solid rgba(54, 41, 30, 0.08);
  box-shadow: 0 24px 48px rgba(55, 36, 18, 0.12);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 56px rgba(55, 36, 18, 0.18);
}

.product-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.82 / 1;
}

.product-media img {
  height: 100%;
  object-fit: cover;
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(26, 21, 17, 0.82);
  color: var(--cream);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.product-body {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  color: var(--ink-dark);
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.product-category {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(42, 34, 27, 0.58);
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
}

.product-price strong {
  font-size: 1.15rem;
}

.product-price span {
  text-decoration: line-through;
  color: rgba(42, 34, 27, 0.42);
  font-size: 0.82rem;
}

.product-body h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.product-body p {
  margin: 0;
  line-height: 1.7;
  color: rgba(42, 34, 27, 0.72);
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.product-tags span {
  padding: 0.46rem 0.7rem;
  border-radius: 999px;
  background: rgba(212, 177, 106, 0.18);
  font-size: 0.72rem;
  font-weight: 700;
}

.product-actions {
  display: flex;
  gap: 0.7rem;
  margin-top: 0.2rem;
}

.product-actions button,
.product-actions a {
  flex: 1;
  border-radius: 999px;
  padding: 0.9rem 1rem;
  font-weight: 800;
  text-align: center;
}

.product-actions .add-button {
  border: 0;
  background: linear-gradient(135deg, #20201f, #473b2b);
  color: var(--cream);
}

.product-actions .view-button {
  border: 1px solid var(--line-dark);
  background: transparent;
  color: var(--ink-dark);
}

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

.gift-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.4rem;
  align-items: center;
}

.gift-cards {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
}

.gift-figure {
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.gift-figure.large {
  min-height: 34rem;
}

.gift-figure.small {
  min-height: 26rem;
  margin-top: 4rem;
}

.gift-figure img {
  height: 100%;
  object-fit: cover;
}

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

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-list details {
  padding: 1.2rem 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

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

.faq-list p {
  margin-top: 1rem;
}

.closing-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.2rem;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(141, 164, 143, 0.2), transparent 30%),
    linear-gradient(135deg, rgba(20, 16, 14, 0.95), rgba(36, 29, 22, 0.88));
}

.cart-launcher {
  position: fixed;
  right: 1.3rem;
  bottom: 1.3rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.95rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(18, 14, 12, 0.9);
  color: var(--cream);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.cart-launcher strong {
  width: 1.9rem;
  height: 1.9rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink-dark);
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 3, 3, 0.62);
  backdrop-filter: blur(4px);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(100%, 28rem);
  height: 100vh;
  padding: 1.3rem;
  background: rgba(14, 11, 10, 0.98);
  transform: translateX(100%);
  transition: transform 240ms ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow-y: auto;
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.drawer-head,
.chatbot-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.drawer-head p,
.chatbot-head p {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--gold-soft);
}

.drawer-head h2,
.chatbot-head h2 {
  margin: 0.35rem 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.1rem;
}

.drawer-close,
.modal-close,
.chat-close {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  font-size: 1.35rem;
}

.cart-items {
  display: grid;
  gap: 0.9rem;
}

.cart-empty {
  padding: 1.2rem;
  border-radius: var(--radius-md);
  border: 1px dashed rgba(255, 255, 255, 0.16);
  color: var(--ink-soft);
  text-align: center;
  line-height: 1.7;
}

.cart-item {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 0.9rem;
  padding: 0.9rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.cart-item img {
  height: 5.5rem;
  border-radius: 14px;
  object-fit: cover;
}

.cart-item-copy h4 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
}

.cart-item-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.cart-item-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  margin-top: 0.7rem;
}

.qty-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.25rem;
}

.qty-controls button {
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
}

.remove-button {
  border: 0;
  background: transparent;
  color: #f4b6b6;
  font-weight: 700;
}

.cart-summary {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.cart-summary div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.cart-summary div + div {
  margin-top: 0.45rem;
}

.checkout-form {
  display: grid;
  gap: 0.95rem;
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.checkout-form h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.85rem;
}

.checkout-form label {
  display: grid;
  gap: 0.45rem;
  font-size: 0.9rem;
}

.checkout-form input,
.checkout-form select,
.checkout-form textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  padding: 0.95rem 1rem;
  outline: none;
}

.order-feedback {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(141, 164, 143, 0.14);
  border: 1px solid rgba(141, 164, 143, 0.3);
  line-height: 1.7;
}

.order-feedback strong {
  display: block;
  margin-bottom: 0.35rem;
}

.product-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(4, 3, 3, 0.68);
  backdrop-filter: blur(5px);
  padding: 1.5rem;
}

.product-modal-card {
  position: relative;
  width: min(100%, 62rem);
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: rgba(16, 13, 11, 0.97);
}

.product-modal-media {
  min-height: 34rem;
}

.product-modal-media img {
  height: 100%;
  object-fit: cover;
}

.product-modal-copy {
  padding: 2rem;
}

.product-modal-copy h2 {
  margin: 1rem 0 0.8rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
}

.modal-price {
  font-size: 1.3rem;
  color: var(--gold-soft);
}

.modal-specs {
  margin: 1.3rem 0 1.8rem;
  padding-left: 1.2rem;
  color: var(--ink-soft);
  line-height: 1.8;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
}

.chat-toggle {
  position: fixed;
  right: 1.4rem;
  bottom: 5.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(135deg, rgba(212, 177, 106, 0.92), rgba(180, 143, 78, 0.94));
  color: var(--ink-dark);
  padding: 0.95rem 1.2rem;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.chatbot {
  position: fixed;
  right: 1.4rem;
  bottom: 9.1rem;
  width: min(100% - 28px, 24rem);
  max-height: 70vh;
  padding: 1rem;
  border-radius: 28px;
  background: rgba(14, 11, 10, 0.98);
  display: none;
  flex-direction: column;
  gap: 0.9rem;
}

.chatbot.is-open {
  display: flex;
}

.chat-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.chat-quick-actions button {
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
  padding: 0.65rem 0.85rem;
}

.chat-messages {
  flex: 1;
  display: grid;
  gap: 0.8rem;
  overflow-y: auto;
  padding-right: 0.2rem;
}

.message {
  max-width: 88%;
  padding: 0.85rem 0.95rem;
  border-radius: 18px;
  line-height: 1.6;
  font-size: 0.92rem;
  white-space: pre-line;
}

.message.bot {
  background: rgba(255, 255, 255, 0.05);
  border-top-left-radius: 6px;
  color: var(--ink);
}

.message.user {
  margin-left: auto;
  background: rgba(212, 177, 106, 0.18);
  border-top-right-radius: 6px;
}

.chat-form {
  display: flex;
  gap: 0.7rem;
}

.chat-form input {
  flex: 1;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
  padding: 0.9rem 1rem;
  outline: none;
}

.chat-form button {
  border-radius: 999px;
  border: 0;
  background: var(--gold);
  color: var(--ink-dark);
  padding: 0.9rem 1.1rem;
  font-weight: 800;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 650ms ease, transform 650ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[hidden] {
  display: none !important;
}

@media (max-width: 1120px) {
  .hero,
  .gift-grid,
  .closing-panel,
  .spotlight-grid,
  .spotlight-story {
    grid-template-columns: 1fr;
  }

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

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

  .manifesto-grid {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 36rem;
  }

  .hero-card-main {
    inset: 2rem 2rem 0;
  }

  .gift-figure.small {
    margin-top: 0;
  }
}

@media (max-width: 900px) {
  .nav-shell {
    border-radius: 30px;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .nav-links,
  .nav-actions {
    flex-wrap: wrap;
  }

  .hero-points,
  .product-grid,
  .signature-grid,
  .process-grid,
  .gift-cards {
    grid-template-columns: 1fr;
  }

  .collection-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .search-shell {
    width: 100%;
  }

  .search-shell input {
    min-width: 0;
    width: 100%;
  }

  .hero-card-float {
    display: none;
  }

  .hero-badge-top {
    right: 1rem;
    top: 1rem;
  }

  .hero-badge-bottom {
    left: 1rem;
    bottom: 1rem;
  }

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

  .product-modal-media {
    min-height: 22rem;
  }
}

@media (max-width: 640px) {
  .section {
    width: min(calc(100% - 24px), var(--max-width));
    padding: 4rem 0;
  }

  .topline {
    justify-content: flex-start;
    padding: 0.85rem 0.9rem;
  }

  .nav-shell {
    width: min(calc(100% - 24px), var(--max-width));
    margin-top: 0.8rem;
    padding: 1rem;
  }

  .brandmark-name {
    font-size: 1.7rem;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero-stage {
    min-height: 26rem;
  }

  .hero-card-main {
    inset: 1rem 0 0;
  }

  .hero h1,
  .section-heading h2,
  .gift-copy h2,
  .closing-panel h2 {
    font-size: clamp(2.4rem, 13vw, 3.3rem);
  }

  .spotlight-story,
  .closing-panel {
    border-radius: 24px;
  }

  .story-copy,
  .product-modal-copy {
    padding: 1.4rem;
  }

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

  .cart-launcher {
    right: 0.8rem;
    bottom: 0.8rem;
  }

  .chat-toggle {
    right: 0.8rem;
    bottom: 4.7rem;
  }

  .chatbot {
    right: 0.8rem;
    bottom: 8.5rem;
  }
}
