/* ==========================================================================
   Lily Rose Vogue — global stylesheet
   Mobile-first. Breakpoints: phone (default) / tablet 601px+ / desktop 1025px+
   ========================================================================== */

:root {
  /* Brand palette — primary to non-primary: #FFCDB2, #FFB4A2, #E5989B, #B5828C */
  --color-blush: #ffcdb2;
  --color-blush-dark: #ffb4a2;
  --color-cream: #faf5ef;
  --color-cream-dark: #f2e9dd;
  --color-charcoal: #2c332c;
  --color-sage: #b5828c;
  --color-sage-dark: #96707a;
  --color-terracotta: #e5989b;
  --color-white: #ffffff;

  --color-text: var(--color-charcoal);
  --color-text-muted: #6b585c;
  --color-bg: var(--color-cream);
  --color-border: #e3dccf;

  --font-heading: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container-width: 1200px;
  --radius: 10px;
  --shadow-soft: 0 6px 24px rgba(44, 51, 44, 0.08);
  --shadow-lift: 0 12px 32px rgba(44, 51, 44, 0.14);
}

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

html {
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  font-size: clamp(1rem, 0.94rem + 0.25vw, 1.0625rem);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.6em;
  color: var(--color-charcoal);
}

h1 {
  font-size: clamp(2.1rem, 1.7rem + 2vw, 3.4rem);
}

h2 {
  font-size: clamp(1.6rem, 1.4rem + 1vw, 2.4rem);
}

h3 {
  font-size: clamp(1.15rem, 1.05rem + 0.5vw, 1.5rem);
}

p {
  margin: 0 0 1em;
}

button {
  font-family: inherit;
}

/* Visible focus for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--color-terracotta);
  outline-offset: 2px;
}

.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;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

section {
  padding: clamp(2.5rem, 2rem + 2vw, 5rem) 0;
}

/* ---- Buttons ---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  min-height: 48px;
  padding: 0.85em 1.8em;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  text-align: center;
}

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

.btn-primary {
  background: var(--color-charcoal);
  color: var(--color-cream);
}

.btn-primary:hover {
  background: #1c211c;
  box-shadow: var(--shadow-lift);
}

.btn-outline {
  background: transparent;
  border-color: var(--color-charcoal);
  color: var(--color-charcoal);
}

.btn-outline:hover {
  background: var(--color-charcoal);
  color: var(--color-cream);
}

.btn-accent {
  background: var(--color-sage);
  color: var(--color-charcoal);
}

.btn-accent:hover {
  background: var(--color-sage-dark);
  box-shadow: var(--shadow-lift);
}

.btn-block {
  width: 100%;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* ---- Header / Nav ------------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 245, 239, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--color-charcoal);
  flex-shrink: 0;
}

.logo-icon {
  width: 28px;
  height: 28px;
  color: var(--color-terracotta);
  flex-shrink: 0;
}

.main-nav ul {
  display: flex;
  gap: 1.75rem;
}

.main-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 0.5rem 0.1rem;
  position: relative;
  color: var(--color-text);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--color-terracotta);
  transition: width 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  width: 100%;
}

.main-nav a.is-active {
  color: var(--color-terracotta);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: background 0.15s ease;
}

.cart-link:hover {
  background: var(--color-cream-dark);
}

.cart-link svg {
  width: 24px;
  height: 24px;
}

.cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--color-sage);
  color: var(--color-charcoal);
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.cart-count--empty {
  background: var(--color-sage-dark);
  color: var(--color-charcoal);
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-charcoal);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle--open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle--open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle--open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav: slide-out panel */
.main-nav {
  position: fixed;
  top: 76px;
  right: 0;
  width: min(78vw, 320px);
  height: calc(100vh - 76px);
  background: var(--color-cream);
  border-left: 1px solid var(--color-border);
  transform: translateX(100%);
  transition: transform 0.25s ease;
  padding: 1.5rem;
  overflow-y: auto;
}

.main-nav--open {
  transform: translateX(0);
  box-shadow: var(--shadow-lift);
}

.main-nav ul {
  flex-direction: column;
  gap: 0.25rem;
}

.main-nav li a {
  display: block;
  padding: 0.9rem 0.25rem;
  font-size: 1.05rem;
  min-height: 44px;
}

@media (min-width: 601px) {
  .main-nav {
    width: min(60vw, 320px);
  }
}

@media (min-width: 1025px) {
  .nav-toggle {
    display: none;
  }

  .main-nav {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    border-left: none;
    transform: none;
    padding: 0;
    overflow: visible;
  }

  .main-nav ul {
    flex-direction: row;
    gap: 1.75rem;
  }

  .main-nav li a {
    padding: 0.5rem 0.1rem;
    min-height: auto;
  }
}

