/* ======================================================
   B.A. LAW OFFICE — Classic Premium System
   ====================================================== */

:root {
  /* Paper / ground */
  --paper:      oklch(0.975 0.008 82);   /* שמנת עמוק */
  --paper-2:    oklch(0.955 0.010 80);   /* שמנת חם יותר */
  --ink:        oklch(0.20 0.012 250);   /* גרפיט עמוק */
  --ink-2:      oklch(0.35 0.010 250);   /* גוף טקסט */
  --muted:      oklch(0.52 0.008 250);   /* משנה */
  --hair:       oklch(0.85 0.010 80);    /* קווי חלוקה */
  --hair-2:     oklch(0.80 0.012 80);

  /* Accents */
  --wine:       oklch(0.38 0.09 22);     /* בורדו */
  --wine-2:     oklch(0.32 0.10 22);
  --gold:       oklch(0.65 0.075 75);    /* זהב עתיק */
  --gold-2:     oklch(0.55 0.085 70);

  /* Type */
  --serif:      "Frank Ruhl Libre", "Cormorant Garamond", Georgia, serif;
  --sans:       "Assistant", -apple-system, "Segoe UI", sans-serif;
  --italic:     "Cormorant Garamond", "Frank Ruhl Libre", serif;

  /* Rhythm */
  --rule: 1px solid var(--hair);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  background:
    radial-gradient(ellipse 1200px 600px at 85% -5%, oklch(0.97 0.015 70 / 0.7), transparent 60%),
    radial-gradient(ellipse 900px 500px at -5% 35%, oklch(0.96 0.018 75 / 0.5), transparent 60%),
    var(--paper);
}

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

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.12;
  color: var(--ink);
  margin: 0;
}

em, .italic {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 500;
}

p { margin: 0; color: var(--ink-2); }

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------------------- Top bar ---------------------- */

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: oklch(0.975 0.008 82 / 0.86);
  backdrop-filter: saturate(1.3) blur(12px);
  border-bottom: var(--rule);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  max-width: 1240px;
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-mark {
  width: 40px;
  height: 40px;
  border: 1px solid var(--ink);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: -0.02em;
  position: relative;
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px solid var(--ink);
  opacity: 0.22;
  pointer-events: none;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.brand-sub {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
}
.nav {
  display: flex;
  gap: 28px;
  font-size: 15px;
  color: var(--ink-2);
}
.nav a { transition: color .2s; }
.nav a:hover { color: var(--wine); }
.top-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--ink);
  color: var(--paper);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background .2s;
}
.top-cta:hover { background: var(--wine); }

@media (max-width: 820px) {
  .nav { display: none; }
}

/* ---------------------- Hero ---------------------- */

.hero {
  position: relative;
  padding: 72px 0 48px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 72px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--wine);
  text-transform: uppercase;
  margin-bottom: 28px;
}
.eyebrow::before, .eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--wine);
  opacity: 0.6;
}
.hero h1 {
  font-size: clamp(40px, 5.2vw, 72px);
  font-weight: 500;
  margin-bottom: 28px;
}
.hero h1 em {
  color: var(--wine);
  font-weight: 500;
}
.hero-lead {
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink-2);
  max-width: 540px;
  margin-bottom: 40px;
}
.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all .2s ease;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--ink);
  color: var(--paper);
}
.btn-primary:hover {
  background: var(--wine);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--paper);
}
.btn svg { width: 17px; height: 17px; }

