@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,400;1,600&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --bg:       #ede8dc;
  --navy:     #0d2040;
  --gold:     #b09050;
  --burgundy: #5d1515;
  --white:    #ede8dc;
  --border:   rgba(13, 32, 64, 0.2);
}

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

body {
  background: var(--bg);
  color: var(--navy);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  min-height: 100vh;
}

/* ── Typography ── */
h1, h2, h3, .brand-name {
  font-family: 'Cormorant Garamond', serif;
}

.brand-name {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
}

.section-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.gold-rule {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 0.5rem auto;
}

/* ── Nav ── */
nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1.5rem 3rem;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 100;
}

nav .cart-btn {
  justify-self: end;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

.nav-links a {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.nav-links a:hover { opacity: 1; }

.cart-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 1px solid var(--navy);
  transition: background 0.2s, color 0.2s;
}

.cart-btn:hover {
  background: var(--navy);
  color: var(--bg);
}

.cart-badge {
  background: var(--gold);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 600;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}

.cart-badge.visible { display: flex; }

/* ── Layout ── */
main { padding: 3rem; max-width: 1200px; margin: 0 auto; }

.page-header {
  text-align: center;
  margin-bottom: 3rem;
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 300;
  margin: 0.5rem 0;
}

/* ── Grid ── */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

/* ── Cards ── */
.card {
  background: var(--white);
  border: 1px solid rgba(13, 32, 64, 0.25);
  padding: 1.5rem;
  text-decoration: none;
  color: var(--navy);
  display: block;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(13, 32, 64, 0.08);
}

.card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  overflow: hidden;
}

.card-img.portrait {
  aspect-ratio: 3/4;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0; left: 0;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.card-img img.img-active {
  opacity: 1;
}

/* ── Carousel arrows ── */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.85);
  border: none;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  font-size: 1.1rem;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.15s;
}

.carousel-btn:hover { background: rgba(255,255,255,1); }
.carousel-prev { left: 0.4rem; }
.carousel-next { right: 0.4rem; }

.card-img-placeholder {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--border);
  letter-spacing: 0.1em;
}

.card h3 {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.25rem;
}

.card p {
  font-size: 0.8rem;
  opacity: 0.65;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.card-price {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gold);
}

/* ── Fabric cards (por tela page) ── */
.fabric-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
}

.fabric-card-body {
  flex: 1;
}

.fabric-card-name {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.35rem;
}

.fabric-card-subtitle {
  font-size: 0.72rem;
  opacity: 0.55;
  line-height: 1.5;
}

.fabric-card-price {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.swatch-more {
  font-size: 0.65rem;
  font-weight: 500;
  opacity: 0.5;
  display: inline-flex;
  align-items: center;
  padding: 0 4px;
}

/* ── Color swatches ── */
.swatches {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

.swatch {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1);
  title: attr(data-name);
}

/* ── Telas info page ── */
.telas-info-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.tela-info-card {
  border: 1px solid var(--border);
  padding: 2rem;
  background: var(--white);
}

.tela-info-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.tela-info-name {
  font-size: 1.6rem;
  font-weight: 400;
  margin: 0 0 0.2rem;
}

.tela-info-subtitle {
  font-size: 0.72rem;
  opacity: 0.5;
  margin: 0;
}

.tela-info-price {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold);
  white-space: nowrap;
  margin: 0;
}

