/* ==========================================================================
   DeliceHom™ — Main Stylesheet
   Premium Kitchen Cookware Store
   ========================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  --clr-brand-950: #241c14;
  --clr-brand-900: #2f261b;
  --clr-brand-800: #44362a;
  --clr-brand-700: #b4522f;   /* terracotta */
  --clr-brand-600: #c9623c;
  --clr-brand-500: #d97a51;
  --clr-brand-100: #f7e8df;
  --clr-brand-50: #fbf3ee;

  --clr-gold-600: #a87a1f;
  --clr-gold-500: #d9a441;
  --clr-gold-400: #e8bc6b;
  --clr-gold-100: #f8ecd4;

  --clr-cream: #faf6ef;
  --clr-cream-2: #f3ecdf;
  --clr-ink: #2b2620;
  --clr-ink-soft: #5d554a;
  --clr-white: #ffffff;
  --clr-line: #e8dfd0;

  --font-heading: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Poppins", "Segoe UI", Tahoma, Arial, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(47, 38, 27, 0.08);
  --shadow-md: 0 12px 30px rgba(47, 38, 27, 0.12);
  --shadow-lg: 0 24px 60px rgba(47, 38, 27, 0.16);

  --container: 1160px;
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset / Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--clr-ink);
  background-color: var(--clr-white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--clr-brand-700);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

a:hover {
  color: var(--clr-gold-500);
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--clr-brand-900);
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

section {
  padding: 88px 0;
}

.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 200;
  padding: 10px 18px;
  background: var(--clr-brand-900);
  color: var(--clr-white);
  border-radius: var(--radius-sm);
  transition: top 0.25s var(--ease);
}

.skip-link:focus {
  top: 16px;
  color: var(--clr-white);
}

:focus-visible {
  outline: 3px solid var(--clr-gold-500);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background-color 0.25s var(--ease), color 0.25s var(--ease),
    border-color 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(135deg, var(--clr-brand-600), var(--clr-brand-700));
  color: var(--clr-white);
  box-shadow: 0 10px 24px rgba(180, 82, 47, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--clr-brand-700), var(--clr-brand-800));
  color: var(--clr-white);
  box-shadow: 0 14px 30px rgba(180, 82, 47, 0.45);
}

.btn-gold {
  background: linear-gradient(135deg, var(--clr-gold-400), var(--clr-gold-600));
  color: var(--clr-brand-950);
  box-shadow: 0 10px 24px rgba(217, 164, 65, 0.35);
}

.btn-gold:hover {
  color: var(--clr-brand-950);
  box-shadow: 0 14px 30px rgba(217, 164, 65, 0.5);
}

.btn-outline {
  border-color: var(--clr-brand-700);
  color: var(--clr-brand-700);
  background: transparent;
}

.btn-outline:hover {
  background: var(--clr-brand-700);
  color: var(--clr-white);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.75);
  color: var(--clr-white);
  background: transparent;
}

.btn-outline-light:hover {
  background: var(--clr-white);
  color: var(--clr-brand-900);
}

.btn-lg {
  padding: 17px 38px;
  font-size: 1.02rem;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
}

