:root {
  --font-text: Montserrat, Arial, sans-serif;
  --font-display: var(--font-text);
  --ink: #120e0b;
  --muted: #6b6159;
  --paper: #f5efe7;
  --soft: #e7dccd;
  --wine: #5d1728;
  --moss: #3f4b39;
  --gold: #a77a3f;
  --line: rgba(18, 14, 11, 0.12);
  --white: #fffaf3;
  --deep: #0c0907;
  --veil: rgba(255, 250, 243, 0.72);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.76), rgba(245, 239, 231, 0.92) 42%, rgba(245, 239, 231, 1)),
    var(--paper);
  color: var(--ink);
  font-family: var(--font-text);
  font-weight: 400;
  letter-spacing: 0;
  text-rendering: geometricPrecision;
}

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 4vw, 58px);
  color: var(--ink);
  background: linear-gradient(180deg, rgba(255, 250, 243, 0.9), rgba(255, 250, 243, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  display: block;
  width: 154px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.nav a {
  opacity: 0.86;
  transition: opacity 180ms ease, color 180ms ease;
}

.nav a:hover {
  color: var(--gold);
  opacity: 1;
}

.nav-cta {
  padding: 11px 15px;
  border: 1px solid rgba(18, 14, 11, 0.24);
}

.hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  align-items: end;
  padding: 150px clamp(20px, 6vw, 86px) 68px;
  color: var(--ink);
  overflow: hidden;
}

.hero-media,
.split-media {
  background-position: center;
  background-size: cover;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255, 250, 243, 0.88), rgba(255, 250, 243, 0.36) 52%, rgba(255, 250, 243, 0.14)),
    linear-gradient(180deg, rgba(255, 250, 243, 0.36), rgba(245, 239, 231, 0.68)),
    url("https://images.unsplash.com/photo-1506377247377-2a5b3b417ebb?auto=format&fit=crop&w=2200&q=82");
  transform: scale(1.015);
  filter: saturate(0.96) contrast(1.02);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.eyebrow,
.section-label {
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

h1,
h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0.01em;
}

h1 {
  max-width: 820px;
  font-size: clamp(36px, 4.4vw, 58px);
}

h2 {
  font-size: clamp(26px, 2.7vw, 40px);
}

h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.28;
  letter-spacing: 0.01em;
}

p {
  line-height: 1.74;
}

.hero-copy {
  max-width: 560px;
  margin: 28px 0 0;
  font-size: 16px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 15px 20px;
  border: 1px solid transparent;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.07em;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--wine);
  color: var(--white);
}

.button-primary:hover {
  background: #48101d;
}

.button-secondary {
  border-color: rgba(18, 14, 11, 0.24);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-panel {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 62px;
  z-index: 3;
  width: min(320px, calc(100% - 40px));
  padding-left: 22px;
  border-left: 1px solid var(--gold);
  color: var(--muted);
}

.hero-panel strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.18;
}

.intro,
.services,
.producers,
.team,
.contact {
  padding: clamp(86px, 10vw, 146px) clamp(20px, 6vw, 86px);
}

.intro {
  display: grid;
  grid-template-columns: 0.7fr 1.45fr 0.9fr;
  gap: clamp(28px, 5vw, 76px);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--paper), rgba(255, 250, 243, 0.64));
}

.intro-copy p,
.split-copy p,
.contact p {
  color: var(--muted);
  font-size: 16px;
}

.metrics {
  display: grid;
  gap: 18px;
  align-content: start;
}

.metrics div {
  border-top: 1px solid rgba(18, 14, 11, 0.16);
  padding-top: 20px;
}

.metrics strong {
  display: block;
  color: var(--wine);
  font-family: var(--font-display);
  font-size: 50px;
  line-height: 1;
}

.metrics span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.45;
}

.services {
  background:
    radial-gradient(circle at 12% 18%, rgba(167, 122, 63, 0.15), transparent 34%),
    linear-gradient(180deg, #fffaf3, #efe3d2);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 48px;
}

.section-heading h2 {
  max-width: 820px;
}

.section-heading p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.service-grid,
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(18, 14, 11, 0.12);
}

.service,
.team-grid article {
  min-height: 300px;
  padding: 34px 30px;
  background: rgba(255, 250, 243, 0.72);
  transition: background 180ms ease, transform 180ms ease;
}

a.service:hover {
  background: #fffaf3;
  transform: translateY(-2px);
}

.service span {
  color: var(--gold);
  font-weight: 600;
}

.service h3 {
  margin-top: 72px;
  font-size: 21px;
}

