/* ================================================================
   Nolea — Homepage v2.0
   Palette: Ivory #F5EFE3 · Champagne #E8D5B7 · Burgundy #4D0026
            Gold #C4973A · Reading #4E3829 · Ink #1A0F08
            Muted #7A5C4A · Wine #850035
   Fonts:   Cormorant Garamond · Great Vibes · Josefin Sans 100–300
   Rules:   NO text-shadow · NO IntersectionObserver
================================================================ */

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

:root {
  --ivory:     #F5EFE3;
  --champagne: #E8D5B7;
  --burgundy:  #4D0026;
  --wine:      #850035;
  --gold:      #C4973A;
  --ink:       #1A0F08;
  --reading:   #4E3829;
  --muted:     #7A5C4A;
  --hairline:  rgba(77,0,38,0.18);
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-script: 'Great Vibes', cursive;
  --font-sans:   'Josefin Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  overflow-x: hidden;
  background: var(--ivory);
  color: var(--reading);
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

/* ── Utilities ── */
.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;
}
.skip-link {
  position: absolute; top: -40px; left: 16px;
  background: var(--burgundy); color: var(--ivory);
  font-family: var(--font-sans); font-size: 11px; font-weight: 300;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 8px 16px; text-decoration: none; z-index: 9999;
  transition: top 0.15s;
}
.skip-link:focus { top: 8px; }
.gold-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.5; border: none; margin: 0;
}
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 48px; }
.s-label {
  font-family: var(--font-sans); font-size: 10px; font-weight: 200;
  letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 14px;
}
.s-title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 500; font-style: italic; color: var(--ink);
  line-height: 1.22; margin-bottom: 16px;
}
.s-intro { font-size: 17px; color: var(--muted); line-height: 1.8; max-width: 560px; }
@media (max-width: 768px) { .wrap { padding: 0 24px; } }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--font-sans); font-size: 10px; font-weight: 300;
  letter-spacing: 0.28em; text-transform: uppercase;
  text-decoration: none; padding: 15px 34px; cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  border: 0.5px solid transparent;
}
.btn:focus-visible { outline: 1.5px solid var(--gold); outline-offset: 3px; }
.btn--gold   { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn--gold:hover { background: #D4A84C; border-color: #D4A84C; }
.btn--ghost  { background: transparent; color: rgba(245,239,227,0.86); border-color: rgba(245,239,227,0.34); }
.btn--ghost:hover { border-color: rgba(245,239,227,0.7); color: #fff; }
.btn--outline { background: transparent; color: var(--burgundy); border-color: rgba(77,0,38,0.35); }
.btn--outline:hover { border-color: var(--burgundy); }
.btn--wine   { background: var(--wine); color: var(--ivory); border-color: var(--wine); }
.btn--wine:hover { background: #6E002C; border-color: #6E002C; }

/* ─── NAVIGATION ─── */
.nav {
  position: sticky; top: 0; z-index: 500;
  background: rgba(245,239,227,0.97);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-bottom: 0.5px solid rgba(196,151,58,0.22);
}
.nav__inner {
  max-width: 1100px; margin: 0 auto; padding: 0 48px;
  height: 60px; display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
}
.nav__brand { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.nav__logo { height: 28px; width: auto; display: block; }
.nav__links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav__links a {
  font-family: var(--font-sans); font-size: 10.5px; font-weight: 300;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--reading); text-decoration: none;
  padding-bottom: 2px; border-bottom: 0.5px solid transparent;
  transition: color 0.2s, border-color 0.2s; white-space: nowrap;
}
.nav__links a:hover { color: var(--wine); border-bottom-color: rgba(133,0,53,0.35); }
.nav__links a:focus-visible { outline: 1.5px solid var(--gold); outline-offset: 3px; border-radius: 1px; }
.nav__hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 28px; height: 28px;
  background: none; border: none; cursor: pointer; padding: 0; flex-shrink: 0;
}
.nav__hamburger span {
  display: block; width: 100%; height: 0.5px; background: var(--burgundy);
  transition: transform 0.25s, opacity 0.2s; transform-origin: center;
}
.nav__hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
.nav__mobile { display: none; background: rgba(245,239,227,0.99); border-top: 0.5px solid rgba(196,151,58,0.22); }
.nav__mobile.is-open { display: block; }
.nav__mobile ul { list-style: none; padding: 8px 24px 20px; }
.nav__mobile ul li { border-bottom: 0.5px solid var(--hairline); }
.nav__mobile ul li:last-child { border-bottom: none; }
.nav__mobile ul a {
  display: block; font-family: var(--font-sans); font-size: 11px; font-weight: 300;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--reading);
  text-decoration: none; padding: 14px 0; transition: color 0.2s;
}
.nav__mobile ul a:hover { color: var(--wine); }
@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav__inner { padding: 0 24px; }
}

/* ─── HERO ─── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-image: url('photos/photo-camilla-cellar-dramatic.jpg');
  background-size: cover; background-position: center 25%;
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(8,1,4,0.78) 0%, rgba(20,3,10,0.65) 50%, rgba(8,1,4,0.82) 100%);
}
.hero__inner {
  position: relative; z-index: 2;
  text-align: center; max-width: 720px; padding: 140px 40px 120px;
}
.hero__eyebrow {
  font-family: var(--font-sans); font-size: 9.5px; font-weight: 200;
  letter-spacing: 0.42em; text-transform: uppercase;
  color: rgba(196,151,58,0.75); margin-bottom: 36px;
  display: flex; align-items: center; justify-content: center; gap: 16px;
}
.hero__eyebrow::before, .hero__eyebrow::after {
  content: ""; display: block; width: 40px; height: 0.5px;
  background: rgba(196,151,58,0.38); flex-shrink: 0;
}
.hero__wordmark-img { display: block; margin: 0 auto 16px; height: 58px; width: auto; opacity: 0.95; }
.hero__rule {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; margin: 16px auto 34px; max-width: 280px;
}
.hero__rule hr { flex: 1; border: none; border-top: 0.5px solid rgba(196,151,58,0.32); }
.hero__diamond { width: 5px; height: 5px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; opacity: 0.65; }
.hero__h1 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 400; font-style: italic;
  color: rgba(245,239,227,0.97); line-height: 1.22;
  letter-spacing: -0.01em; margin-bottom: 18px;
}
.hero__sub {
  font-family: var(--font-sans); font-size: 10.5px; font-weight: 300;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(196,151,58,0.88); margin-bottom: 28px;
}
.hero__intro {
  font-family: var(--font-serif); font-size: 19px;
  color: rgba(245,239,227,0.80); line-height: 1.78;
  max-width: 520px; margin: 0 auto 52px;
}
.hero__ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero__scroll { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); z-index: 2; }
.hero__scroll-line { width: 0.5px; height: 44px; background: linear-gradient(to bottom, rgba(196,151,58,0.55), transparent); margin: 0 auto; }
@media (max-width: 768px) {
  .hero__inner { padding: 100px 24px 80px; }
  .hero__wordmark-img { height: 40px; }
}

/* ─── VALUE PROPS ─── */
.value-props { background: var(--ivory); padding: 100px 0; }
.vp-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 0; border: 0.5px solid var(--hairline);
}
.vp-item { padding: 52px 44px; border-right: 0.5px solid var(--hairline); position: relative; }
.vp-item:last-child { border-right: none; }
.vp-num {
  font-family: var(--font-sans); font-size: 9.5px; font-weight: 200;
  letter-spacing: 0.36em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 24px;
}
.vp-stamp { position: absolute; top: 20px; right: 20px; width: 60px; height: 60px; opacity: 0.12; pointer-events: none; }
.vp-title {
  font-family: var(--font-serif); font-size: 28px; font-weight: 500;
  font-style: italic; color: var(--burgundy); line-height: 1.2; margin-bottom: 14px;
}
.vp-body { font-size: 16px; color: var(--reading); line-height: 1.78; }
@media (max-width: 900px) {
  .vp-grid { grid-template-columns: 1fr; }
  .vp-item { border-right: none; border-bottom: 0.5px solid var(--hairline); padding: 44px 32px; }
  .vp-item:last-child { border-bottom: none; }
}
@media (max-width: 768px) { .value-props { padding: 72px 0; } }

