/* =============================================
   Ki&CO — Luxury Skincare Static Site
   ============================================= */

:root {
  --ivory: #FAF7F2;
  --cream: #F5EDE3;
  --beige: #E8DDD0;
  --sand: #D4C4B0;
  --gold: #C9A96E;
  --soft-gold: #D4B896;
  --nude-pink: #E8C4B8;
  --warm-blush: #F0D5CC;
  --charcoal: #3D3630;
  --espresso: #2A2520;
  --white: #FFFFFF;
  --glass-bg: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.45);
  --shadow: 0 8px 32px rgba(61, 54, 48, 0.08);
  --shadow-lg: 0 16px 48px rgba(61, 54, 48, 0.12);
  --radius: 20px;
  --radius-sm: 12px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---- Typography ---- */
.section__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--espresso);
  margin-bottom: 20px;
}

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

.section__subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--charcoal);
  opacity: 0.85;
  max-width: 560px;
  line-height: 1.7;
}

.section__header {
  margin-bottom: 56px;
}

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

.section__header--center .section__subtitle {
  margin: 0 auto;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--espresso);
  color: var(--ivory);
}

.btn--primary:hover {
  background: var(--gold);
  color: var(--espresso);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn--outline {
  background: transparent;
  color: var(--espresso);
  border: 1px solid var(--sand);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.15);
  color: var(--ivory);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.28);
}

.btn--sm {
  padding: 10px 22px;
  font-size: 0.78rem;
}

.btn--full {
  width: 100%;
}

/* ---- Header ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}

.header--scrolled {
  background: rgba(250, 247, 242, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 196, 176, 0.3);
  padding: 12px 0;
  box-shadow: var(--shadow);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo__brand {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--espresso);
}

.logo__tagline {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}

.nav__list {
  display: flex;
  gap: 36px;
}

.nav__link {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  transition: color var(--transition);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav__link:hover {
  color: var(--gold);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link--active {
  color: var(--gold);
}

.nav__link--active::after {
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--espresso);
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  max-height: 900px;
  overflow: hidden;
}

.hero__slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s ease;
}

.hero__slide--active {
  opacity: 1;
  visibility: visible;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(42, 37, 32, 0.55) 0%,
    rgba(42, 37, 32, 0.2) 50%,
    rgba(42, 37, 32, 0.05) 100%
  );
}

.hero__overlay--light {
  background: linear-gradient(
    105deg,
    rgba(250, 247, 242, 0.75) 0%,
    rgba(250, 247, 242, 0.4) 50%,
    rgba(250, 247, 242, 0.1) 100%
  );
}

.hero__overlay--light ~ .container .hero__glass {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(212, 196, 176, 0.4);
}

.hero__overlay--light ~ .container .hero__title,
.hero__overlay--light ~ .container .hero__text {
  color: var(--espresso);
}

.hero__overlay--light ~ .container .hero__eyebrow {
  color: var(--gold);
}

.hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero__glass {
  max-width: 560px;
  padding: 48px 44px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  animation: fadeUp 0.9s ease forwards;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--soft-gold);
  margin-bottom: 20px;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 500;
  line-height: 1.12;
  color: var(--espresso);
  margin-bottom: 20px;
}

.hero__title em {
  font-style: italic;
}

.hero__text {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 32px;
  opacity: 0.92;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__controls {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid rgba(42, 37, 32, 0.35);
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.hero__dot--active,
.hero__dot:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(42, 37, 32, 0.2);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  color: var(--espresso);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__arrow:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: var(--gold);
}

.hero__arrow--prev { left: 24px; }
.hero__arrow--next { right: 24px; }

/* ---- Sections ---- */
.section {
  padding: 100px 0;
}

/* ---- Products ---- */
.products {
  background: linear-gradient(180deg, var(--ivory) 0%, var(--cream) 100%);
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(232, 221, 208, 0.5);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

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

.product-card__image {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--cream);
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-card__image img {
  transform: scale(1.04);
}

.product-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  background: var(--espresso);
  color: var(--ivory);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
}

.product-card__badge--night {
  background: var(--gold);
  color: var(--espresso);
}

.product-card__body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__brand {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.product-card__name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--espresso);
  margin-bottom: 12px;
}

.product-card__desc {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--charcoal);
  opacity: 0.85;
  margin-bottom: 16px;
}

.product-card__benefits {
  margin-bottom: 24px;
  flex: 1;
}