.service p,
.team-grid p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 720px;
}

.split-media {
  background-image:
    linear-gradient(180deg, rgba(22, 18, 15, 0.06), rgba(22, 18, 15, 0.32)),
    url("https://images.unsplash.com/photo-1510812431401-41d2bd2722f3?auto=format&fit=crop&w=1500&q=82");
}

.split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(58px, 7vw, 104px);
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.5), rgba(231, 220, 205, 0.82)),
    var(--soft);
}

.split-copy ul {
  display: grid;
  gap: 16px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: var(--ink);
  font-weight: 500;
}

.split-copy li {
  padding-top: 16px;
  border-top: 1px solid rgba(22, 18, 15, 0.18);
}

.commercial-agency {
  padding: clamp(86px, 10vw, 146px) clamp(20px, 6vw, 86px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.agency-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: end;
  margin-bottom: 46px;
}

.agency-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.agency-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(18, 14, 11, 0.12);
}

.agency-grid article {
  min-height: 310px;
  padding: 34px 30px;
  background: var(--white);
  transition: background 180ms ease, transform 180ms ease;
}

.agency-grid article:hover {
  background: #fbf6ef;
  transform: translateY(-2px);
}

.agency-grid span {
  color: var(--gold);
  font-weight: 600;
}

.agency-grid h3 {
  margin-top: 66px;
  font-size: 21px;
}

.agency-grid p {
  color: var(--muted);
}

.agency-note {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 32px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 2px solid var(--gold);
}

.agency-note strong {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 400;
  line-height: 1.24;
}

.agency-note p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.fine-home {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
  padding: clamp(82px, 10vw, 136px) clamp(20px, 6vw, 86px);
  background:
    radial-gradient(circle at 22% 20%, rgba(167, 122, 63, 0.16), transparent 34%),
    linear-gradient(135deg, #fff8ed, #efe3d2);
  border-bottom: 1px solid var(--line);
}

.fine-home-logo {
  padding: clamp(12px, 2vw, 24px);
  background: rgba(255, 250, 243, 0.72);
  border: 1px solid rgba(167, 122, 63, 0.22);
  box-shadow: 0 24px 64px rgba(18, 14, 11, 0.08);
  overflow: hidden;
}

.fine-home-logo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: contain;
}

.fine-home-copy {
  max-width: 780px;
}

.fine-home-copy p {
  color: var(--muted);
  font-size: 17px;
}

.fine-home .button-secondary {
  margin-top: 12px;
  color: var(--wine);
  border-color: rgba(93, 23, 40, 0.42);
}

.producers {
  background:
    linear-gradient(180deg, rgba(245, 239, 231, 0.72), rgba(255, 250, 243, 0.88)),
    var(--paper);
  border-bottom: 1px solid var(--line);
}

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

.producer-card {
  display: grid;
  grid-template-rows: 250px 1fr;
  min-height: 530px;
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.producer-card:hover {
  transform: translateY(-3px);
  border-color: rgba(167, 122, 63, 0.44);
  box-shadow: 0 22px 44px rgba(18, 14, 11, 0.09);
}

.producer-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--soft);
  transition: transform 420ms ease;
}

.producer-card:hover img {
  transform: scale(1.035);
}

.producer-card div {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
}

.producer-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.producer-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.team {
  background:
    radial-gradient(circle at 12% 20%, rgba(167, 122, 63, 0.12), transparent 34%),
    linear-gradient(180deg, #fffaf3, #efe3d2);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.team-grid {
  grid-template-columns: repeat(3, 1fr);
  background: rgba(18, 14, 11, 0.12);
}

.team-grid article {
  min-height: 260px;
  background: rgba(255, 250, 243, 0.76);
}

.team-grid span {
  color: var(--gold);
  font-weight: 600;
}

.team-grid h3 {
  margin-top: 54px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
  background: linear-gradient(180deg, var(--paper), var(--soft));
}

.contact-box {
  display: grid;
  gap: 22px;
  padding: 38px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 22px 46px rgba(18, 14, 11, 0.08);
}

.contact-box a:first-child,
.contact-box a[href^="tel:"] {
  color: var(--wine);
  font-size: 20px;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.contact-box a[href^="tel:"] {
  font-size: 18px;
}

.contact-box span {
  color: var(--muted);
  line-height: 1.6;
}

.contact .button-secondary {
  color: var(--ink);
  border-color: var(--line);
}

.producer-page {
  background: var(--paper);
}

.producer-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 6vw, 86px);
}