/* ─── CLIENT LOGOS ─── */
.clients { background: var(--champagne); padding: 72px 0; }
.clients__head { text-align: center; margin-bottom: 44px; }
.clients__head .s-title { font-size: clamp(22px, 2.5vw, 30px); color: var(--ink); margin-bottom: 8px; }
.clients__head .s-intro { margin: 0 auto; }
.clients__track {
  display: flex; align-items: center; flex-wrap: wrap;
  justify-content: center; gap: 32px 48px;
}
.client-logo {
  display: flex; align-items: center; justify-content: center;
  height: 34px; opacity: 0.38;
  filter: grayscale(100%) contrast(0.85);
  transition: opacity 0.35s, filter 0.35s;
}
.client-logo:hover { opacity: 0.82; filter: grayscale(0%) contrast(1); }
.client-logo img { height: 100%; width: auto; max-width: 110px; object-fit: contain; display: block; }
@media (max-width: 768px) {
  .clients { padding: 56px 0; }
  .clients__track { gap: 24px 32px; }
  .client-logo { height: 26px; }
}

/* ─── SERVICE PILLARS ─── */
.services { background: var(--ivory); padding: 100px 0; }
.services__head { text-align: center; margin-bottom: 60px; }
.svc-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; background: rgba(196,151,58,0.2);
}
.svc-card { background: var(--ivory); overflow: hidden; }
.svc-card__photo { position: relative; height: 260px; overflow: hidden; }
.svc-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block; transition: transform 0.55s ease;
}
.svc-card:hover .svc-card__photo img { transform: scale(1.04); }
.svc-card__photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(10,2,6,0.36) 100%);
  pointer-events: none;
}
.svc-card__body { padding: 44px 48px; }
.svc-tag {
  font-family: var(--font-sans); font-size: 9.5px; font-weight: 300;
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--wine);
  display: inline-block; margin-bottom: 22px;
  padding-bottom: 8px; border-bottom: 0.5px solid rgba(133,0,53,0.22);
}
.svc-title {
  font-family: var(--font-serif); font-size: 32px; font-weight: 500;
  font-style: italic; color: var(--burgundy); line-height: 1.2; margin-bottom: 18px;
}
.svc-body { font-size: 16.5px; color: var(--reading); line-height: 1.78; margin-bottom: 32px; }
.svc-occasions {
  list-style: none; border-top: 0.5px solid var(--hairline);
  padding-top: 24px; display: flex; flex-direction: column; gap: 9px; margin-bottom: 32px;
}
.svc-occasions li {
  font-family: var(--font-sans); font-size: 9.5px; font-weight: 300;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted);
  padding-left: 16px; position: relative;
}
.svc-occasions li::before { content: "—"; position: absolute; left: 0; color: var(--gold); }
.svc-link {
  display: inline-block; font-family: var(--font-sans); font-size: 9.5px; font-weight: 300;
  letter-spacing: 0.26em; text-transform: uppercase; color: var(--burgundy);
  text-decoration: none; padding-bottom: 3px; border-bottom: 0.5px solid rgba(77,0,38,0.28);
  transition: color 0.2s, border-color 0.2s;
}
.svc-link:hover { color: var(--wine); border-bottom-color: var(--wine); }
@media (max-width: 768px) {
  .services { padding: 72px 0; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-card__body { padding: 36px 28px; }
  .svc-card__photo { height: 220px; }
}

/* ─── TASTING THEMES ─── */
.themes { background: var(--champagne); padding: 100px 0; }
.themes__head { text-align: center; margin-bottom: 60px; }
.theme-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: rgba(196,151,58,0.2);
}
.theme-card { background: var(--ivory); overflow: hidden; display: flex; flex-direction: column; }
.theme-card__photo { position: relative; height: 200px; overflow: hidden; }
.theme-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block; transition: transform 0.55s ease;
}
.theme-card:hover .theme-card__photo img { transform: scale(1.05); }
.theme-card__photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(10,2,6,0.42) 100%);
  pointer-events: none;
}
.theme-card__body { padding: 30px 32px 40px; flex: 1; }
.theme-num {
  font-family: var(--font-sans); font-size: 9px; font-weight: 200;
  letter-spacing: 0.38em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 14px;
}
.theme-name {
  font-family: var(--font-serif); font-size: 24px; font-weight: 500;
  font-style: italic; color: var(--burgundy); margin-bottom: 10px; line-height: 1.2;
}
.theme-desc { font-size: 15.5px; color: var(--reading); line-height: 1.72; }
@media (max-width: 900px) { .theme-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .theme-grid { grid-template-columns: 1fr; } }
@media (max-width: 768px) { .themes { padding: 72px 0; } }