.hero-meta {
  margin-top: 48px;
  padding-top: 28px;
  border-top: var(--rule);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.meta-item {
  display: flex;
  flex-direction: column;
}
.meta-num {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
}
.meta-num .unit {
  font-size: 18px;
  color: var(--gold-2);
  margin-right: 2px;
}
.meta-label {
  margin-top: 6px;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* Hero portrait */
.hero-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--paper-2);
  border: 1px solid var(--hair);
  overflow: hidden;
}
.hero-portrait-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 20%;
  filter: grayscale(0.3) contrast(1.02);
}
.hero-portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, oklch(0.20 0.012 250 / 0.55));
  z-index: 1;
}
.hero-portrait-caption {
  position: absolute;
  inset: auto 24px 24px 24px;
  color: var(--paper);
  z-index: 2;
  font-family: var(--serif);
  border-top: 1px solid oklch(0.97 0 0 / 0.3);
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.hero-portrait-caption h4 {
  color: var(--paper);
  font-size: 20px;
  font-weight: 500;
}
.hero-portrait-caption span {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.8;
}
.hero-portrait-corner {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 48px;
  height: 48px;
  border: 1px solid oklch(0.97 0 0 / 0.6);
  z-index: 2;
  display: grid;
  place-items: center;
  color: var(--paper);
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-meta { grid-template-columns: 1fr 1fr; }
}

/* ---------------------- Section frame ---------------------- */

section.sec {
  padding: 96px 0;
  position: relative;
}
section.sec + section.sec {
  border-top: var(--rule);
}
.sec-header {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 56px;
  align-items: end;
}
.sec-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--gold-2);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 14px;
}
.sec-eyebrow .roman {
  font-family: var(--italic);
  font-style: italic;
  font-size: 22px;
  color: var(--wine);
  letter-spacing: 0;
  font-weight: 500;
  min-width: 28px;
}
.sec-title {
  font-size: clamp(32px, 3.8vw, 52px);
}
.sec-title em { color: var(--wine); }
.sec-lede {
  font-size: 17px;
  color: var(--ink-2);
  max-width: 520px;
  line-height: 1.7;
}
@media (max-width: 820px) {
  .sec-header { grid-template-columns: 1fr; gap: 20px; }
}

/* ---------------------- Audience cards ---------------------- */

.aud-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: var(--rule);
  border-bottom: var(--rule);
}
.aud-card {
  padding: 40px 28px;
  border-inline-start: var(--rule);
  position: relative;
  transition: background .3s;
}
.aud-card:first-child { border-inline-start: none; }
.aud-card:hover { background: var(--paper-2); }
.aud-num {
  font-family: var(--italic);
  font-style: italic;
  font-size: 14px;
  color: var(--gold-2);
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}
.aud-card h3 {
  font-size: 24px;
  margin-bottom: 14px;
}
.aud-card p {
  font-size: 15px;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .aud-grid { grid-template-columns: 1fr 1fr; }
  .aud-card:nth-child(3) { border-top: var(--rule); }
  .aud-card:nth-child(2) { border-inline-start: var(--rule); }
}
@media (max-width: 560px) {
  .aud-grid { grid-template-columns: 1fr; }
  .aud-card { border-inline-start: none !important; border-top: var(--rule); }
  .aud-card:first-child { border-top: none; }
}

/* ---------------------- Services ---------------------- */

.srv-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.srv-item {
  padding: 44px 0;
  border-bottom: var(--rule);
  padding-inline-end: 40px;
  padding-inline-start: 40px;
  border-inline-start: var(--rule);
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  transition: background .3s;
}
.srv-item:nth-child(odd) { border-inline-start: none; padding-inline-start: 0; }
.srv-item:nth-child(-n+2) { border-top: var(--rule); }
.srv-item:hover { background: var(--paper-2); }
.srv-roman {
  font-family: var(--italic);
  font-style: italic;
  font-size: 28px;
  color: var(--wine);
  font-weight: 500;
  line-height: 1;
}
.srv-body h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.srv-body p { font-size: 15px; }
@media (max-width: 820px) {
  .srv-wrap { grid-template-columns: 1fr; }
  .srv-item { border-inline-start: none !important; padding-inline-start: 0; padding-inline-end: 0; }
  .srv-item:nth-child(-n+2) { border-top: none; }
  .srv-item:first-child { border-top: var(--rule); }
}

/* ---------------------- About split ---------------------- */