.producer-brand img {
  width: 146px;
  filter: brightness(0) invert(1);
}

.back-link {
  padding: 12px 16px;
  border: 1px solid rgba(255, 250, 244, 0.54);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  transition: border-color 180ms ease, color 180ms ease;
}

.back-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.producer-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.producer-hero {
  position: relative;
  min-height: 84vh;
  display: grid;
  align-items: end;
  padding: 150px clamp(20px, 6vw, 86px) 86px;
  color: var(--white);
  overflow: hidden;
}

.producer-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 9, 7, 0.86), rgba(12, 9, 7, 0.28) 58%, rgba(12, 9, 7, 0.62)),
    linear-gradient(180deg, rgba(12, 9, 7, 0.04), rgba(12, 9, 7, 0.42));
}

.producer-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.producer-hero div {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.producer-hero h1 {
  font-size: clamp(36px, 5.4vw, 66px);
}

.producer-hero p:last-child {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 250, 243, 0.86);
  font-size: 18px;
}

.producer-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(34px, 6vw, 88px);
  padding: clamp(82px, 10vw, 132px) clamp(20px, 6vw, 86px);
}

.producer-story h2 {
  max-width: 820px;
}

.producer-story p {
  max-width: 780px;
  color: var(--muted);
  font-size: 16px;
}

.producer-facts {
  align-self: start;
  padding: 36px;
  background: var(--white);
  border-left: 2px solid var(--gold);
  box-shadow: 0 18px 40px rgba(18, 14, 11, 0.07);
}

.producer-facts span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.producer-facts strong {
  display: block;
  margin: 18px 0 12px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.08;
}

.producer-facts p {
  margin: 0;
  color: var(--muted);
}

.consulting-page {
  background: var(--paper);
}

.fine-page {
  background:
    linear-gradient(180deg, #fbf5eb, #f3eadc 58%, #fffaf3),
    var(--paper);
}

.fine-header .producer-brand img {
  filter: none;
}

.fine-header .back-link {
  color: var(--ink);
  border-color: rgba(18, 14, 11, 0.22);
}

.fine-header .back-link:hover {
  color: var(--wine);
  border-color: var(--gold);
}

.fine-hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(36px, 7vw, 110px);
  align-items: center;
  padding: 148px clamp(20px, 6vw, 86px) clamp(70px, 8vw, 112px);
  background:
    radial-gradient(circle at 18% 28%, rgba(167, 122, 63, 0.18), transparent 30%),
    radial-gradient(circle at 78% 18%, rgba(93, 23, 40, 0.08), transparent 30%);
}

.fine-logo-card {
  padding: clamp(14px, 2.4vw, 32px);
  background: rgba(255, 250, 243, 0.78);
  border: 1px solid rgba(167, 122, 63, 0.28);
  box-shadow: 0 34px 90px rgba(18, 14, 11, 0.1);
  overflow: hidden;
}

.fine-logo-card img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 440px;
  object-fit: contain;
}

.fine-copy {
  max-width: 820px;
}

.fine-copy h1 {
  font-size: clamp(34px, 4.6vw, 60px);
}

.fine-copy p:last-child {
  max-width: 690px;
  color: var(--muted);
  font-size: 18px;
}

.fine-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 86px);
  padding: clamp(78px, 10vw, 132px) clamp(20px, 6vw, 86px);
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fine-intro p {
  color: var(--muted);
  font-size: 16px;
}

.fine-grid-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: clamp(82px, 10vw, 136px) clamp(20px, 6vw, 86px);
  background:
    radial-gradient(circle at 14% 24%, rgba(167, 122, 63, 0.18), transparent 32%),
    linear-gradient(135deg, #fff8ed, #eadcc9);
}

.fine-grid-section article {
  min-height: 330px;
  padding: 34px 30px;
  background: rgba(255, 250, 243, 0.7);
  border: 1px solid rgba(167, 122, 63, 0.18);
  color: var(--ink);
}

.fine-grid-section span {
  color: var(--gold);
  font-weight: 600;
}

.fine-grid-section h3 {
  margin-top: 66px;
  font-size: 21px;
}

.fine-grid-section p {
  color: var(--muted);
}

.fine-statement {
  display: grid;
  justify-items: center;
  gap: 24px;
  padding: clamp(86px, 12vw, 160px) clamp(20px, 6vw, 86px);
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.88), rgba(245, 239, 231, 1)),
    var(--paper);
}

.fine-statement p {
  margin: 0;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fine-statement h2 {
  max-width: 980px;
}

.fine-contact-links,
.contact-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  align-items: center;
}