/* ---- Footer -------------------------------------------------------- */
.site-footer {
  background: var(--color-charcoal);
  color: #d8ddd4;
  margin-top: 4rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  padding: 3.5rem 0 2.5rem;
}

.footer-brand .logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-cream);
  font-weight: 700;
}

.footer-brand p {
  margin-top: 0.75rem;
  color: #b7c0b1;
  font-size: 0.92rem;
}

.site-footer h3 {
  color: var(--color-cream);
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.site-footer address {
  font-style: normal;
}

.site-footer a {
  color: #d8ddd4;
}

.site-footer a:hover {
  color: var(--color-blush);
}

.footer-links ul li,
.footer-contact p {
  margin-bottom: 0.5rem;
}

.social-icons {
  display: flex;
  gap: 0.75rem;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.social-icons a:hover {
  background: var(--color-sage);
  color: var(--color-charcoal);
}

.social-icons svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0;
  font-size: 0.85rem;
  color: #a1aa9b;
}

@media (min-width: 601px) {
  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1025px) {
  .footer-inner {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

/* ---- Hero ------------------------------------------------------------ */
.hero {
  position: relative;
  background:
    linear-gradient(135deg, rgba(255, 205, 178, 0.72) 0%, rgba(255, 180, 162, 0.62) 33%, rgba(229, 152, 155, 0.62) 66%, rgba(181, 130, 140, 0.72) 100%),
    url("../images/banner-hero.jpg") center 30% / cover no-repeat;
  overflow: hidden;
}

.hero-inner {
  padding: clamp(3rem, 5vw, 6rem) 0;
  max-width: 640px;
}

.hero .eyebrow {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--color-terracotta);
  margin-bottom: 1rem;
}

.hero p.lede {
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.2rem);
  color: var(--color-text-muted);
  max-width: 46ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* ---- Page header banner (non-home pages) ------------------------------ */
.page-header {
  position: relative;
  background:
    linear-gradient(135deg, rgba(255, 205, 178, 0.68) 0%, rgba(255, 180, 162, 0.6) 33%, rgba(229, 152, 155, 0.6) 66%, rgba(181, 130, 140, 0.68) 100%),
    url("../images/banner-hero.jpg") center 65% / cover no-repeat;
  border-bottom: 1px solid var(--color-border);
  padding: clamp(3rem, 5vw, 5rem) 0;
  text-align: center;
}

.page-header p {
  color: var(--color-text-muted);
  max-width: 60ch;
  margin: 0 auto;
}

.page-header--sm {
  padding: clamp(1.75rem, 2.5vw, 2.5rem) 0;
}

.page-header--sm h1 {
  font-size: clamp(1.3rem, 1.1rem + 0.6vw, 1.8rem);
  margin: 0;
}

/* ---- Section headings -------------------------------------------------- */
.section-heading {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.section-heading p {
  color: var(--color-text-muted);
}

/* ---- Product grid & cards --------------------------------------------- */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

@media (min-width: 601px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1025px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .product-grid--home {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.product-card-link {
  display: block;
}

/* Placeholder product imagery: CSS gradient block + icon + label.
   TODO: replace with real product photography — swap this block for
   an <img src="images/product-<id>.jpg" alt="..."> element. */
.product-image {
  aspect-ratio: 4 / 3;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(44, 51, 44, 0.55);
  position: relative;
}

.product-image svg {
  width: 25%;
  height: 25%;
  opacity: 0.65;
}

.product-image[data-category="himalayan-salt"] {
  background: linear-gradient(135deg, #f3c9cd 0%, #eeb6bb 100%);
}

.product-image[data-category="bath-salts"] {
  background: linear-gradient(135deg, #e4cfae 0%, #d8b98f 100%);
}

.product-image[data-category="sea-mineral-sprays"] {
  background: linear-gradient(135deg, #bcd3ce 0%, #a3b19a 100%);
}

.product-image[data-category="essential-oils"] {
  background: linear-gradient(135deg, #cdd4b4 0%, #a3b19a 100%);
}

img.product-image {
  object-fit: cover;
}

.product-image--lg {
  border-radius: var(--radius);
}

.product-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.product-category {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-terracotta);
}

.product-name {
  font-size: 1.1rem;
  margin: 0;
}

.product-desc {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin: 0;
  flex: 1;
}

.product-price {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-charcoal);
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.product-footer .btn {
  min-height: 44px;
  padding: 0.6em 1.2em;
  font-size: 0.9rem;
}

/* ---- Category filter bar ----------------------------------------------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.filter-btn {
  min-height: 44px;
  padding: 0.55em 1.3em;
  border-radius: 999px;
  border: 1.5px solid var(--color-border);
  background: var(--color-white);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.filter-btn:hover {
  border-color: var(--color-terracotta);
}

.filter-btn.is-active {
  background: var(--color-charcoal);
  border-color: var(--color-charcoal);
  color: var(--color-cream);
}

/* ---- Why choose us ------------------------------------------------------ */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

@media (min-width: 601px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1025px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  text-align: center;
  padding: 2rem 1.25rem;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.feature-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-cream-dark);
  color: var(--color-terracotta);
}

.feature-icon svg {
  width: 26px;
  height: 26px;
}

.feature-card h3 {
  margin-bottom: 0.4rem;
}

.feature-card p {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  margin: 0;
}

/* ---- Testimonials -------------------------------------------------- */
.testimonial-strip {
  background: var(--color-sage);
  color: var(--color-charcoal);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 601px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.testimonial-card p.quote {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 0.75rem;
}

.testimonial-card .attribution {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ---- Two-column content blocks (About) --------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1025px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
  .split--reverse .split-media {
    order: 2;
  }
}

.split-media .product-image {
  aspect-ratio: 5 / 4;
  border-radius: var(--radius);
}

/* ---- Forms -------------------------------------------------------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 601px) {
  .form-grid--2col {
    grid-template-columns: 1fr 1fr;
  }
  .form-grid--2col .field--full {
    grid-column: 1 / -1;
  }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field label {
  font-weight: 600;
  font-size: 0.9rem;
}

.field .required {
  color: var(--color-terracotta);
}

.field input,
.field textarea,
.field select {
  min-height: 48px;
  padding: 0.7em 0.9em;
  border-radius: 8px;
  border: 1.5px solid var(--color-border);
  background: var(--color-white);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
}

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

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--color-terracotta);
}

.form-note {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.form-success {
  display: none;
  background: var(--color-sage);
  color: var(--color-charcoal);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}

.form-success.is-visible {
  display: block;
}

/* ---- Cart page -------------------------------------------------------- */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 1025px) {
  .cart-layout {
    grid-template-columns: 2fr 1fr;
    align-items: start;
  }
}

.cart-item {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--color-border);
  align-items: center;
}

.cart-item .product-image {
  width: 84px;
  height: 84px;
  aspect-ratio: auto;
  border-radius: 8px;
}

.cart-item-details h3 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.cart-item-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--color-border);
  border-radius: 999px;
  overflow: hidden;
}

.qty-control button {
  width: 36px;
  height: 36px;
  border: none;
  background: var(--color-cream-dark);
  font-size: 1.1rem;
  cursor: pointer;
  line-height: 1;
}

.qty-control input {
  width: 40px;
  border: none;
  text-align: center;
  font-size: 1rem;
  height: 36px;
  -moz-appearance: textfield;
}

.remove-btn {
  background: none;
  border: none;
  color: var(--color-terracotta);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0.5rem;
  min-height: 44px;
}

.cart-summary {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 1.75rem;
  position: sticky;
  top: 96px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
}

.summary-row.total {
  font-weight: 700;
  font-size: 1.15rem;
  border-top: 1px solid var(--color-border);
  margin-top: 0.5rem;
  padding-top: 1rem;
}

.empty-state {
  text-align: center;
  padding: 3rem 1rem;
}

.empty-state p {
  color: var(--color-text-muted);
}

/* ---- Product detail page ------------------------------------------------ */
.product-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 1025px) {
  .product-detail {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.product-detail .product-image {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
}

.product-detail-info .product-price {
  font-size: 1.5rem;
  margin: 0.75rem 0 1.25rem;
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.related-sizes {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

.related-sizes ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.75rem;
}

.related-sizes a {
  display: inline-block;
  padding: 0.5em 1em;
  border-radius: 999px;
  border: 1.5px solid var(--color-border);
  font-size: 0.88rem;
  font-weight: 600;
}

.related-sizes a.is-current {
  background: var(--color-charcoal);
  color: var(--color-cream);
  border-color: var(--color-charcoal);
}

/* ---- Contact page ------------------------------------------------------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 1025px) {
  .contact-layout {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info-card {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}

.contact-info-card h3 {
  margin-bottom: 0.75rem;
}

.contact-info-card .icon-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.contact-info-card svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-terracotta);
  margin-top: 2px;
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 3;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---- Contact teaser (home) --------------------------------------------- */
.contact-teaser {
  background: var(--color-charcoal);
  color: var(--color-cream);
  border-radius: var(--radius);
  padding: clamp(2rem, 3vw, 3.5rem);
  text-align: center;
}

.contact-teaser p {
  color: #c9d1c4;
  max-width: 50ch;
  margin: 0 auto 1.5rem;
}

.contact-teaser .hero-actions {
  justify-content: center;
}

/* ---- Utility sections --------------------------------------------------- */
.bg-alt {
  background: var(--color-cream-dark);
}

.text-center {
  text-align: center;
}
