* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-bg: #faf8f5;
  --color-ink: #0f172a; /* slate-900 */
  --color-ink-soft: #1e293b; /* slate-800 */
  --color-body: #334155; /* slate-700 */
  --color-muted: #475569; /* slate-600 */

  --color-stone-100: #f5f5f4;
  --color-stone-200: #e7e5e4;
  --color-stone-300: #d6d3d1;
  --color-stone-400: #a8a29e;
  --color-stone-500: #78716c;

  --color-amber-500: #f59e0b;
  --color-amber-600: #d97706;
  --color-amber-700: #b45309;
  --color-amber-800: #92400e;
  --color-amber-900: #78350f;
  --color-amber-950: #451a03;

  --color-emerald-600: #059669;
  --color-red-600: #dc2626;
  --color-blue-500: #3b82f6;
  --color-blue-800: #1e40af;
  --color-indigo-900: #312e81;

  --radius-sm: 6px;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 28px;
  --radius-3xl: 36px;

  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 10px 30px rgba(15, 23, 42, 0.12);
  --shadow-xl: 0 20px 45px rgba(15, 23, 42, 0.1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background: var(--color-bg);
  color: var(--color-body);
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

ul {
  list-style: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.font-serif-custom,
.hero-title,
.section-title,
.promo-title,
.newsletter-title,
.footer-logo,
.logo {
  font-family: "Instrument Serif", serif;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--color-amber-900);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===== Wrapper ===== */
.wrapper {
  opacity: 0; /* GSAP fades this in on load */
  max-width: 100%;
  width: 100%;
  background: var(--color-bg);
  border-radius: var(--radius-3xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(231, 229, 228, 0.5);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .wrapper {
    padding: 3rem;
    gap: 1.2rem;
  }
}

/* ===== Navbar ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 30;
  margin: -1.5rem -1.5rem 0;
  padding: 0.4rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(250, 248, 245, 0.9);
  backdrop-filter: blur(10px);
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  border-bottom: 1px solid var(--color-stone-200);
}

@media (min-width: 768px) {
  .navbar {
    margin: -3rem -3rem 0;
    padding: 1rem 3rem;
  }
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-ink);
}

.logo-dot {
  color: var(--color-amber-800);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
  background: #efece6;
  padding: 0.375rem;
  border-radius: 999px;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  color: var(--color-muted);
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--color-ink);
}

.nav-link--active {
  background: #fff;
  font-weight: 500;
  color: var(--color-ink);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .nav-actions {
    gap: 0.75rem;
  }
}

.icon-btn {
  position: relative;
  padding: 0.625rem;
  border-radius: 999px;
  border: 1px solid var(--color-stone-300);
  color: var(--color-body);
  transition: background-color 0.2s ease;
}

.icon-btn:hover {
  background: var(--color-stone-100);
}

.icon-btn--solid {
  background: var(--color-ink);
  color: #fff;
  border-color: var(--color-ink);
}

.icon-btn--solid:hover {
  background: var(--color-ink-soft);
}

.icon {
  width: 1rem;
  height: 1rem;
}

.badge {
  position: absolute;
  top: -0.25rem;
  right: -0.25rem;
  background: var(--color-amber-800);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---- Mobile navigation ---- */
.mobile-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  margin-left: 8px;
}

.mobile-menu-btn .bar {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  position: relative;
  transition:
    transform 0.25s ease,
    opacity 0.2s ease,
    background 0.25s ease;
}

.mobile-menu-btn .bar::before,
.mobile-menu-btn .bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition:
    transform 0.25s ease,
    top 0.25s ease,
    opacity 0.2s ease;
}

.mobile-menu-btn .bar::before {
  top: -7px;
}
.mobile-menu-btn .bar::after {
  top: 7px;
}

.mobile-menu-btn[aria-expanded="true"] .bar {
  background: transparent;
}
.mobile-menu-btn[aria-expanded="true"] .bar::before {
  top: 0;
  transform: rotate(45deg);
}
.mobile-menu-btn[aria-expanded="true"] .bar::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 40;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  padding: 8px 24px 20px;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.mobile-nav a {
  padding: 12px 4px;
  font-size: 1rem;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.navbar.mobile-nav--open .mobile-nav {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
  }
  .mobile-menu-btn {
    display: inline-flex;
    color: inherit;
  }
}

/* ===== Hero grid ===== */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: stretch;
  padding-top: 0.5rem;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: repeat(12, 1fr);
  }
}