.fine-contact-links {
  justify-content: center;
}

.fine-contact-links a,
.contact-inline a,
.contact-inline span {
  color: var(--wine);
  font-weight: 600;
  overflow-wrap: anywhere;
}

.contact-inline {
  margin: 22px 0 0;
}

.consulting-hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  padding: 150px clamp(20px, 6vw, 86px) 86px;
  color: var(--white);
  overflow: hidden;
}

.consulting-media {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(12, 9, 7, 0.86), rgba(12, 9, 7, 0.34) 58%, rgba(12, 9, 7, 0.66)),
    linear-gradient(180deg, rgba(12, 9, 7, 0.04), rgba(12, 9, 7, 0.4)),
    url("https://lirp.cdn-website.com/b6b99501/dms3rep/multi/opt/Cazas_Novas_171-2880w.jpg");
  background-size: cover;
  background-position: center;
}

.consulting-copy {
  position: relative;
  z-index: 2;
  max-width: 960px;
}

.consulting-copy h1 {
  font-size: clamp(36px, 5.4vw, 66px);
}

.consulting-copy p:last-child {
  max-width: 760px;
  margin: 28px 0 0;
  color: rgba(255, 250, 244, 0.88);
  font-size: 18px;
}

.consulting-intro,
.consulting-fit,
.consulting-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 86px);
  padding: clamp(82px, 10vw, 132px) clamp(20px, 6vw, 86px);
  border-bottom: 1px solid var(--line);
}

.consulting-intro p {
  margin-top: 0;
  color: var(--muted);
  font-size: 16px;
}

.consulting-process {
  padding: clamp(86px, 10vw, 146px) clamp(20px, 6vw, 86px);
  background:
    radial-gradient(circle at 14% 20%, rgba(167, 122, 63, 0.16), transparent 34%),
    linear-gradient(180deg, #fffaf3, #eadcc9);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(18, 14, 11, 0.12);
}

.process-grid article {
  min-height: 310px;
  padding: 34px 30px;
  background: rgba(255, 250, 243, 0.72);
}

.process-grid span {
  color: var(--gold);
  font-weight: 600;
}

.process-grid h3 {
  margin-top: 62px;
  font-size: 21px;
}

.process-grid p {
  color: var(--muted);
}

.consulting-fit {
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.46), rgba(231, 220, 205, 0.84)),
    var(--soft);
}

.consulting-fit ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: 500;
}

.consulting-fit li {
  padding-top: 18px;
  border-top: 1px solid rgba(22, 18, 15, 0.18);
  line-height: 1.55;
}

.consulting-cta {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(167, 122, 63, 0.12), rgba(93, 23, 40, 0) 42%),
    var(--wine);
  color: var(--white);
}

.consulting-cta .button {
  justify-self: end;
  background: var(--white);
  color: var(--wine);
}

.wine-list {
  padding: clamp(70px, 9vw, 112px) clamp(20px, 6vw, 86px);
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.46), rgba(231, 220, 205, 0.84)),
    var(--soft);
  overflow-x: auto;
}

.wine-list h2 {
  max-width: 860px;
  margin-bottom: 34px;
}

.wine-list table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(18, 14, 11, 0.06);
}

.wine-list th,
.wine-list td {
  padding: 15px 18px;
  border-bottom: 1px solid rgba(22, 18, 15, 0.09);
  text-align: left;
  font-size: 14px;
}

.wine-list th {
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
  }

  .nav {
    display: flex;
    width: 100%;
    flex-wrap: nowrap;
    gap: 5px;
    margin-top: 10px;
    overflow-x: auto;
    padding-bottom: 6px;
    font-size: 8px;
    line-height: 1;
    scrollbar-width: none;
  }

  .nav a {
    flex: 0 0 auto;
    padding: 8px 9px;
    border: 1px solid rgba(18, 14, 11, 0.16);
    background: rgba(255, 250, 243, 0.54);
    opacity: 1;
    white-space: nowrap;
  }

  .nav-cta {
    padding: 8px 9px;
    border-color: rgba(93, 23, 40, 0.34);
    color: var(--wine);
  }

  .nav a[href="index-en.html"],
  .nav a[href="index.html"] {
    order: -2;
  }

  .nav-cta {
    order: -1;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 44px;
  }

  .intro,
  .contact,
  .split,
  .producer-detail,
  .consulting-intro,
  .consulting-fit,
  .consulting-cta,
  .agency-intro,
  .agency-note,
  .fine-home,
  .fine-hero,
  .fine-intro {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .team-grid,
  .producer-grid,
  .process-grid,
  .agency-grid,
  .fine-grid-section {
    grid-template-columns: 1fr 1fr;
  }

  .split-media {
    min-height: 460px;
  }
}

