:root {
  --bg: #fbfaf8;
  --paper: #f4f0ec;
  --ink: #151313;
  --muted: #6c6662;
  --line: #e4ddd7;
  --wine: #733442;
  --wine-dark: #552532;
  --gold: #b9976b;
  --heading: "Playfair Display", Georgia, serif;
  --body: "Inter", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  padding: 22px clamp(24px, 5vw, 64px);
  background: rgba(251, 250, 248, 0.9);
  border-bottom: 1px solid rgba(228, 221, 215, 0.75);
  backdrop-filter: blur(16px);
}

.brand { display: grid; gap: 0; line-height: 1.1; }
.brand strong, footer strong { font-family: var(--heading); font-size: 25px; font-weight: 600; letter-spacing: 0; }
.brand span, footer span {
  color: var(--wine);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.desktop-nav { display: flex; gap: clamp(24px, 3vw, 46px); font-size: 15px; font-weight: 500; }
.desktop-nav a, footer nav a { transition: color .2s ease; }
.desktop-nav a:hover, footer nav a:hover { color: var(--wine); }

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 0;
  background: transparent;
}
.menu-button span { display: block; height: 2px; margin: 6px 0; background: var(--ink); }

.mobile-menu {
  position: absolute;
  top: 88px;
  left: 0;
  right: 0;
  display: none;
  padding: 18px 24px 24px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.mobile-menu.open { display: grid; gap: 12px; }

.section-pad { padding: clamp(84px, 10vw, 144px) clamp(24px, 5vw, 64px); }
.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(40px, 7vw, 96px);
  min-height: 100svh;
  padding-top: 128px;
}

.eyebrow, .kicker, .tag {
  color: var(--wine);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.eyebrow { display: flex; align-items: center; gap: 16px; margin: 0 0 32px; }
.eyebrow span { width: 52px; height: 1px; background: var(--wine); opacity: .55; }

h1, h2, h3 { margin: 0; font-family: var(--heading); line-height: 1.06; letter-spacing: 0; }
h1 { font-size: clamp(58px, 8vw, 112px); font-weight: 700; }
h1 span { display: block; color: var(--wine); }
h2 { max-width: 820px; font-size: clamp(38px, 5vw, 70px); font-weight: 600; }
h3 { font-size: 28px; font-weight: 600; }

.lede { max-width: 620px; margin: 32px 0 0; color: var(--muted); font-size: clamp(18px, 2vw, 23px); line-height: 1.65; }
.button-row { display: flex; gap: 16px; margin-top: 42px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 36px;
  border: 1px solid var(--line);
  font-weight: 600;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.button.primary { background: var(--wine); border-color: var(--wine); color: #fff; }
.button.primary:hover { background: var(--wine-dark); border-color: var(--wine-dark); }
.button.secondary:hover { border-color: var(--wine); color: var(--wine); }

.hero-media { position: relative; max-width: 560px; justify-self: center; }
.hero-media::before {
  content: "";
  position: absolute;
  inset: -22px;
  border: 1px solid var(--line);
  z-index: -1;
}
.hero-media img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }

.logo-band {
  display: grid;
  place-items: center;
  min-height: clamp(190px, 24vw, 300px);
  padding: clamp(46px, 7vw, 82px) 24px;
  background:
    linear-gradient(135deg, rgba(115, 52, 66, .78), rgba(21, 19, 19, .94)),
    var(--wine-dark);
}

.logo-band img {
  width: min(380px, 68vw);
  height: auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(44px, 7vw, 96px);
}
.body-copy p, .feature-copy p, .contact p { color: var(--muted); font-size: 19px; line-height: 1.85; }
.body-copy p + p { margin-top: 26px; }

.feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  gap: clamp(44px, 7vw, 84px);
  align-items: center;
  background: var(--paper);
}
.feature-image img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.feature-copy .tag { display: inline-block; margin: 18px 0 22px; color: var(--gold); letter-spacing: .24em; }
.feature-copy p { margin-top: 24px; }
blockquote {
  margin: 32px 0;
  padding-left: 24px;
  border-left: 2px solid var(--wine);
  color: var(--ink);
  font-family: var(--heading);
  font-size: 24px;
  font-style: italic;
  line-height: 1.45;
}
.text-link { color: var(--wine); font-weight: 600; border-bottom: 1px solid currentColor; }

.trusted h2, .services h2, .appearances h2, .press h2 { margin-bottom: 48px; }
.cards { display: grid; gap: 24px; }
.cards.three { grid-template-columns: repeat(3, 1fr); }
.cards.four { grid-template-columns: repeat(4, 1fr); }
.cards article, .press-grid a, .contact-form {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .42);
  padding: 32px;
}
.cards h3 { margin-bottom: 18px; font-size: 26px; }
.cards p, .press-grid p { color: var(--muted); margin: 0; }
.cards .tag { margin-bottom: 18px; color: var(--wine); letter-spacing: .2em; }