/* ---------- Eyebrow / Section Headings ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  background: var(--clr-brand-100);
  color: var(--clr-brand-700);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow-gold {
  background: var(--clr-gold-100);
  color: var(--clr-gold-600);
}

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  margin: 18px 0 14px;
}

.section-head p {
  color: var(--clr-ink-soft);
  font-size: 1.02rem;
}

.text-center {
  text-align: center;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--clr-line);
  transition: box-shadow 0.3s var(--ease);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--clr-brand-900);
}

.brand:hover {
  color: var(--clr-brand-900);
}

.brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-brand-600), var(--clr-brand-800));
  color: var(--clr-white);
  box-shadow: var(--shadow-sm);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  font-family: var(--font-heading);
  font-size: 1.08rem;
  letter-spacing: 0.01em;
}

.brand-text strong {
  font-weight: 700;
}

.brand-text small {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-brand-600);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a:not(.btn) {
  position: relative;
  display: inline-block;
  padding: 8px 12px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--clr-ink);
  border-radius: var(--radius-pill);
}

.main-nav a:not(.btn):hover {
  color: var(--clr-brand-700);
  background: var(--clr-brand-50);
}

.main-nav a.active {
  color: var(--clr-brand-700);
  font-weight: 600;
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 2px;
  height: 3px;
  border-radius: 3px;
  background: var(--clr-gold-500);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--clr-line);
  background: var(--clr-white);
  border-radius: var(--radius-sm);
  cursor: pointer;
  place-items: center;
  color: var(--clr-brand-900);
}

.nav-toggle .icon-close {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-open {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-close {
  display: block;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 96px 0 112px;
  background:
    radial-gradient(900px 480px at 88% -10%, rgba(217, 164, 65, 0.2), transparent 60%),
    radial-gradient(760px 520px at -10% 110%, rgba(180, 82, 47, 0.14), transparent 60%),
    var(--clr-cream);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  background: linear-gradient(90deg, var(--clr-brand-700), var(--clr-gold-500), var(--clr-brand-700));
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 56px;
}

.hero-copy .eyebrow {
  margin-bottom: 22px;
}

.hero-copy h1 {
  font-size: clamp(2.3rem, 4.6vw, 3.5rem);
  margin-bottom: 20px;
}

.hero-copy h1 em {
  font-style: italic;
  color: var(--clr-brand-700);
}

.hero-copy .lead {
  font-size: 1.08rem;
  color: var(--clr-ink-soft);
  max-width: 560px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 30px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--clr-brand-800);
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-points svg {
  flex: 0 0 auto;
  color: var(--clr-gold-600);
}

.hero-media {
  position: relative;
}

.hero-media .frame {
  position: relative;
  border-radius: var(--radius-lg);
  background: var(--clr-white);
  padding: 26px;
  box-shadow: var(--shadow-lg);
  transform: rotate(1.5deg);
  transition: transform 0.4s var(--ease);
}

.hero-media .frame:hover {
  transform: rotate(0deg);
}

.hero-media img {
  border-radius: var(--radius-md);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
}

.hero-badge {
  position: absolute;
  top: -22px;
  right: -10px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-gold-400), var(--clr-gold-600));
  color: var(--clr-brand-950);
  text-align: center;
  box-shadow: var(--shadow-md);
  animation: float 5s ease-in-out infinite;
}

.hero-badge strong {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  line-height: 1;
}

.hero-badge span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  max-width: 96px;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ---------- Trust Bar ---------- */
.trust-bar {
  background: var(--clr-brand-900);
  color: var(--clr-white);
  padding: 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.trust-item {
  background: var(--clr-brand-900);
  padding: 30px 26px;
  text-align: center;
}

.trust-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1.1;
  color: var(--clr-gold-400);
}

.trust-item span {
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.85);
}

/* ---------- Generic Cards Grid ---------- */
.cards-grid {
  display: grid;
  gap: 26px;
}

.cards-2 { grid-template-columns: repeat(2, 1fr); }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px 30px;
  border-radius: var(--radius-lg);
  background: var(--clr-white);
  border: 1px solid var(--clr-line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--clr-brand-100);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  border-radius: 16px;
  background: var(--clr-brand-100);
  color: var(--clr-brand-700);
}

.card-icon.gold {
  background: var(--clr-gold-100);
  color: var(--clr-gold-600);
}

.card h3 {
  font-size: 1.28rem;
  margin-bottom: 10px;
}

.card p {
  color: var(--clr-ink-soft);
  font-size: 0.95rem;
}

.card .num {
  position: absolute;
  top: 22px;
  right: 26px;
  font-family: var(--font-heading);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--clr-brand-100);
}

/* ---------- Shop: Product Cards ---------- */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}

.product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--clr-cream);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}

.product-card:hover .product-media img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  background: var(--clr-brand-700);
  color: var(--clr-white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-badge.gold {
  background: linear-gradient(135deg, var(--clr-gold-400), var(--clr-gold-600));
  color: var(--clr-brand-950);
}

.product-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px;
}

.product-body h3 {
  font-size: 1.08rem;
  margin-bottom: 6px;
}

.product-cat {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-brand-600);
  margin-bottom: 8px;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--clr-ink-soft);
  margin-bottom: 12px;
}

.stars {
  color: var(--clr-gold-500);
  display: inline-flex;
  gap: 2px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
}

.price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--clr-brand-900);
}

.price-old {
  font-size: 0.9rem;
  color: var(--clr-ink-soft);
  text-decoration: line-through;
}

.price-save {
  margin-left: auto;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--clr-brand-700);
}