@media (max-width: 640px) {
  html,
  body {
    overflow-x: hidden;
  }

  .site-header {
    padding: 16px 20px 0;
  }

  .brand img {
    width: 132px;
  }

  .hero {
    min-height: auto;
    padding: 176px 20px 46px;
    align-items: start;
  }

  .hero-media {
    left: 0;
    right: 0;
    background-image:
      linear-gradient(180deg, rgba(255, 250, 243, 0.95), rgba(255, 250, 243, 0.68) 48%, rgba(245, 239, 231, 0.88)),
      url("https://images.unsplash.com/photo-1506377247377-2a5b3b417ebb?auto=format&fit=crop&w=1200&q=82");
    background-position: 58% center;
    transform: none !important;
  }

  .eyebrow,
  .section-label {
    margin-bottom: 14px;
    font-size: 9px;
    letter-spacing: 0.11em;
  }

  h1 {
    max-width: 12ch;
    font-size: 29px;
    line-height: 1.15;
  }

  h2 {
    font-size: 25px;
    line-height: 1.18;
  }

  .hero-copy {
    margin-top: 22px;
    font-size: 14px;
    line-height: 1.68;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 28px;
  }

  .button {
    min-height: 44px;
    padding: 13px 16px;
    font-size: 10px;
  }

  .hero-actions .button {
    flex: 1 1 0;
    min-width: 0;
  }

  .hero-panel {
    display: none;
  }

  .intro,
  .services,
  .commercial-agency,
  .fine-home,
  .producers,
  .team,
  .contact,
  .split,
  .consulting-intro,
  .consulting-fit,
  .consulting-process,
  .consulting-cta,
  .fine-intro,
  .fine-grid-section,
  .fine-statement,
  .producer-detail {
    padding-left: 20px;
    padding-right: 20px;
  }

  .producer-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding: 18px 20px 0;
  }

  .producer-brand img {
    width: 118px;
  }

  .back-link {
    max-width: none;
    padding: 8px 9px;
    font-size: 8px;
    text-align: center;
    white-space: nowrap;
  }

  .producer-nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 6px;
    padding-bottom: 6px;
    scrollbar-width: none;
  }

  .producer-nav::-webkit-scrollbar {
    display: none;
  }

  .producer-hero {
    min-height: auto;
    padding: 188px 20px 52px;
  }

  .producer-hero img {
    object-position: center;
  }

  .producer-hero div {
    max-width: 100%;
  }

  .consulting-hero {
    min-height: 80vh;
    padding: 132px 20px 42px;
  }

  .fine-hero {
    min-height: auto;
    padding: 138px 20px 56px;
  }

  .fine-copy h1 {
    font-size: 32px;
  }

  .fine-copy p:last-child {
    font-size: 16px;
  }

  .consulting-copy h1 {
    font-size: 34px;
  }

  .consulting-copy p:last-child {
    font-size: 16px;
  }

  .producer-hero h1 {
    max-width: 11ch;
    font-size: 32px;
    line-height: 1.12;
  }

  .producer-hero p:last-child {
    font-size: 16px;
  }

  .service-grid,
  .team-grid,
  .producer-grid,
  .process-grid,
  .agency-grid,
  .fine-grid-section {
    grid-template-columns: 1fr;
  }

  .producer-card {
    grid-template-rows: 220px 1fr;
    min-height: auto;
  }

  .service {
    min-height: auto;
  }

  .service h3 {
    margin-top: 42px;
  }

  .process-grid article {
    min-height: auto;
  }

  .agency-grid article {
    min-height: auto;
  }

  .fine-grid-section article {
    min-height: auto;
  }

  .process-grid h3 {
    margin-top: 42px;
  }

  .agency-grid h3 {
    margin-top: 42px;
  }

  .fine-grid-section h3 {
    margin-top: 42px;
  }

  .consulting-cta .button {
    justify-self: start;
  }

  .split-media {
    min-height: 360px;
  }

  .wine-list {
    overflow-x: visible;
  }

  .wine-list table {
    min-width: 0;
    table-layout: fixed;
  }

  .wine-list th,
  .wine-list td {
    padding: 11px 8px;
    font-size: 12px;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  .wine-list th {
    font-size: 9px;
  }
}