.hero-left-card {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background: var(--color-stone-200);
  min-height: 260px;
}

@media (min-width: 1024px) {
  .hero-left-card {
    grid-column: span 4;
  }
}

.hero-left-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease-out;
}

.hero-left-card:hover img {
  transform: scale(1.05);
}

.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .hero-right {
    grid-column: span 8;
  }
}

.hero-title {
  font-size: 1.875rem;
  color: var(--color-ink);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 400;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 2.25rem;
  }
  .break-sm {
    display: inline;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.accent-word {
  font-style: italic;
  font-weight: 400;
  color: var(--color-amber-900);
}

.hero-banner {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background: #d8bea3;
  min-height: 240px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .hero-banner {
    min-height: 280px;
  }
}

.hero-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  opacity: 0.9;
  transition: transform 0.7s ease-out;
}

.hero-banner:hover .hero-banner-img {
  transform: scale(1.05);
}

.cta-btn {
  position: relative;
  z-index: 10;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  color: var(--color-ink);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: background-color 0.2s ease;
}

.cta-btn:hover {
  background: #fff;
}

.cta-icon {
  color: var(--color-amber-800);
  font-size: 1.125rem;
}

/* ===== Stats bar ===== */
.stats-bar {
  padding-top: 2rem;
  border-top: 1px solid var(--color-stone-200);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .stats-bar {
    grid-template-columns: repeat(12, 1fr);
  }
}

.stats-left {
  display: flex;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .stats-left {
    grid-column: span 4;
  }
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-ink);
}

@media (min-width: 768px) {
  .stat-number {
    font-size: 1.875rem;
  }
}

.stat-label {
  font-size: 0.75rem;
  color: var(--color-stone-500);
  font-weight: 500;
}

.stat-divider {
  height: 2rem;
  width: 1px;
  background: var(--color-stone-300);
}

.stats-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #57534e;
}

@media (min-width: 640px) {
  .stats-right {
    flex-direction: row;
    align-items: center;
  }
}

@media (min-width: 768px) {
  .stats-right {
    grid-column: span 8;
  }
}

.stats-blurb {
  max-width: 28rem;
}

.rating-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #efece6;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  width: fit-content;
}

.rating-avatars {
  display: flex;
}

.rating-avatars img {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  border: 2px solid #fff;
  object-fit: cover;
  margin-left: -0.5rem;
}

.rating-avatars img:first-child {
  margin-left: 0;
}

.rating-score {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 600;
  color: var(--color-ink);
}

.star {
  color: var(--color-amber-500);
}

.rating-count {
  color: var(--color-stone-400);
  font-weight: 400;
}

/* ===== Section heading (shared) ===== */
.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 400;
  color: var(--color-ink);
}

.section-link {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-amber-900);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: color 0.2s ease;
}

.section-link:hover {
  color: var(--color-amber-700);
}

/* ===== Category grid ===== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .category-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.category-card {
  border-radius: var(--radius-xl);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  min-height: 230px;
  transition: box-shadow 0.2s ease;
}

.category-card:hover {
  box-shadow: var(--shadow-md);
}

.category-card--a {
  background: #f0ece1;
}
.category-card--b {
  background: #f8f2ea;
}
.category-card--c {
  background: #efece3;
}
.category-card--d {
  background: #ebecef;
}
.category-card--e {
  background: #f0ece3;
}

.category-name {
  font-weight: 700;
  color: var(--color-ink);
  font-size: 0.875rem;
}

.category-count {
  font-size: 0.75rem;
  color: var(--color-stone-500);
  font-weight: 500;
  margin-top: 0.125rem;
}

.category-card img {
  width: 100%;
  height: 8rem;
  object-fit: contain;
  margin-top: 0.5rem;
  transition: transform 0.5s ease;
}

.category-card:hover img {
  transform: scale(1.05);
}

/* ===== Promo section ===== */
.promo-section {
  overflow: hidden;
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(231, 229, 228, 0.6);
  background: rgba(232, 221, 209, 0.4);
}

.promo-top {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  padding: 2.5rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .promo-top {
    min-height: 420px;
    padding: 3.5rem;
  }

  .promo-content {
    width: 90vw;
  }
}

.promo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
  mix-blend-mode: multiply;
  opacity: 0.9;
}