.product-body .btn {
  margin-top: auto;
}

/* ---------- Category Cards ---------- */
.category-card {
  overflow: hidden;
  padding: 0;
}

.category-card .card-img {
  position: relative;
  height: 210px;
  background: var(--clr-cream);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.category-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}

.category-card:hover .card-img img {
  transform: scale(1.05);
}

.category-card .card-body {
  padding: 24px 26px 26px;
}

.category-card h3 {
  margin-bottom: 6px;
}

.category-card p {
  font-size: 0.9rem;
}

.category-card .count {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--clr-brand-600);
}

/* ---------- Section Tints ---------- */
.section-cream {
  background: var(--clr-cream);
}

.section-dark {
  background: linear-gradient(160deg, var(--clr-brand-950), var(--clr-brand-800));
}

.section-dark .section-head h2 {
  color: var(--clr-white);
}

.section-dark .section-head p {
  color: rgba(255, 255, 255, 0.8);
}

.section-dark .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  color: var(--clr-gold-400);
}

/* ---------- How It Works / Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 40px 30px 34px;
  border-radius: var(--radius-lg);
  background: var(--clr-white);
  border: 1px solid var(--clr-line);
  box-shadow: var(--shadow-sm);
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: -22px;
  left: 30px;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-gold-400), var(--clr-gold-600));
  color: var(--clr-brand-950);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.step h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.step p {
  color: var(--clr-ink-soft);
  font-size: 0.95rem;
}

/* ---------- Spotlight ---------- */
.spotlight {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 60px;
}

.spotlight-media {
  position: relative;
  padding: 30px;
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--clr-line);
}

.spotlight-media img {
  border-radius: var(--radius-md);
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.spotlight-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 16px 0 16px;
}

.spotlight-copy > p {
  color: var(--clr-ink-soft);
  margin-bottom: 26px;
}

.check-list {
  display: grid;
  gap: 14px;
  margin-bottom: 32px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--clr-ink);
}

.check-list svg {
  flex: 0 0 24px;
  margin-top: 3px;
  color: var(--clr-brand-600);
}

/* ---------- Testimonials ---------- */
.testimonial {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial blockquote {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--clr-brand-900);
}

.testimonial figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
  font-style: normal;
}

.avatar {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-brand-600), var(--clr-brand-800));
  color: var(--clr-white);
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial .who strong {
  display: block;
  font-size: 0.95rem;
  color: var(--clr-brand-900);
}

.testimonial .who span {
  font-size: 0.8rem;
  color: var(--clr-ink-soft);
}

/* ---------- FAQ ---------- */
.faq {
  max-width: 820px;
  margin-inline: auto;
}

.faq-item {
  border: 1px solid var(--clr-line);
  border-radius: var(--radius-md);
  background: var(--clr-white);
  margin-bottom: 14px;
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease);
}

.faq-item.open {
  box-shadow: var(--shadow-sm);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  color: var(--clr-brand-900);
}

.faq-q .faq-icon {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--clr-brand-100);
  color: var(--clr-brand-700);
  transition: transform 0.3s var(--ease);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--clr-gold-100);
  color: var(--clr-gold-600);
}

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease);
}

.faq-item.open .faq-a {
  grid-template-rows: 1fr;
}

.faq-a-inner {
  overflow: hidden;
}

.faq-a p {
  padding: 0 24px 22px;
  color: var(--clr-ink-soft);
  font-size: 0.95rem;
}

/* ---------- CTA Band ---------- */
.cta-band {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 72px 48px;
  text-align: center;
  background:
    radial-gradient(600px 300px at 85% 0%, rgba(217, 164, 65, 0.35), transparent 60%),
    linear-gradient(150deg, var(--clr-brand-950), var(--clr-brand-700));
  color: var(--clr-white);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.cta-band h2 {
  color: var(--clr-white);
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  margin-bottom: 14px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 620px;
  margin: 0 auto 30px;
}

/* ---------- Forms ---------- */
.form-card {
  max-width: 720px;
  margin-inline: auto;
  padding: 44px;
  border-radius: var(--radius-lg);
  background: var(--clr-white);
  border: 1px solid var(--clr-line);
  box-shadow: var(--shadow-md);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--clr-brand-900);
}