/* ─── ABOUT ─── */
.about { background: #EDE5D4; padding: 100px 0; position: relative; overflow: hidden; }
.about__wine-ring {
  position: absolute; bottom: -80px; right: -80px;
  width: 360px; height: auto; opacity: 0.08; pointer-events: none; user-select: none;
}
.about__inner {
  max-width: 1100px; margin: 0 auto; padding: 0 48px;
  display: grid; grid-template-columns: 1fr 1.65fr;
  gap: 80px; align-items: center; position: relative; z-index: 1;
}
.about__photo-wrap { position: relative; }
.about__photo-wrap::before {
  content: ""; position: absolute;
  top: -16px; left: -16px; right: 16px; bottom: 16px;
  border: 0.5px solid rgba(196,151,58,0.38); pointer-events: none;
}
.about__photo { aspect-ratio: 3/4; overflow: hidden; border: 0.5px solid var(--hairline); position: relative; }
.about__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.about__stamp {
  position: absolute; bottom: -20px; right: -20px;
  width: 90px; height: 90px; opacity: 0.9; z-index: 2;
}
.about__text { position: relative; }
.about__script {
  font-family: var(--font-script);
  font-size: clamp(40px, 4vw, 62px);
  color: var(--burgundy); line-height: 1.15; margin-bottom: 28px;
}
.about__body { font-size: 17px; color: var(--reading); line-height: 1.82; margin-bottom: 28px; }
.about__quote {
  font-style: italic; color: var(--muted); font-size: 16px;
  border-left: 1.5px solid rgba(196,151,58,0.5);
  padding: 4px 0 4px 20px; margin-bottom: 32px;
}
.about__signature { display: block; width: 160px; height: auto; margin-bottom: 20px; opacity: 0.72; }
@media (max-width: 900px) {
  .about__inner { grid-template-columns: 1fr; gap: 48px; padding: 0 24px; }
  .about__photo-wrap { max-width: 320px; margin: 0 auto; }
}
@media (max-width: 768px) { .about { padding: 72px 0; } }

/* ─── REVIEWS ─── */
.reviews { background: var(--burgundy); padding: 100px 0; }
.reviews__head { text-align: center; margin-bottom: 56px; }
.reviews__head .s-label { color: rgba(196,151,58,0.75); }
.reviews__head .s-title { color: rgba(245,239,227,0.96); }
.reviews__badge {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(245,239,227,0.07); border: 0.5px solid rgba(196,151,58,0.28);
  padding: 11px 22px; margin-bottom: 12px;
}
.reviews__stars { display: flex; gap: 3px; }
.reviews__stars svg { width: 13px; height: 13px; fill: var(--gold); }
.reviews__score {
  font-family: var(--font-sans); font-size: 12px; font-weight: 300;
  letter-spacing: 0.15em; color: rgba(245,239,227,0.9);
}
.reviews__count {
  font-family: var(--font-sans); font-size: 10px; font-weight: 200;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(245,239,227,0.45); display: block; margin-bottom: 52px;
}
.reviews__grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2px; background: rgba(196,151,58,0.12);
}
.review-card { background: rgba(55,0,26,0.7); padding: 40px 44px; }
.review-card__quote {
  font-family: var(--font-serif); font-size: 17px; font-style: italic;
  color: rgba(245,239,227,0.82); line-height: 1.72; margin-bottom: 28px;
  position: relative;
}
.review-card__quote::before {
  content: "\201C";
  font-family: var(--font-serif); font-size: 52px; line-height: 0.8;
  color: rgba(196,151,58,0.25); display: block; margin-bottom: 10px;
}
.review-card__stars { display: flex; gap: 3px; margin-bottom: 16px; }
.review-card__stars svg { width: 11px; height: 11px; fill: var(--gold); }
.review-card__author {
  font-family: var(--font-sans); font-size: 9.5px; font-weight: 300;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: rgba(196,151,58,0.65);
}
@media (max-width: 768px) {
  .reviews { padding: 72px 0; }
  .reviews__grid { grid-template-columns: 1fr; }
  .review-card { padding: 32px 28px; }
}