.promo-content {
  background-color: rgba(255, 255, 255, 0.546);
  padding: 40px 20px;
  border-radius: 10px;
  position: relative;
  z-index: 10;
  max-width: 28rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.promo-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-amber-900);
  text-transform: uppercase;
}

.promo-title {
  font-size: 1.875rem;
  color: var(--color-ink);
  line-height: 1.1;
  font-weight: 400;
}

@media (min-width: 640px) {
  .promo-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 768px) {
  .promo-title {
    font-size: 3rem;
  }
}

.promo-desc {
  font-size: 0.75rem;
  color: var(--color-stone-500);
  max-width: 24rem;
}

@media (min-width: 640px) {
  .promo-desc {
    font-size: 0.875rem;
  }
}

.promo-btn-wrap {
  padding-top: 0.5rem;
}

.promo-btn {
  background: var(--color-amber-900);
  color: #fff;
  font-weight: 500;
  font-size: 0.75rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  transition:
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

@media (min-width: 640px) {
  .promo-btn {
    font-size: 0.875rem;
  }
}

.promo-btn:hover {
  background: var(--color-amber-950);
  box-shadow: var(--shadow-lg);
}

.quality-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  width: 7rem;
  height: 7rem;
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  padding: 0.5rem;
  z-index: 20;
}

@media (min-width: 640px) {
  .quality-badge {
    display: flex;
  }
}

@media (min-width: 768px) {
  .quality-badge {
    left: 45%;
  }
}

.quality-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-amber-800);
  margin-bottom: 0.25rem;
}

.quality-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-ink);
  line-height: 1.2;
}

.features-bar {
  background: rgba(231, 229, 228, 0.6);
  border-top: 1px solid rgba(214, 211, 209, 0.4);
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .features-bar {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature-icon-wrap {
  padding: 0.625rem;
  background: rgba(214, 211, 209, 0.5);
  border-radius: 999px;
  color: var(--color-ink-soft);
}

.feature-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.feature-number {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--color-ink);
}

.feature-label {
  font-size: 11px;
  color: var(--color-stone-500);
  font-weight: 500;
}

/* ===== Product grid ===== */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.product-card {
  border-radius: var(--radius-xl);
  background: rgba(245, 245, 244, 0.7);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(231, 229, 228, 0.6);
  transition: box-shadow 0.2s ease;
}

.product-card:hover {
  box-shadow: var(--shadow-md);
}

.product-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  background: var(--color-bg);
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 11rem;
}

.product-image-wrap img {
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.05);
}

.product-tag {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 0.125rem 0.625rem;
  border-radius: 999px;
}

.product-tag--bestseller {
  background: var(--color-amber-600);
}
.product-tag--new {
  background: var(--color-emerald-600);
}
.product-tag--sale {
  background: var(--color-red-600);
}

.product-info {
  margin-top: 0.75rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.product-name {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-ink);
}

.product-price-row {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 0.25rem;
}

.product-price {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-ink);
}

.product-price-old {
  font-size: 10px;
  color: var(--color-stone-400);
  text-decoration: line-through;
}

.cart-btn {
  padding: 0.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-stone-300);
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.cart-btn:hover {
  background: var(--color-amber-900);
  color: #fff;
  border-color: var(--color-amber-900);
}

.cart-icon {
  width: 0.875rem;
  height: 0.875rem;
}

/* ===== Value props ===== */
.value-props-bar {
  background: #f6f2ea;
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1px solid rgba(231, 229, 228, 0.6);
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .value-props-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .value-props-bar {
    grid-template-columns: repeat(4, 1fr);
  }
}

.prop-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.prop-icon-wrap {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: #efe9df;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.prop-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-amber-900);
}

.prop-title {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--color-ink);
}

.prop-desc {
  font-size: 0.75rem;
  color: var(--color-stone-500);
}

/* ===== Contact / Enquiry form ===== */
.contact-section {
  background: #f6f2ea;
  border: 1px solid rgba(231, 229, 228, 0.6);
  border-radius: var(--radius-2xl);
  padding: 2rem;
}