.form-field label .req {
  color: var(--clr-brand-700);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--clr-line);
  border-radius: var(--radius-sm);
  background: var(--clr-cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--clr-ink);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.form-field textarea {
  min-height: 130px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--clr-brand-600);
  box-shadow: 0 0 0 4px rgba(201, 98, 60, 0.15);
  background: var(--clr-white);
}

.form-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0 0;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: var(--clr-gold-100);
  color: var(--clr-gold-600);
  font-size: 0.84rem;
}

.form-status {
  display: none;
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  background: var(--clr-brand-100);
  border: 1px solid var(--clr-brand-600);
  color: var(--clr-brand-900);
  font-size: 0.92rem;
}

.form-status.show {
  display: block;
  animation: fadeUp 0.5s var(--ease);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  padding: 72px 0 64px;
  background:
    radial-gradient(800px 400px at 90% -20%, rgba(217, 164, 65, 0.16), transparent 60%),
    var(--clr-cream);
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2.1rem, 4vw, 3rem);
  margin: 18px auto 14px;
  max-width: 760px;
}

.page-hero p {
  max-width: 680px;
  margin-inline: auto;
  color: var(--clr-ink-soft);
  font-size: 1.04rem;
}

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
  padding: 20px 0 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--clr-ink-soft);
}

.breadcrumbs li + li::before {
  content: "/";
  margin-right: 8px;
  color: var(--clr-gold-500);
}

.breadcrumbs a {
  color: var(--clr-brand-700);
}

.breadcrumbs [aria-current="page"] {
  color: var(--clr-ink-soft);
  font-weight: 600;
}

/* ---------- Split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.split-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.split-media .caption {
  position: absolute;
  left: 20px;
  bottom: 20px;
  right: 20px;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  background: rgba(36, 28, 20, 0.82);
  color: var(--clr-white);
  font-size: 0.84rem;
  backdrop-filter: blur(6px);
}

.split-copy h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin: 16px 0 14px;
}

.split-copy p {
  color: var(--clr-ink-soft);
  margin-bottom: 14px;
}

/* ---------- Info Cards ---------- */
.info-card {
  text-align: center;
  align-items: center;
}

.info-card a {
  font-weight: 500;
  word-break: break-all;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--clr-brand-950);
  color: rgba(255, 255, 255, 0.78);
  padding: 76px 0 0;
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding-bottom: 52px;
}

.footer-brand .brand {
  color: var(--clr-white);
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 300px;
}

.site-footer h4 {
  color: var(--clr-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links {
  display: grid;
  gap: 11px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-links a:hover {
  color: var(--clr-gold-400);
}

.footer-contact {
  display: grid;
  gap: 12px;
}

.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footer-contact svg {
  flex: 0 0 18px;
  margin-top: 4px;
  color: var(--clr-gold-400);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 22px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-bottom a:hover {
  color: var(--clr-gold-400);
}

.footer-disclaimer {
  padding: 18px 0 34px;
  font-size: 0.74rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ---------- Reveal Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-badge { animation: none; }
  * { transition-duration: 0.01ms !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-media { max-width: 480px; margin-inline: auto; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .spotlight { grid-template-columns: 1fr; }
  .spotlight-media { max-width: 460px; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav-toggle { display: grid; }

  .main-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 20px 24px 28px;
    background: var(--clr-white);
    border-bottom: 1px solid var(--clr-line);
    box-shadow: var(--shadow-md);
    transform: translateY(-130%);
    transition: transform 0.35s var(--ease);
    z-index: 99;
  }

  .main-nav.open {
    transform: translateY(0);
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }

  .main-nav a:not(.btn) {
    padding: 12px 16px;
    font-size: 1rem;
    border-radius: var(--radius-sm);
  }

  .main-nav a.active::after { display: none; }
  .main-nav a.active { background: var(--clr-brand-50); }
  .main-nav .nav-cta { margin-top: 10px; text-align: center; }
}

@media (max-width: 720px) {
  section { padding: 64px 0; }
  .hero { padding: 64px 0 84px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .cards-2, .cards-3, .cards-4, .steps, .shop-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: 28px 22px; }
  .cta-band { padding: 52px 26px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-badge { width: 104px; height: 104px; top: -16px; right: -6px; }
  .step::before { left: 24px; }
}

@media (max-width: 440px) {
  .container { width: calc(100% - 32px); }
  .hero-actions .btn { width: 100%; }
  .trust-grid { grid-template-columns: 1fr; }
  .brand-text small { display: none; }
}