.tela-info-desc {
  font-size: 0.83rem;
  opacity: 0.7;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.tela-specs {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.3rem 1.5rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.tela-spec-row {
  display: contents;
}

.tela-spec-key {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.45;
  white-space: nowrap;
}

.tela-spec-val {
  font-size: 0.8rem;
}

.swatches-full .swatch {
  width: 18px;
  height: 18px;
}

/* ── Breadcrumb ── */
.breadcrumb {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  opacity: 0.5;
  margin-bottom: 2rem;
}

.breadcrumb a { color: var(--navy); text-decoration: none; }
.breadcrumb a:hover { opacity: 1; text-decoration: underline; }

/* ── Custom model card (Mi propio diseño) ── */
.custom-model-card {
  display: block;
  margin-bottom: 2.5rem;
  border-color: var(--gold);
  padding: 1.5rem 2rem;
}
.custom-model-card h3 { margin: 0 0 0.25rem; }
.custom-model-card p  { margin: 0; }

/* ── Image zoom hint & lightbox ── */
.card-img .img-zoom-hint {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  width: 1.8rem;
  height: 1.8rem;
  background: rgba(255,255,255,0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--ink);
  cursor: zoom-in;
  z-index: 3;
  border: none;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13, 32, 64, 0.85);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 8px 48px rgba(0,0,0,0.4);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.7;
  padding: 0.5rem;
}

.lightbox-close:hover { opacity: 1; }

/* ── Selectable model cards ── */
.selectable-card {
  position: relative;
  cursor: pointer;
  transition: border-color 0.15s, transform 0.15s;
}

.selectable-card.selected {
  border-color: var(--gold);
  border-width: 2px;
}

.card-check {
  display: none;
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  width: 1.4rem;
  height: 1.4rem;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  font-size: 0.7rem;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.selectable-card.selected .card-check {
  display: flex;
}

/* ── Sticky action bar ── */
.action-bar {
  position: fixed;
  bottom: -100px;
  left: 0;
  right: 0;
  background: var(--ink);
  color: var(--cream);
  padding: 1rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transition: bottom 0.3s ease;
  z-index: 200;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
}

.action-bar.visible {
  bottom: 0;
}

.action-bar-models {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.action-bar-models > div {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.action-bar-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.5;
}

.action-bar-divider {
  width: 1px;
  height: 2rem;
  background: rgba(255,255,255,0.2);
}

/* ── Section title with top item ── */
.section-group {
  margin-bottom: 3rem;
}

.section-group-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.75rem;
  margin-bottom: 1.5rem;
}

/* ── Fabric hero ── */
.fabric-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.fabric-hero h1 {
  font-size: 2.2rem;
  font-weight: 300;
  margin: 0.25rem 0;
}

.fabric-subtitle {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  opacity: 0.5;
  margin-top: 0.25rem;
}

.color-names {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.6rem;
}

.color-name-tag {
  font-size: 0.7rem;
  padding: 0.2rem 0.5rem;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
}

.reactive-mark {
  color: var(--burgundy);
  font-weight: 600;
  margin-left: 1px;
}

.reactive-note {
  font-size: 0.7rem;
  opacity: 0.6;
  margin-top: 0.6rem;
}

.fabric-specs {
  border: 1px solid var(--border);
  padding: 1.5rem;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table tr {
  border-bottom: 1px solid var(--border);
}

.specs-table tr:last-child {
  border-bottom: none;
}

.spec-key {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.6rem 1rem 0.6rem 0;
  white-space: nowrap;
  width: 40%;
}

.spec-val {
  font-size: 0.82rem;
  padding: 0.6rem 0;
  color: var(--navy);
}

@media (max-width: 768px) {
  .fabric-hero { grid-template-columns: 1fr; gap: 2rem; }
}

/* ── Configurar page ── */
.config-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.config-summary {
  background: var(--white);
  border: 1px solid rgba(13, 32, 64, 0.25);
  padding: 2rem;
  position: sticky;
  top: 100px;
}

.config-summary h2 {
  font-size: 1.8rem;
  font-weight: 400;
  margin: 0.5rem 0;
}

.config-summary .fabric-name {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.6;
}

.price-display {
  margin: 1.5rem 0;
  padding: 1.25rem;
  background: transparent;
  border: 1px solid rgba(13, 32, 64, 0.2);
  border-left: 2px solid var(--gold);
}

.price-display .unit-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--navy);
}

.price-display .unit-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.6;
}

.price-display .subtotal {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold);
}

.config-form { }

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: var(--navy);
}

.form-group .limit-note {
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  margin-left: 0.5rem;
}

select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--navy);
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  appearance: none;
  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='%230d2040' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}

select:focus { outline: 1px solid var(--gold); }

/* Color checkboxes */
.color-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.color-option input[type="checkbox"] { display: none; }

.color-option label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.75rem 0.4rem 0.5rem;
  border: 1px solid var(--border);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  transition: border-color 0.15s;
}

.color-option input:checked + label {
  border-color: var(--navy);
  background: rgba(13, 32, 64, 0.04);
}

.color-option label .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.15);
  flex-shrink: 0;
}

.color-option.disabled label {
  opacity: 0.35;
  cursor: not-allowed;
}

/* Size checkboxes */
.size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.size-option input[type="checkbox"] { display: none; }

.size-option label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 40px;
  border: 1px solid var(--border);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  transition: border-color 0.15s, background 0.15s;
}

.size-option input:checked + label {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--bg);
}

.size-option.disabled label {
  opacity: 0.35;
  cursor: not-allowed;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 0.2s, color 0.2s;
  width: 100%;
  text-align: center;
}

.btn-primary {
  background: var(--navy);
  color: var(--bg);
}

.btn-primary:hover { background: #0a1830; }

.btn-primary:disabled {
  background: var(--border);
  cursor: not-allowed;
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
  margin-top: 0.75rem;
}

.btn-secondary:hover {
  background: var(--navy);
  color: var(--bg);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.75rem;
}

.btn-whatsapp:hover { background: #1ebe5d; }

/* ── Toast ── */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--navy);
  color: var(--bg);
  padding: 1rem 1.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
  z-index: 200;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* ── Cart page ── */
.cart-empty {
  text-align: center;
  padding: 5rem 2rem;
}

.cart-empty h2 {
  font-size: 2rem;
  font-weight: 300;
  margin: 1rem 0 0.5rem;
}

.cart-empty p {
  opacity: 0.5;
  margin-bottom: 2rem;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}

.cart-table th {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: left;
  padding: 0.75rem 1rem;
  background: var(--navy);
  color: var(--bg);
}

.cart-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  font-size: 0.85rem;
}