.product-card__benefits li {
  position: relative;
  padding-left: 20px;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 8px;
  line-height: 1.5;
}

.product-card__benefits li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.6rem;
  top: 4px;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--beige);
}

.product-card__price {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--espresso);
}

/* ---- Results ---- */
.results {
  background: var(--cream);
}

.results__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.results__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 36px 0 40px;
}

.stat {
  text-align: center;
  padding: 20px 12px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.stat__number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat__label {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.4;
}

.results__image-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.results__image-wrap img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.results__labels {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 16px 20px;
  background: linear-gradient(transparent, rgba(42, 37, 32, 0.6));
}

.results__label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-radius: 50px;
}

.results__label--after {
  background: rgba(201, 169, 110, 0.35);
  color: var(--ivory);
}

/* ---- Blog ---- */
.blog {
  background: var(--ivory);
}

.blog__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.blog-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid rgba(232, 221, 208, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.blog-card__link {
  display: block;
}

.blog-card__image {
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.05);
}

.blog-card__body {
  padding: 28px;
}

.blog-card__date {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.blog-card__title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--espresso);
  margin-bottom: 12px;
  line-height: 1.3;
  transition: color var(--transition);
}

.blog-card:hover .blog-card__title {
  color: var(--gold);
}

.blog-card__preview {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--charcoal);
  opacity: 0.85;
  margin-bottom: 16px;
}

.blog-card__cta {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--espresso);
  transition: color var(--transition);
}

.blog-card:hover .blog-card__cta {
  color: var(--gold);
}

/* ---- Testimonials ---- */
.testimonials {
  background: linear-gradient(135deg, var(--cream) 0%, var(--warm-blush) 50%, var(--beige) 100%);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial {
  padding: 36px 32px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.testimonial:hover {
  transform: translateY(-4px);
}

.testimonial__stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.testimonial__text {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.65;
  color: var(--espresso);
  margin-bottom: 24px;
}

.testimonial__name {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--espresso);
  margin-bottom: 4px;
}

.testimonial__city {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--charcoal);
  opacity: 0.7;
}

/* ---- Newsletter ---- */
.newsletter {
  padding: 80px 0 100px;
  background: var(--ivory);
}

.newsletter__glass {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 56px 64px;
  background: linear-gradient(135deg, rgba(255,255,255,0.85) 0%, rgba(245,237,227,0.9) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 196, 176, 0.4);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.newsletter__title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--espresso);
  margin-bottom: 16px;
}

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

.newsletter__text {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--charcoal);
  opacity: 0.85;
}

.newsletter__fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.newsletter__input {
  width: 100%;
  padding: 16px 20px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--espresso);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--beige);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.newsletter__input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
}

.newsletter__input::placeholder {
  color: var(--sand);
}

.newsletter__note {
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--charcoal);
  opacity: 0.6;
  margin-top: 12px;
  line-height: 1.5;
}

/* ---- Footer ---- */
.footer {
  background: var(--espresso);
  color: rgba(250, 247, 242, 0.75);
  padding: 72px 0 32px;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .logo__brand {
  color: var(--ivory);
  font-size: 2rem;
  display: block;
  margin-bottom: 16px;
}

.footer__desc {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 320px;
}

.footer__social {
  display: flex;
  gap: 20px;
}

.footer__social a {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--soft-gold);
  transition: color var(--transition);
}

.footer__social a:hover {
  color: var(--ivory);
}

.footer__heading {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 20px;
}

.footer__links li {
  margin-bottom: 12px;
}

.footer__links a,
.footer__links li {
  font-size: 0.85rem;
  font-weight: 300;
  transition: color var(--transition);
}

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

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 0.78rem;
  font-weight: 300;
}

.footer__company {
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer__company-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 8px;
}

.footer__company-detail {
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(250, 247, 242, 0.55);
  margin-bottom: 4px;
}

.footer__legal {
  display: flex;
  gap: 24px;
}

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