.services { background: #fff; }
.services .cards article { min-height: 280px; }

.appearance-list { display: grid; gap: 34px; }
.appearance-list article {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 34px;
}
.appearance-list img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.appearance-list span {
  color: var(--wine);
  font-family: var(--heading);
  font-size: 42px;
  font-weight: 600;
}
.appearance-list p { color: var(--muted); margin: 16px 0 0; font-size: 18px; }

.press { background: var(--paper); }
.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.press-grid a { min-height: 220px; transition: transform .2s ease, border-color .2s ease; }
.press-grid a:hover { transform: translateY(-4px); border-color: var(--wine); }
.press-grid span { color: var(--wine); font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.press-grid h3 { margin: 18px 0 12px; font-size: 27px; }

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
  gap: clamp(42px, 7vw, 96px);
}
.contact h2 { margin-bottom: 28px; }
.email-link {
  display: grid;
  gap: 4px;
  margin-top: 34px;
  color: var(--wine);
  font-size: 20px;
  font-weight: 600;
}
.email-link span, .location span { color: var(--muted); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; }
.location { display: grid; gap: 2px; margin-top: 28px; color: var(--ink) !important; font-weight: 600; }

.contact-form { display: grid; gap: 18px; }
.contact-form h3 { margin-bottom: 6px; }
label { display: grid; gap: 8px; color: var(--muted); font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink);
  font: inherit;
  letter-spacing: 0;
  padding: 14px 16px;
  text-transform: none;
}
textarea { resize: vertical; }
.form-honey { display: none; }
.form-status {
  display: none;
  margin: 0;
  border: 1px solid var(--line);
  padding: 14px 16px;
  font-size: 15px;
  line-height: 1.5;
}
.form-status.success {
  display: block;
  border-color: rgba(115, 52, 66, .35);
  background: rgba(115, 52, 66, .08);
  color: var(--wine-dark);
}
.form-status.error {
  display: block;
  border-color: rgba(115, 52, 66, .4);
  background: rgba(115, 52, 66, .08);
  color: var(--wine-dark);
}
button:disabled {
  cursor: wait;
  opacity: .72;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 42px clamp(24px, 5vw, 64px);
  border-top: 1px solid var(--line);
}
footer div { display: grid; line-height: 1.1; }
footer nav { display: flex; gap: 24px; color: var(--muted); font-size: 14px; }
footer .social-links { color: var(--wine); font-weight: 600; }
footer p { color: var(--muted); margin: 0; font-size: 14px; }

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .menu-button { display: block; }
  .hero, .split, .feature, .contact { grid-template-columns: 1fr; }
  .hero { padding-top: 118px; }
  .hero-media { order: -1; max-width: min(560px, 84vw); }
  .cards.three, .cards.four, .press-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .site-header { min-height: 76px; padding: 16px 20px; }
  .brand strong { font-size: 20px; }
  .brand span { font-size: 8px; letter-spacing: .38em; }
  .mobile-menu { top: 76px; }
  .section-pad { padding: 72px 24px; }
  .hero { min-height: auto; padding-top: 110px; }
  .hero-media { max-width: 100%; }
  .hero-media::before { display: none; }
  .button-row { display: grid; }
  .button { width: 100%; }
  h1 { font-size: 58px; }
  h2 { font-size: 38px; }
  .cards.three, .cards.four, .press-grid, .appearance-list article { grid-template-columns: 1fr; }
  .cards article, .press-grid a, .contact-form { padding: 26px; }
  footer { align-items: flex-start; flex-direction: column; }
  footer nav { flex-wrap: wrap; }
}