.cart-table tr:hover td { background: rgba(255,255,255,0.4); }

.cart-table .col-desc strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  display: block;
}

.cart-table .col-desc span {
  font-size: 0.75rem;
  opacity: 0.6;
}

.cart-table .col-qty .color-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-top: 0.25rem;
}

.color-tag {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  padding: 0.1rem 0.4rem;
  background: var(--bg);
  border: 1px solid var(--border);
}

.color-tag .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1);
}

.cart-totals {
  max-width: 400px;
  margin-left: auto;
  border-top: 2px solid var(--gold);
  padding-top: 1.5rem;
}

.cart-totals table { width: 100%; }

.cart-totals td {
  padding: 0.4rem 0;
  font-size: 0.85rem;
}

.cart-totals .total-row td {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.cart-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

.btn-remove {
  background: none;
  border: none;
  color: var(--burgundy);
  cursor: pointer;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0;
  font-family: 'Jost', sans-serif;
}

/* ── Index / Home ── */
.hero {
  text-align: center;
  padding: 5rem 2rem 4rem;
}

.hero .tagline {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto;
}

.hero p {
  font-size: 0.9rem;
  opacity: 0.65;
  max-width: 420px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.catalogue-notice {
  background: rgba(13,32,64,0.05);
  border-left: 3px solid var(--gold);
  padding: 0.85rem 1.1rem;
  margin: 0 auto 2rem;
  border-radius: 2px;
  font-size: 0.85rem;
  opacity: 0.85;
  text-align: left;
  max-width: 520px;
}
.catalogue-notice p { margin: 0; line-height: 1.55; }

.path-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
}

.path-card {
  display: block;
  padding: 3rem 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--navy);
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}

.path-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.path-card .path-icon {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 1rem;
  display: block;
  line-height: 1;
}

.path-card h2 {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.path-card p {
  font-size: 0.75rem;
  opacity: 0.55;
  line-height: 1.5;
}

/* ── Brand claims ── */
.brand-claims {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
  margin: 0 -3rem;
  padding-left: 3rem;
  padding-right: 3rem;
}

.claims-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.claim-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.claim p {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.55;
}

/* ── Full divider ── */
.full-divider {
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
  margin: 4rem -3rem;
}

/* ── About section ── */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 1rem;
}

.about-left h2 {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.2;
  margin-top: 0.5rem;
}

.about-right p {
  font-size: 0.88rem;
  line-height: 1.8;
  opacity: 0.7;
  margin-bottom: 1rem;
}

.about-tags {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.about-tag {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
}

/* ── How it works ── */
.how-section {
  margin-bottom: 1rem;
}

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

.how-step {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
}

.step-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.how-step h3 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-family: 'Jost', sans-serif;
}

.how-step p {
  font-size: 0.78rem;
  opacity: 0.6;
  line-height: 1.6;
}

/* ── CTA section ── */
.cta-section {
  text-align: center;
  padding: 4rem 2rem;
  border: 1px solid var(--border);
  margin-top: 2rem;
}

.cta-section h2 {
  font-size: 2rem;
  font-weight: 300;
  margin-top: 0.75rem;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .claims-grid  { grid-template-columns: repeat(2, 1fr); }
  .about-section { grid-template-columns: 1fr; gap: 2rem; }
  .how-grid     { grid-template-columns: repeat(2, 1fr); }
  .brand-claims { margin: 0 -1.5rem; padding-left: 1.5rem; padding-right: 1.5rem; }
  .full-divider { margin: 3rem -1.5rem; }
}

/* ── Footer ── */
footer {
  text-align: center;
  padding: 2rem;
  border-top: 1px solid var(--border);
  margin-top: 4rem;
}

footer .brand-name { font-size: 1rem; }

.footer-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.4;
  margin-top: 0.25rem;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer-links a {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.footer-links a:hover { opacity: 1; }

.footer-links span { opacity: 0.3; font-size: 0.7rem; }

.footer-sub {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  opacity: 0.35;
  margin-top: 0.75rem;
  text-align: center;
}

/* ── FAQ ── */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.faq-card {
  background: #fff;
  border: 1px solid rgba(13,32,64,0.1);
  border-left: 3px solid #b8962e;
  padding: 1.75rem 1.75rem 1.75rem 1.5rem;
}

.faq-card h3 {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy);
  margin: 0 0 1rem 0;
}

.faq-card p {
  font-size: 0.875rem;
  line-height: 1.65;
  opacity: 0.7;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  nav {
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  nav .brand-name { font-size: 1.3rem; }
  main { padding: 2rem 1.5rem; }
  .path-cards { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .config-layout { grid-template-columns: 1fr; }
  .config-summary { position: static; }
  .nav-links { display: none; }
}