/* ─── FAQ ─── */
.faq { background: var(--ivory); padding: 100px 0; }
.faq__head { text-align: center; margin-bottom: 60px; }
.faq__list { max-width: 760px; margin: 0 auto; }
.faq-item { border-top: 0.5px solid var(--hairline); }
.faq-item:last-child { border-bottom: 0.5px solid var(--hairline); }
.faq-btn {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 20px; width: 100%; background: none; border: none; cursor: pointer;
  padding: 22px 0; text-align: left; transition: color 0.2s;
}
.faq-btn__text {
  font-family: var(--font-serif); font-size: 20px; font-weight: 400;
  color: var(--ink); line-height: 1.45; flex: 1;
}
.faq-btn:hover .faq-btn__text { color: var(--wine); }
.faq-btn__icon {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 4px;
  position: relative; color: var(--gold);
}
.faq-btn__icon::before, .faq-btn__icon::after {
  content: ""; position: absolute; background: currentColor; border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}
.faq-btn__icon::before { width: 14px; height: 0.5px; top: 50%; left: 2px; transform: translateY(-50%); }
.faq-btn__icon::after  { width: 0.5px; height: 14px; left: 50%; top: 2px; transform: translateX(-50%); }
.faq-item.is-open .faq-btn__icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-body { overflow: hidden; max-height: 0; transition: max-height 0.4s ease; }
.faq-body__inner { padding: 0 0 28px; font-size: 16.5px; color: var(--reading); line-height: 1.78; }
.faq-item.is-open .faq-body { max-height: 400px; }
@media (max-width: 768px) { .faq { padding: 72px 0; } }