/* ---- Animations ---- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .products__grid,
  .blog__grid {
    gap: 24px;
  }

  .results__inner {
    gap: 40px;
  }

  .newsletter__glass {
    padding: 40px 36px;
    gap: 36px;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(250, 247, 242, 0.97);
    backdrop-filter: blur(20px);
    padding: 100px 36px 36px;
    transition: right var(--transition);
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }

  .nav.open {
    right: 0;
  }

  .nav__list {
    flex-direction: column;
    gap: 24px;
  }

  .nav__link {
    font-size: 0.9rem;
  }

  .menu-toggle {
    display: flex;
    z-index: 1001;
  }

  .header__actions .btn--outline {
    display: none;
  }

  .hero__glass {
    padding: 32px 28px;
    max-width: 100%;
  }

  .hero__arrow {
    display: none;
  }

  .section {
    padding: 72px 0;
  }

  .products__grid,
  .blog__grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .newsletter__glass {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .product-card__footer {
    flex-direction: column;
    align-items: stretch;
  }

  .product-card__footer .btn {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
    text-align: center;
  }
}

/* =============================================
   Subpages — Contact & Legal
   ============================================= */

.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--warm-blush) 50%, var(--beige) 100%);
  text-align: center;
}

.page-hero--legal {
  padding-bottom: 64px;
}

.page-hero__inner {
  max-width: 680px;
  margin: 0 auto;
}

.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--espresso);
  margin-bottom: 20px;
}

.page-hero__title em {
  font-style: italic;
  color: var(--gold);
}

.page-hero__text {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--charcoal);
  opacity: 0.85;
}

/* ---- Contact ---- */
.contact {
  background: var(--ivory);
  padding-top: 80px;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  padding: 28px 32px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(232, 221, 208, 0.6);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.contact-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--cream);
  border-radius: 50%;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.contact-card__title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--espresso);
  margin-bottom: 10px;
}

.contact-card__text {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--charcoal);
  opacity: 0.85;
  margin-bottom: 12px;
}

.contact-card__link {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gold);
  transition: color var(--transition);
}

.contact-card__link:hover {
  color: var(--espresso);
}

.contact-card__link--secondary {
  margin-top: 8px;
  font-size: 0.85rem;
  font-weight: 400;
}

.contact-card__cities li {
  position: relative;
  padding-left: 18px;
  font-size: 0.9rem;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.contact-card__cities li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.55rem;
  top: 5px;
}

.contact-card--hours {
  background: var(--espresso);
  border-color: transparent;
}

.contact-card--hours .contact-card__title {
  color: var(--ivory);
}

.contact-hours__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.88rem;
}

.contact-hours__row:last-child {
  border-bottom: none;
}

.contact-hours__row dt {
  color: rgba(250, 247, 242, 0.7);
  font-weight: 300;
}

.contact-hours__row dd {
  color: var(--ivory);
  font-weight: 400;
  text-align: right;
}

.contact-form-glass {
  padding: 44px 40px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 196, 176, 0.5);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.contact-form__title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--espresso);
  margin-bottom: 10px;
}

.contact-form__subtitle {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--charcoal);
  opacity: 0.85;
  margin-bottom: 32px;
  line-height: 1.6;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--espresso);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--beige);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
}

.form-select {
  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 fill='%23C9A96E' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.55;
  color: var(--charcoal);
  margin-bottom: 24px;
  cursor: pointer;
}

.form-checkbox input {
  margin-top: 3px;
  accent-color: var(--gold);
  flex-shrink: 0;
}

.form-checkbox a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-checkbox a:hover {
  color: var(--espresso);
}

/* ---- Legal / Cookies ---- */
.legal {
  background: var(--ivory);
  padding-top: 64px;
}

.legal__content {
  max-width: 780px;
  margin: 0 auto;
}

.legal__intro {
  padding: 32px 36px;
  background: linear-gradient(135deg, rgba(255,255,255,0.85) 0%, rgba(245,237,227,0.9) 100%);
  border: 1px solid rgba(212, 196, 176, 0.4);
  border-radius: var(--radius);
  margin-bottom: 48px;
  box-shadow: var(--shadow);
}

.legal__intro p {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--charcoal);
}

.legal__block {
  margin-bottom: 40px;
}

.legal__block h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--espresso);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--beige);
}

.legal__block p {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--charcoal);
  margin-bottom: 14px;
}

.legal__block a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition);
}

.legal__block a:hover {
  color: var(--espresso);
}

.legal__list {
  list-style: none;
  margin: 12px 0;
}

.legal__list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.legal__list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.55rem;
  top: 6px;
}

.legal__table-wrap {
  overflow-x: auto;
  margin: 20px 0;
  border-radius: var(--radius-sm);
  border: 1px solid var(--beige);
}

.legal__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  background: var(--white);
}

.legal__table th,
.legal__table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--beige);
  vertical-align: top;
}

.legal__table th {
  background: var(--cream);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--espresso);
}

.legal__table td {
  font-weight: 300;
  line-height: 1.55;
  color: var(--charcoal);
}