.about-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.about-photo {
  aspect-ratio: 3 / 4;
  background: var(--paper-2);
  border: 1px solid var(--hair);
  position: relative;
  overflow: hidden;
}
.about-photo-inner {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.2);
}
.about-photo::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(180deg, transparent, oklch(0.20 0.012 250 / 0.2));
}
.about-body h2 { margin-bottom: 28px; }
.about-body p {
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 18px;
}
.about-sign {
  margin-top: 32px;
  padding-top: 24px;
  border-top: var(--rule);
  display: flex;
  gap: 20px;
  align-items: center;
}
.about-sign-name {
  font-family: var(--italic);
  font-style: italic;
  font-size: 32px;
  font-weight: 500;
  color: var(--wine);
  line-height: 1;
}
.about-sign-role {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-quote {
  margin-top: 40px;
  padding: 28px 32px;
  background: var(--paper-2);
  border-inline-start: 3px solid var(--wine);
}
.about-quote p {
  font-family: var(--italic);
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
}
@media (max-width: 820px) {
  .about-split { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------------------- Advantages / ticklist ---------------------- */

.adv-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: var(--rule);
  background: var(--paper);
}
.adv-item {
  padding: 32px;
  border-bottom: var(--rule);
  border-inline-start: var(--rule);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.adv-item:nth-child(odd) { border-inline-start: none; }
.adv-item:nth-last-child(-n+2) { border-bottom: none; }
.adv-mark {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: 1px solid var(--wine);
  display: grid;
  place-items: center;
  color: var(--wine);
}
.adv-text h4 {
  font-size: 18px;
  margin-bottom: 6px;
}
.adv-text p { font-size: 14.5px; line-height: 1.55; }
@media (max-width: 720px) {
  .adv-wrap { grid-template-columns: 1fr; }
  .adv-item { border-inline-start: none !important; }
  .adv-item:nth-last-child(2) { border-bottom: var(--rule); }
}

/* ---------------------- POA (ייפוי כח) feature ---------------------- */

.poa {
  background: var(--ink);
  color: var(--paper);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.poa::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 80% 20%, oklch(0.4 0.09 22 / 0.5), transparent 60%),
    radial-gradient(ellipse 500px 400px at 10% 90%, oklch(0.35 0.05 240 / 0.6), transparent 60%);
}
.poa .wrap { position: relative; z-index: 1; }
.poa .sec-eyebrow { color: var(--gold); }
.poa .sec-eyebrow .roman { color: var(--gold); }
.poa h2 { color: var(--paper); }
.poa h2 em { color: var(--gold); }
.poa-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: start;
}
.poa-body p {
  color: oklch(0.85 0.01 80);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 18px;
}
.poa-stats {
  padding: 32px;
  border: 1px solid oklch(0.97 0 0 / 0.15);
  background: oklch(0.97 0 0 / 0.02);
}
.poa-stats h4 {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-family: var(--sans);
  font-weight: 600;
  margin-bottom: 24px;
}
.poa-stats ul { list-style: none; padding: 0; margin: 0; }
.poa-stats li {
  padding: 14px 0;
  border-bottom: 1px solid oklch(0.97 0 0 / 0.1);
  font-size: 15.5px;
  display: flex;
  gap: 14px;
  color: oklch(0.9 0.005 80);
}
.poa-stats li:last-child { border-bottom: none; }
.poa-stats li::before {
  content: "—";
  color: var(--gold);
  flex-shrink: 0;
}
@media (max-width: 820px) {
  .poa-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------------------- FAQ ---------------------- */

.faq-list {
  border-top: var(--rule);
}
.faq-item {
  border-bottom: var(--rule);
  padding: 28px 0;
  cursor: pointer;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.faq-q h3 {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
}
.faq-toggle {
  width: 32px; height: 32px;
  border: 1px solid var(--ink);
  display: grid; place-items: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: all .3s;
}
.faq-item.open .faq-toggle {
  background: var(--wine);
  color: var(--paper);
  border-color: var(--wine);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, margin .3s;
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.7;
}
.faq-item.open .faq-a {
  max-height: 400px;
  margin-top: 18px;
  padding-inline-end: 56px;
}

/* ---------------------- Articles ---------------------- */

.art-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.art-card {
  background: var(--paper-2);
  border: 1px solid var(--hair);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all .25s;
}
.art-card:hover {
  background: var(--paper);
  border-color: var(--ink);
  transform: translateY(-2px);
}
.art-tag {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-2);
  font-weight: 600;
}
.art-card h3 {
  font-size: 26px;
  line-height: 1.25;
}
.art-card p { font-size: 15.5px; }
.art-read {
  margin-top: auto;
  padding-top: 12px;
  border-top: var(--rule);
  font-size: 14px;
  color: var(--wine);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
}
@media (max-width: 720px) {
  .art-grid { grid-template-columns: 1fr; }
}

/* ---------------------- Contact ---------------------- */

.contact {
  padding: 96px 0;
  background: var(--paper-2);
  border-top: var(--rule);
  border-bottom: var(--rule);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-side h2 { margin-bottom: 24px; }
.contact-methods {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: var(--rule);
}
.contact-method {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 20px;
  padding: 20px 0;
  border-bottom: var(--rule);
  align-items: center;
}
.cm-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.cm-value {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
}
.cm-value.small { font-size: 17px; }
.cm-action {
  font-size: 13px;
  color: var(--wine);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.form {
  background: var(--paper);
  border: 1px solid var(--hair);
  padding: 40px;
}
.form h3 {
  font-size: 24px;
  margin-bottom: 8px;
}
.form p.hint {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 600;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--paper-2);
  border: 1px solid var(--hair);
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  transition: border-color .2s, background .2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--wine);
  background: var(--paper);
}
.field textarea { min-height: 100px; resize: vertical; }
.form .btn { width: 100%; justify-content: center; }
.form-footer {
  margin-top: 16px;
  text-align: center;
  font-size: 12.5px;
  color: var(--muted);
}

@media (max-width: 820px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-method { grid-template-columns: 1fr; gap: 4px; }
}

/* ---------------------- Footer ---------------------- */

.footer {
  padding: 56px 0 32px;
  background: var(--ink);
  color: oklch(0.85 0.01 80);
}
.footer .wrap { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; }
.footer-brand .brand-name { color: var(--paper); font-size: 22px; }
.footer-brand .brand-sub { color: oklch(0.7 0.01 80); }
.footer-brand p { margin-top: 20px; color: oklch(0.78 0.01 80); font-size: 14px; max-width: 340px; line-height: 1.65; }
.footer-brand .brand-mark { border-color: var(--gold); color: var(--gold); }
.footer-brand .brand-mark::after { border-color: var(--gold); }
.footer-col h5 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-col a { display: block; padding: 6px 0; font-size: 14px; color: oklch(0.82 0.008 80); }
.footer-col a:hover { color: var(--paper); }
.footer-legal {
  max-width: 1240px;
  margin: 48px auto 0;
  padding: 24px 32px 0;
  border-top: 1px solid oklch(0.97 0 0 / 0.1);
  font-size: 12px;
  color: oklch(0.6 0.008 80);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 720px) {
  .footer .wrap { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------------------- Sticky call button (mobile priority) ---------------------- */

.sticky-call {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 50;
  display: flex;
  gap: 10px;
  align-items: center;
}
.sticky-call a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--wine);
  color: var(--paper);
  font-weight: 500;
  font-size: 14px;
  box-shadow: 0 12px 32px -8px oklch(0.2 0.05 22 / 0.35);
  transition: all .25s;
}
.sticky-call a:hover { background: var(--wine-2); transform: translateY(-2px); }
.sticky-call a.alt {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--ink);
}
.sticky-call a.alt:hover { background: var(--ink); color: var(--paper); }
.sticky-call svg { width: 16px; height: 16px; }

@media (max-width: 560px) {
  .sticky-call { left: 16px; right: 16px; bottom: 16px; }
  .sticky-call a { flex: 1; justify-content: center; }
}

/* ---------------------- Areas section ---------------------- */

.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.areas-visual {
  aspect-ratio: 1;
  background: var(--paper-2);
  border: 1px solid var(--hair);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.areas-visual svg { width: 70%; height: 70%; color: var(--wine); opacity: 0.9; }
.areas-visual .roman-corner {
  position: absolute;
  top: 20px;
  inset-inline-start: 20px;
  font-family: var(--italic);
  font-style: italic;
  color: var(--wine);
  font-size: 22px;
}
.areas-list ul { list-style: none; padding: 0; margin: 20px 0 0; }
.areas-list li {
  padding: 16px 0;
  border-bottom: var(--rule);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 16px;
}
.areas-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--gold);
  flex-shrink: 0;
}
@media (max-width: 820px) {
  .areas-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Utility */
.text-wine { color: var(--wine); }