@media (min-width: 768px) {
  .contact-section {
    padding: 3rem;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 5fr 7fr;
    gap: 3.5rem;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-title {
  margin-top: 0.25rem;
  line-height: 1.15;
}

.contact-desc {
  font-size: 0.875rem;
  color: var(--color-stone-500);
  max-width: 30rem;
  line-height: 1.6;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-top: 0.5rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: var(--color-ink-soft);
}

.contact-detail-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: #efe9df;
  color: var(--color-amber-900);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 1.125rem;
  height: 1.125rem;
}

.contact-form {
  background: #fff;
  border: 1px solid var(--color-stone-200);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-field label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-ink);
}

.form-field input,
.form-field select,
.form-field textarea {
  font: inherit;
  font-size: 0.875rem;
  color: var(--color-ink-soft);
  background: var(--color-bg);
  border: 1px solid var(--color-stone-300);
  border-radius: var(--radius-md);
  padding: 0.75rem 0.875rem;
  width: 100%;
}

.form-field textarea {
  resize: vertical;
  min-height: 6rem;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--color-stone-400);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-amber-800);
}

.contact-submit {
  align-self: flex-start;
  background: var(--color-amber-900);
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.875rem 2rem;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  transition:
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-submit:hover {
  background: var(--color-amber-950);
  box-shadow: var(--shadow-lg);
}

/* ===== Footer ===== */
.footer-section {
  padding-top: 2rem;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(12, 1fr);
  }
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .footer-col--brand {
    grid-column: span 3;
  }
  .footer-col--links {
    grid-column: span 2;
  }
  .footer-col--newsletter {
    grid-column: span 3;
    gap: 1.5rem;
  }
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-ink);
}

.footer-blurb {
  font-size: 0.75rem;
  color: var(--color-stone-500);
  line-height: 1.6;
  max-width: 20rem;
}

.social-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: 0.5rem;
}

.social-btn {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: #f0ece3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #44403c;
  font-size: 0.75rem;
  font-weight: 700;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.social-btn:hover {
  background: var(--color-amber-900);
  color: #fff;
}

.footer-heading {
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--color-ink);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--color-stone-500);
  font-weight: 500;
}

.footer-list a {
  transition: color 0.2s ease;
}

.footer-list a:hover {
  color: var(--color-amber-900);
}

.newsletter-box {
  background: #f8f3ea;
  border-radius: var(--radius-xl);
  padding: 1.25rem;
  border: 1px solid rgba(231, 229, 228, 0.8);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.newsletter-title {
  font-size: 1.125rem;
  color: var(--color-ink);
  font-weight: 500;
}

.newsletter-desc {
  font-size: 11px;
  color: var(--color-stone-500);
  line-height: 1.4;
}

.newsletter-form {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: 0.25rem;
}

.newsletter-form input {
  width: 100%;
  font-size: 0.75rem;
  padding: 0.625rem 0.75rem;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--color-stone-300);
  color: #292524;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--color-amber-800);
}

.newsletter-form button {
  background: var(--color-amber-800);
  color: #fff;
  font-weight: 500;
  font-size: 0.75rem;
  padding: 0.625rem 1rem;
  border-radius: var(--radius-md);
  flex-shrink: 0;
  transition: background-color 0.2s ease;
}

.newsletter-form button:hover {
  background: var(--color-amber-900);
}

.trust-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: #57534e;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trust-icon {
  width: 1rem;
  height: 1rem;
  color: var(--color-ink-soft);
  flex-shrink: 0;
}

.trust-title {
  font-weight: 700;
  color: var(--color-ink);
  font-size: 11px;
}

.trust-desc {
  font-size: 10px;
  color: var(--color-stone-400);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-stone-200);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 11px;
  color: var(--color-stone-500);
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-bottom-links a {
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: var(--color-ink);
}

.payments-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.payments-label {
  font-size: 10px;
  font-weight: 500;
  margin-right: 0.25rem;
}

.payment-badge {
  padding: 0.125rem 0.5rem;
  background: #fff;
  border: 1px solid var(--color-stone-200);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
}

.payment-badge--visa {
  color: var(--color-blue-800);
}
.payment-badge--mc {
  color: var(--color-red-600);
}
.payment-badge--amex {
  color: var(--color-blue-500);
}
.payment-badge--paypal {
  color: var(--color-indigo-900);
}
.payment-badge--upi {
  color: var(--color-amber-700);
}

.form-message {
  margin-top: 20px;
  padding: 14px 18px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  animation: slideUp 0.35s ease;
}

.form-message.success {
  background: #ecfdf3;
  color: #15803d;
  border: 1px solid #bbf7d0;
}

.contact-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