.legal__table tr:last-child td {
  border-bottom: none;
}

.legal__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--beige);
}

.footer .logo__brand {
  display: inline-block;
  transition: color var(--transition);
}

.footer a.logo__brand:hover {
  color: var(--soft-gold);
}

.newsletter__note a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ---- Order Modal ---- */
.order-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.order-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.order-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(42, 37, 32, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.order-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 44px 40px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(212, 196, 176, 0.5);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  transform: translateY(20px) scale(0.98);
  transition: transform 0.35s ease;
}

.order-modal.is-open .order-modal__dialog {
  transform: translateY(0) scale(1);
}

.order-modal__close {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--cream);
  color: var(--espresso);
  font-size: 1.5rem;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.order-modal__close:hover {
  background: var(--espresso);
  color: var(--ivory);
}

.order-modal__title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--espresso);
  margin-bottom: 8px;
}

.order-modal__product {
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--beige);
}

.order-form .form-group:last-of-type {
  margin-bottom: 28px;
}

.order-modal__success {
  text-align: center;
  padding: 20px 0;
}

.order-modal__success[hidden] {
  display: none;
}

.order-success__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cream) 0%, var(--warm-blush) 100%);
  border: 2px solid var(--gold);
  border-radius: 50%;
  font-size: 2rem;
  color: var(--gold);
}

.order-success__title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--espresso);
  margin-bottom: 16px;
}

.order-success__text {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 28px;
}

.product-card__footer .order-btn {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

@media (max-width: 768px) {
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .contact-form-glass {
    padding: 28px 24px;
  }

  .legal__intro {
    padding: 24px 20px;
  }

  .legal__table th,
  .legal__table td {
    padding: 12px 14px;
    font-size: 0.82rem;
  }

  .legal__cta {
    flex-direction: column;
  }

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

  .order-modal__dialog {
    padding: 36px 24px 28px;
  }
}

/* =============================================
   Article Pages
   ============================================= */

.article {
  padding-bottom: 80px;
}

.article__header {
  padding-top: 120px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--ivory) 100%);
}

.article__header-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 40px;
}

.article__back {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  transition: color var(--transition);
}

.article__back:hover {
  color: var(--espresso);
}

.article__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--espresso);
  margin-bottom: 20px;
}

.article__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--charcoal);
  opacity: 0.75;
}

.article__featured {
  max-width: 960px;
  margin: 0 auto 56px;
  padding: 0 24px;
}

.article__featured img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.article__body {
  max-width: 680px;
  margin: 0 auto 64px;
}

.article__lead {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--espresso);
  margin-bottom: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--beige);
}

.article__body h2 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--espresso);
  margin: 36px 0 16px;
}

.article__body h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--espresso);
  margin: 28px 0 12px;
}

.article__body p {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.article__list {
  margin: 16px 0 24px;
  padding-left: 0;
}

.article__list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.article__list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.55rem;
  top: 7px;
}

.article__list--ordered {
  counter-reset: article-counter;
}

.article__list--ordered li {
  counter-increment: article-counter;
  padding-left: 32px;
}

.article__list--ordered li::before {
  content: counter(article-counter) ".";
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gold);
  top: 0;
}

.article__quote {
  margin: 36px 0;
  padding: 32px 36px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--warm-blush) 100%);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.article__quote p {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--espresso);
  margin-bottom: 12px;
}

.article__quote cite {
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--gold);
}

.article__cta {
  margin-top: 48px;
  padding: 36px 40px;
  text-align: center;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 196, 176, 0.5);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.article__cta h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--espresso);
  margin: 0 0 12px;
}

.article__cta p {
  margin-bottom: 24px;
}

.article__related {
  max-width: 960px;
  margin: 0 auto;
  padding-top: 48px;
  border-top: 1px solid var(--beige);
}

.article__related-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--espresso);
  text-align: center;
  margin-bottom: 32px;
}

.article__related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.article-related-card {
  display: block;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid rgba(232, 221, 208, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}

.article-related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.article-related-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.article-related-card span {
  display: block;
  padding: 16px 18px;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--espresso);
  line-height: 1.35;
  transition: color var(--transition);
}

.article-related-card:hover span {
  color: var(--gold);
}

@media (max-width: 768px) {
  .article__header {
    padding-top: 100px;
  }

  .article__quote {
    padding: 24px 20px;
  }

  .article__cta {
    padding: 28px 24px;
  }

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