/* ─── NEWSLETTER ─── */
.newsletter { background: var(--burgundy); padding: 0; }
.newsletter__inner-wrap {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 480px;
}
.newsletter__photo { position: relative; overflow: hidden; }
.newsletter__photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center; display: block;
}
.newsletter__content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 72px 64px;
}
.newsletter__content .s-label { color: rgba(196,151,58,0.75); }
.newsletter__content .s-title { color: rgba(245,239,227,0.96); font-size: clamp(26px,3vw,38px); margin-bottom: 16px; }
.newsletter__sub { font-size: 17px; color: rgba(245,239,227,0.68); line-height: 1.78; margin-bottom: 44px; }
.newsletter__form { display: flex; gap: 0; max-width: 420px; }
.newsletter__input {
  flex: 1; font-family: var(--font-sans); font-size: 12px; font-weight: 300;
  letter-spacing: 0.12em; padding: 14px 20px;
  background: rgba(245,239,227,0.08); border: 0.5px solid rgba(245,239,227,0.22);
  color: var(--ivory); outline: none; -webkit-appearance: none;
  transition: border-color 0.2s;
}
.newsletter__input::placeholder { color: rgba(245,239,227,0.35); }
.newsletter__input:focus { border-color: rgba(196,151,58,0.55); }
.newsletter__btn {
  font-family: var(--font-sans); font-size: 10px; font-weight: 300;
  letter-spacing: 0.26em; text-transform: uppercase;
  background: var(--gold); color: var(--ink);
  border: 0.5px solid var(--gold); padding: 14px 26px;
  cursor: pointer; white-space: nowrap;
  transition: background 0.25s, border-color 0.25s;
}
.newsletter__btn:hover { background: #D4A84C; border-color: #D4A84C; }
@media (max-width: 900px) {
  .newsletter__inner-wrap { grid-template-columns: 1fr; }
  .newsletter__photo { height: 300px; }
  .newsletter__content { padding: 56px 40px; }
}
@media (max-width: 600px) {
  .newsletter__content { padding: 48px 24px; }
  .newsletter__form { flex-direction: column; }
  .newsletter__input { border-bottom: none; }
}

/* ─── CONTACT ─── */
.contact { background: var(--ivory); padding: 100px 0; }
.contact__head { text-align: center; margin-bottom: 60px; }
.contact__head .s-intro { margin: 0 auto; text-align: center; }
.contact__grid {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 80px; align-items: start;
}
.contact__info { padding-top: 8px; }
.contact__info-item {
  margin-bottom: 32px; padding-bottom: 28px;
  border-bottom: 0.5px solid var(--hairline);
}
.contact__info-item:last-child { border-bottom: none; margin-bottom: 0; }
.contact__info-label {
  font-family: var(--font-sans); font-size: 9.5px; font-weight: 300;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: 8px;
}
.contact__info-value { font-size: 17px; color: var(--reading); line-height: 1.6; }
.contact__info-value a {
  color: var(--burgundy); text-decoration: none;
  border-bottom: 0.5px solid rgba(77,0,38,0.25); transition: color 0.2s;
}
.contact__info-value a:hover { color: var(--wine); }
.form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-family: var(--font-sans); font-size: 9.5px; font-weight: 300;
  letter-spacing: 0.26em; text-transform: uppercase; color: var(--muted);
}
.form-input, .form-textarea {
  font-family: var(--font-serif); font-size: 16px;
  color: var(--ink); background: transparent;
  border: none; border-bottom: 0.5px solid rgba(77,0,38,0.25);
  padding: 10px 0; outline: none; transition: border-color 0.2s;
}
.form-input:focus, .form-textarea:focus { border-bottom-color: var(--gold); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted); opacity: 0.5; }
.form-textarea { resize: vertical; min-height: 120px; }
@media (max-width: 768px) {
  .contact { padding: 72px 0; }
  .contact__grid { grid-template-columns: 1fr; gap: 52px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ─── FOOTER ─── */
.footer { background: var(--ink); color: rgba(245,239,227,0.7); padding: 72px 0 40px; }
.footer__main {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr 1.4fr;
  gap: 48px; margin-bottom: 56px;
}
.footer__logo { height: 30px; width: auto; display: block; margin-bottom: 16px; opacity: 0.88; }
.footer__tagline { font-size: 15px; color: rgba(245,239,227,0.48); line-height: 1.7; font-style: italic; }
.footer__col-title {
  font-family: var(--font-sans); font-size: 9px; font-weight: 200;
  letter-spacing: 0.34em; text-transform: uppercase;
  color: rgba(196,151,58,0.65); margin-bottom: 20px;
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-family: var(--font-sans); font-size: 10.5px; font-weight: 300;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(245,239,227,0.55); text-decoration: none; transition: color 0.2s;
}
.footer__links a:hover { color: rgba(245,239,227,0.9); }
.footer__mini-form { display: flex; flex-direction: column; gap: 0; }
.footer__mini-input {
  font-family: var(--font-sans); font-size: 11px; font-weight: 300;
  letter-spacing: 0.1em; padding: 12px 14px;
  background: rgba(245,239,227,0.06); border: 0.5px solid rgba(245,239,227,0.14);
  color: rgba(245,239,227,0.85); outline: none; -webkit-appearance: none;
  transition: border-color 0.2s; margin-bottom: 8px;
}
.footer__mini-input::placeholder { color: rgba(245,239,227,0.28); }
.footer__mini-input:focus { border-color: rgba(196,151,58,0.4); }
.footer__mini-btn {
  font-family: var(--font-sans); font-size: 9.5px; font-weight: 300;
  letter-spacing: 0.24em; text-transform: uppercase;
  background: transparent; color: rgba(196,151,58,0.75);
  border: 0.5px solid rgba(196,151,58,0.3); padding: 11px 20px;
  cursor: pointer; align-self: flex-start;
  transition: color 0.2s, border-color 0.2s;
}
.footer__mini-btn:hover { color: var(--gold); border-color: rgba(196,151,58,0.6); }
.footer__bottom {
  border-top: 0.5px solid rgba(245,239,227,0.08);
  padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.footer__copy {
  font-family: var(--font-sans); font-size: 9.5px; font-weight: 200;
  letter-spacing: 0.2em; text-transform: uppercase; color: rgba(245,239,227,0.28);
}
.footer__credit {
  font-family: var(--font-sans); font-size: 9.5px; font-weight: 200;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(245,239,227,0.2); font-style: italic;
}
@media (max-width: 900px) { .footer__main { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 600px) { .footer__main { grid-template-columns: 1fr; gap: 40px; } }
