:root{
  --bg: #f6f3ee;
  --bg2:#ffffff;
  --paper:#ffffff;
  --ink: rgba(18, 24, 33, 0.92);
  --muted: rgba(18, 24, 33, 0.68);
  --hairline: rgba(18, 24, 33, 0.12);
  --hairline2: rgba(18, 24, 33, 0.10);
  --gold: #b38a45;
  --gold2:#7b5a27;
  --shadow: 0 20px 60px rgba(16, 24, 33, 0.14);
  --shadow2: 0 10px 28px rgba(16, 24, 33, 0.10);
  --radius: 5px;
  --radius2: 5px;
  --max: 1180px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:
    radial-gradient(#f2ede4, #fefefd);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, "Noto Sans";
  line-height:1.65;
  overflow-x:hidden;
}

body.lang-ar{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Noto Naskh Arabic", "Noto Sans Arabic", Arial, "Noto Sans";
}

a{color:inherit; text-decoration:none}
img{max-width:100%; height:auto; display:block}

.container{width:min(var(--max), calc(100% - 52px)); margin-inline:auto}
@media (max-width: 640px){ .container{width:calc(100% - 28px)} }

/* Top accent line */
.topline{
  position:fixed; top:0; left:0; right:0; height:2px;
  background: linear-gradient(90deg, transparent, rgba(179,138,69,.9), transparent);
  opacity:.9; z-index:1000;
  transform: translateY(-2px);
}
body.ready .topline{ transform: translateY(0); transition: transform 900ms var(--ease); }

/* Header */
.header{
  position:sticky; top:0; z-index:999;
  backdrop-filter: blur(12px);
  background: linear-gradient(180deg, rgba(246,243,238,.92), rgba(246,243,238,.72));
  border-bottom: 1px solid var(--hairline);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  gap:8px; padding:14px 0;
}
.brand{
  display:flex; align-items:center; gap:12px; min-width: 220px;
}
.brand .mark{ width:38px; height:38px; }
.brand .wordmark{ display:flex; flex-direction:column; line-height:1.1; }
.brand .name{
  font-family: ui-serif, "Playfair Display", Georgia, "Times New Roman", serif;
  letter-spacing:.08em;
  font-size:18px;
}
.brand .tag{
  font-size:11px; letter-spacing:.18em; text-transform:uppercase; color:var(--muted);
}

.menu{
  display:flex; gap:5px; align-items:center; justify-content:center; flex:1;
}
.menu a{
  font-size:12px; letter-spacing:.14em; text-transform:uppercase;
  color: rgba(18,24,33,.70);
  padding:5px 5px;
  border-radius: 5px;
  transition: background 240ms var(--ease), color 240ms var(--ease), box-shadow 240ms var(--ease);
}
.menu a:hover{ background: rgba(179,138,69,.10); color: rgba(18,24,33,.92); }
.menu a.active{
  color: rgba(18,24,33,.96);
  background: rgba(179,138,69,.14);
  box-shadow: inset 0 0 0 1px rgba(179,138,69,.26);
}

.actions{ display:flex; align-items:center; gap:10px; min-width: 220px; justify-content:flex-end; }

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  border-radius: 5px;
  padding:10px 14px;
  border: 1px solid rgba(18,24,33,.18);
  background: rgb(255 255 255 / 95%);
  color: rgba(18,24,33,.90);
  cursor:pointer;
  transition: transform 220ms var(--ease), background 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease);
  box-shadow: var(--shadow2);
}
.btn:hover{ transform: translateY(-1px); background: rgba(255,255,255,.92); border-color: rgba(18,24,33,.22); }
.btn:active{ transform: translateY(0); }

.btn.primary {
    border-color: rgb(231 222 204);
    background: linear-gradient(89deg, rgb(236 228 216), rgb(201 178 115));
}
.btn.primary:hover{
  border-color: rgba(179,138,69,.62);
  box-shadow: 0 12px 26px rgba(179,138,69,.16);
}

.icon{ width:16px; height:16px; opacity:.92; }

.lang{
  display:inline-flex; align-items:center; gap:8px;
  border: 1px solid rgba(18,24,33,.14);
  background: rgba(255,255,255,.70);
  padding:7px 9px; border-radius: 5px;
}
.lang button{
  border:0; background:transparent; color: rgba(18,24,33,.70);
  font-size:12px; letter-spacing:.12em; text-transform:uppercase;
  padding:6px 8px; border-radius: 5px;
  cursor:pointer;
  transition: background 220ms var(--ease), color 220ms var(--ease);
}
.lang button.active{ background: rgba(179,138,69,.18); color: rgba(18,24,33,.92); }

.hamburger{ display:none; }

/* Mobile rules:
   - hide desktop menu
   - keep language + hamburger in header
   - move Private Access into drawer only
*/
@media (max-width: 980px){ .menu{ display:none; }
  .hamburger{ display:inline-flex; }
  .brand{ min-width:auto; }
  .actions{ min-width:auto; }
  .actions .btn.primary{ display:none; } /* remove Private Access from header on mobile */
}

/* Mobile drawer */
.drawer{ position: fixed; inset: 0; display:none; z-index: 1200; }
.drawer.open{ display:block; }
.drawer .backdrop{
  position:absolute; inset:0;
  background: rgba(16,24,33,.48);
  backdrop-filter: blur(6px);
  animation: fadeIn 220ms var(--ease) both;
}
.drawer .panel{
  position:absolute; right:0; top:0; height:100%; width:min(420px, 90vw);
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(246,243,238,.96));
  border-left: 1px solid var(--hairline);
  box-shadow: var(--shadow);
  padding: 22px 18px;
  animation: slideIn 260ms var(--ease) both;
}
body[dir="rtl"] .drawer .panel{ right:auto; left:0; border-left:0; border-right:1px solid var(--hairline); }

.drawer .panel .row{
  display:flex; align-items:center; justify-content:space-between; gap:10px;
  padding-bottom: 14px; border-bottom:1px solid var(--hairline2); margin-bottom: 12px;
}
.drawer .row strong{
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(18,24,33,.68);
}
.drawer nav{ display:flex; flex-direction:column; gap:9px; padding: 10px 0; }
.drawer nav a{
  padding: 13px 12px; border-radius: 5px;
  color: rgba(18,24,33,.90);
  background: rgba(255,255,255,.86);
  border:1px solid var(--hairline);
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;
  transition: background 220ms var(--ease), border-color 220ms var(--ease), transform 220ms var(--ease);
}
.drawer nav a:hover{
  background: rgba(179,138,69,.10);
  border-color: rgba(179,138,69,.26);
  transform: translateY(-1px);
}
.drawer nav a.active{
  background: rgba(179,138,69,.14);
  border-color: rgba(179,138,69,.36);
  color: rgba(18,24,33,.96);
}
.drawer .foot{
  display:grid;
  gap:10px;
  padding-top: 12px;
  border-top: 1px solid var(--hairline2);
  margin-top: 10px;
}
.drawer .foot .lang{
  width:100%;
  justify-content:center;
  background: rgba(255,255,255,.86);
}
.drawer .foot .lang button{
  flex:1;
  text-align:center;
}

@keyframes fadeIn { from{opacity:0} to{opacity:1} }
@keyframes slideIn { from{transform: translateX(18px); opacity:.6} to{transform: translateX(0); opacity:1} }
@keyframes slideInRtl { from{transform: translateX(-18px); opacity:.6} to{transform: translateX(0); opacity:1} }
body[dir="rtl"] .drawer .panel{ animation: slideInRtl 260ms var(--ease) both; }
/* Hero */
.hero{
  position:relative;
  min-height: 72vh;
  display:flex; align-items:flex-end;
  padding: 72px 0 54px;
  isolation:isolate;
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgb(246 243 238 / 0%), rgb(246 243 238 / 0%)), var(--hero-image);
  background-size: cover;
  background-position: center 100%;
  z-index:-2;
}
.hero::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgb(246 243 238 / 0%), rgb(246 243 238 / 0%), rgb(246 243 238 / 0%));
  z-index:-1;
}
.hero .inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 30px;
  align-items:end;
}
.hero .inner > div.reveal{
  width: fit-content;
  max-width: min(760px, 100%);
  padding: 20px 22px;
  border-radius: 5px;
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(18,24,33,.12);
  box-shadow: 0 10px 28px rgba(16,24,33,.12);
  backdrop-filter: blur(2px);
}
@media (max-width: 960px){
  .hero{ min-height: 72vh; padding: 58px 0 42px; }
  .hero .inner{ grid-template-columns: 1fr; gap:18px; }
  .hero .inner > div.reveal{
    padding: 16px 14px;
    max-width: 100%;
  }
}

.kicker{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 12px;
  border-radius: 5px;
  border: 1px solid rgba(18,24,33,.14);
  background: rgba(255,255,255,.95);
  color: rgb(36 41 48);
}
.kicker .dot{
  width:8px; height:8px; border-radius: 5px;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(179,138,69,.12);
}

.hero h1{
  font-family: ui-serif, "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 560;
  letter-spacing: .01em;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.12;
  margin: 14px 0 12px;
  color: rgba(18,24,33,.94);
  text-shadow: 0 1px 0 rgba(255,255,255,.35);
}
.hero p{
  max-width: 62ch;
  color: rgba(18,24,33,.82);
  margin: 0 0 18px;
  font-size: 16px;
  text-shadow: 0 1px 0 rgba(255,255,255,.25);
}
.hero .cta{ display:flex; gap:10px; flex-wrap:wrap; }

.hero .side{
  padding: 18px;
  border-radius: var(--radius2);
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(18,24,33,.12);
  box-shadow: var(--shadow);
}
.hero .side h3{
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .18em;
  margin: 0 0 8px;
  color: rgba(18,24,33,.70);
}
.hero .metrics{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.metric{
  padding: 12px;
  border-radius: 5px;
  border: 1px solid rgba(18,24,33,.10);
  background: rgba(246,243,238,.70);
}
.metric strong{
  display:block;
  font-family: ui-serif, "Playfair Display", Georgia, serif;
  font-size: 18px;
  letter-spacing: .01em;
}
.metric span{ color: rgba(18,24,33,.64); font-size: 12px; }

/* Sections */
.section{ padding: 62px 0; }
.section.small{ padding: 46px 0; }
@media (max-width: 980px){ .section{ padding: 48px 0; }
  .section.small{ padding: 34px 0; }
}
.section h2{
  font-family: ui-serif, "Playfair Display", Georgia, serif;
  font-weight: 560;
  letter-spacing: .01em;
  font-size: clamp(24px, 2.5vw, 34px);
  margin: 0 0 14px;
  color: rgba(18,24,33,.92);
}
.lead{ color: rgba(18,24,33,.70); max-width: 76ch; margin: 0 0 22px; }

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 980px){ .grid-3{ grid-template-columns: 1fr; } }

.card{
  border-radius: var(--radius);
  border: 1px solid rgba(18,24,33,.12);
  background: rgba(255,255,255,.86);
  padding: 18px;
  box-shadow: var(--shadow2);
  position:relative;
  overflow:hidden;
}
.card::before{
  content:"";
  position:absolute; inset:-1px;
  background: radial-gradient(520px 240px at 10% 0%, rgb(179 138 69 / 0%), #cec6b954 55%);
  opacity: .75;
  pointer-events:none;
}
.card > *{ position:relative; }
.card h3{
  margin: 0 0 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: rgba(18,24,33,.86);
  max-width: initial;
  margin-left: auto;
  text-wrap: balance;
}
.card p{ margin:0; color: rgba(18,24,33,.70); }

.pills{ display:flex; flex-wrap:wrap; gap:10px; margin-top: 14px; }
.pill{
  padding: 8px 10px;
  border-radius: 5px;
  border:1px solid rgba(18,24,33,.14);
  background: rgba(246,243,238,.72);
  color: rgba(18,24,33,.70);
  font-size: 12px;
}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items:center;
}
@media (max-width: 980px){ .split{ grid-template-columns: 1fr; } }

.figure{
  border-radius: var(--radius2);
  /* border: 1px solid rgba(18,24,33,.12); */
  overflow:hidden;
  /* box-shadow: var(--shadow); */
  /* background: rgba(255,255,255,.9); */
}
.figure img{ width:100%; height: 380px; object-fit: cover; }
@media (max-width: 980px){ .figure img{ height: 280px; margin-top: 42px; } }

.quote{
  border-radius: var(--radius2);
  border: 1px solid rgba(18,24,33,.12);
  background: rgb(242 240 235);
  padding: 18px;
  box-shadow: var(--shadow2);
}
.quote .bar{
  display:flex; gap:10px; align-items:center; margin-bottom: 10px;
  color: rgba(18,24,33,.74);
  letter-spacing: .16em; text-transform: uppercase; font-size: 12px;
}
.quote .bar .line{ height: 1px; flex:1; background: rgba(18,24,33,.16); }
.quote p{ margin:0; color: rgba(18,24,33,.72); }

.timeline{ display:grid; gap: 10px; }
.step{
  display:flex; gap: 12px;
  border-radius: 5px;
  border:1px solid rgba(18,24,33,.12);
  background: rgb(240 238 233);
  padding: 14px;
  box-shadow: 0 10px 22px rgba(16,24,33,.08);
}
.step .n {
    width: 34px;
    height: 34px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(179, 138, 69, .16);
    border: 1px solid rgba(179, 138, 69, .28);
    color: rgba(18, 24, 33, .90);
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    text-align: center;
    
    /* Фиксируем размер независимо от контента */
    flex-shrink: 0;
    flex-grow: 0;
    
    /* Если нужно обрезать выступающий текст */
    overflow: hidden;
    text-overflow: clip;
    white-space: nowrap;
}
.step .t strong{ display:block; letter-spacing:.01em; color: rgba(18,24,33,.90); }
.step .t span{ display:block; color: rgba(18,24,33,.68); font-size: 13px; }

/* Notes */
.note{
  border-radius: 5px;
  border:1px solid rgba(179,138,69,.24);
  background: rgba(179,138,69,.10);
  padding: 14px;
  color: rgba(18,24,33,.80);
}

/* Footer with panorama */
.footer{ position:relative; margin-top: 42px; }
.footer .pan {
    height: 350px;
    background: linear-gradient(180deg, rgb(244 240 232), rgb(246 243 238 / 0%)), var(--footer-image);
    background-size: cover;
    background-position: center;
    border-top: 1px solid rgb(243 239 231);
}
.footer .inner{ margin-top: -90px; padding-bottom: 34px; }
.footer .box{
  border-radius: var(--radius2);
  border: 0px solid rgba(18, 24, 33, .12);
  background: rgb(255 255 255);
  box-shadow: var(--shadow);
  padding: 18px;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 16px;
  flex-wrap:wrap;
}
.footer .box .left{ display:flex; gap:12px; align-items:flex-start; }
.footer .mini{ width:34px; height:34px; opacity:.95; }
.footer .box h4{ margin:0; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; }
.footer .box p{ margin:6px 0 0; color: rgba(18,24,33,.68); max-width: 62ch; }
.footer .meta{
  display:flex; gap:10px; flex-wrap:wrap; align-items:center; justify-content:flex-end;
  color: rgba(18,24,33,.68);
}
.footer .meta span{
  padding: 8px 10px;
  border-radius: 5px;
  border:1px solid rgba(18,24,33,.14);
  background: rgba(246,243,238,.78);
  font-size: 12px;
}
.footer .bar{
  padding: 18px 0 0;
  display:flex; align-items:center; justify-content:space-between;
  color: rgba(18,24,33,.56);
  font-size: 12px;
}
.footer .bar a{ color: rgba(18,24,33,.70); }
.footer .bar a:hover{ color: rgba(18,24,33,.92); }

/* Modal */
.modal{ position:fixed; inset:0; z-index: 2000; display:none; }
.modal.open{ display:block; }
.modal .overlay{
  position:absolute; inset:0;
  background: rgba(16,24,33,.42);
  backdrop-filter: blur(10px);
  animation: fadeIn 200ms var(--ease) both;
}
.modal .panel{
  position:absolute;
  left:50%; top:50%;
  transform: translate(-50%,-50%);
  width:min(560px, calc(100% - 28px));
  border-radius: 5px;
  border: 1px solid rgba(18,24,33,.12);
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.modal header{
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 16px;
  border-bottom:1px solid rgba(18,24,33,.10);
}
.modal header .title{ display:flex; align-items:center; gap:10px; }
.modal header .title strong{
  font-size: 12px; letter-spacing:.18em; text-transform:uppercase;
  color: rgba(18,24,33,.86);
  max-width: 270px;
  margin-left: auto;
  text-wrap: balance;
}
.modal header .close{
  border: 1px solid rgba(18,24,33,.14);
  background: rgba(246,243,238,.78);
  color: rgba(18,24,33,.80);
  border-radius: 5px;
  padding: 8px 10px;
  cursor:pointer;
}
.modal header .close:hover{ background: rgba(179,138,69,.10); }

.modal .content{ padding: 16px; display:grid; gap: 12px; }
.modal .two{ display:grid; grid-template-columns:1fr 1fr; gap: 10px; }
@media (max-width: 520px){ .modal .two{ grid-template-columns:1fr; } }

.field{ display:grid; gap:6px; margin-bottom: 12px; }
label{ font-size: 12px; letter-spacing:.16em; text-transform: uppercase; color: rgba(18,24,33,.70); }
input{
  width:100%;
  border-radius: 5px;
  border: 1px solid rgba(18,24,33,.16);
  background: rgba(246,243,238,.78);
  color: rgba(18,24,33,.92);
  padding: 12px 12px;
  outline: none;
  transition: border-color 220ms var(--ease), background 220ms var(--ease);
}
input:focus{ border-color: rgba(179,138,69,.55); background: rgba(255,255,255,.95); }

.scan{
  border-radius: 5px;
  border: 1px solid rgba(18,24,33,.12);
  background: rgba(246,243,238,.74);
  padding: 12px;
  display:grid; gap: 8px;
}
.scan .row{ display:flex; align-items:center; justify-content:space-between; gap:12px; }
.scan .row span{ color: rgba(18,24,33,.68); font-size: 12px; letter-spacing:.14em; text-transform: uppercase; }
.progress{
  height: 10px;
  border-radius: 5px;
  background: rgba(18,24,33,.10);
  overflow:hidden;
  border:1px solid rgba(18,24,33,.12);
}
.progress > i{
  display:block; height:100%; width: 0%;
  background: linear-gradient(90deg, rgba(179,138,69,.22), rgba(179,138,69,.90));
  border-radius: 5px;
  transition: width 250ms var(--ease);
}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  width: fit-content;
  padding: 8px 10px;
  border-radius: 5px;
  border: 1px solid rgba(179,138,69,.34);
  background: rgba(179,138,69,.12);
  color: rgba(18,24,33,.84);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.smallprint{ font-size: 12px; color: rgba(18,24,33,.58); }
.hidden{ display:none !important; }

/* reveal animations */
.reveal{ opacity:0; transform: translateY(12px); }
.reveal.in{ opacity:1; transform: translateY(0); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
.reveal.delay-1.in{ transition-delay: 80ms; }
.reveal.delay-2.in{ transition-delay: 160ms; }
.reveal.delay-3.in{ transition-delay: 240ms; }

/* RTL tweaks */
body[dir="rtl"] .menu a{ letter-spacing: .02em; text-transform: none; }
body[dir="rtl"] label{ letter-spacing: .02em; text-transform:none; }
body[dir="rtl"] .kicker{ letter-spacing: .02em; }










/* --- Hero Cleanup --- */
.brand{ min-width: 260px; }
.brand .mark.brand-horizontal{
  width: clamp(170px, 15vw, 230px);
  height: 44px;
  object-fit: contain;
}
@media (max-width: 980px){ .brand{ min-width: 0; }
  .brand .mark.brand-horizontal{
    width: clamp(140px, 42vw, 190px);
    height: 38px;
  }
}

.lead.lead-wide{ max-width: none; }

.hero{ padding-bottom: 0; overflow: hidden; }
.hero .container{ position: relative; min-height: inherit; }

.hero-brand-static{
  position: absolute;
  top: clamp(14px, 2.4vh, 26px);
  right: clamp(12px, 2vw, 24px);
  z-index: 8;
  max-width: min(360px, 32vw);
  text-align: right;
}

.hero-brand-logo{
  width: clamp(104px, 8.6vw, 142px);
  height: clamp(104px, 8.6vw, 142px);
  border-radius: 50%;
  margin: 0 0 10px auto;
  display: block;
}
.hero-brand-static h3{
  margin: 0 0 8px;
  font-family: ui-serif, "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 560;
  font-size: clamp(15px, 1.25vw, 21px);
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(18,24,33,.86);
  max-width: 270px;
  margin-left: auto;
  text-wrap: balance;
}
.hero-brand-static p{
  margin: 0;
  font-size: clamp(14px, 1.05vw, 17px);
  line-height: 1.35;
  color: rgba(18,24,33,.76);
  max-width: 280px;
  margin-left: auto;
  text-wrap: balance;
}

.hero-intro .hero-intro-grid{ align-items: end; }
.hero-intro-title{
  font-family: ui-serif, "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 560;
  letter-spacing: .01em;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.12;
  margin: 14px 0 12px;
  color: rgba(18,24,33,.94);
}
.hero-intro-lead{ max-width: 62ch; margin-bottom: 18px; }
.hero-intro .cta{ display:flex; gap:10px; flex-wrap:wrap; }
.hero-intro-side h3{
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .18em;
  margin: 0 0 8px;
  color: rgba(18,24,33,.70);
}
.hero-intro .metrics{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.hero-intro .metric{
  padding: 12px;
  border-radius: 5px;
  border: 1px solid rgba(18,24,33,.10);
  background: rgba(246,243,238,.70);
}
.hero-intro .metric strong{
  display:block;
  font-family: ui-serif, "Playfair Display", Georgia, serif;
  font-size: 18px;
  letter-spacing: .01em;
}
.hero-intro .metric span{ color: rgba(18,24,33,.64); font-size: 12px; }

@media (max-width: 980px){
  .hero::before{ background-position: 38% 80%; }
  .hero-brand-static{
    top: 10px;
    right: 10px;
    max-width: min(240px, 68vw);
    text-align: right;
  }
  .hero-brand-static h3{ font-size: clamp(14px, 4.1vw, 18px); }
  .hero-brand-static p{ font-size: clamp(14px, 4vw, 16px); }

  .hero-intro .metrics{ grid-template-columns: 1fr; }
  .hero-intro .cta .btn{ width: 100%; justify-content: center; }

  .split{ gap: 12px; }
  .section{ padding: 32px 0; }
  .section.small{ padding: 20px 0; }
  .section + .section{ padding-top: 32px; }
}

.footer{ margin-top: 24px; }
.footer .pan{ display: none; height: 0; }
.footer .inner{ margin-top: 0; padding-bottom: 18px; }
.footer .box{
  background-image: linear-gradient(180deg, rgb(236 228 214), rgb(234 232 228 / 38%)), var(--footer-image);
  background-size: cover;
  background-position: center;
}

.footer-links{ display:flex; gap:12px; flex-wrap:wrap; }
@media (max-width: 980px){ .footer-links{ gap:0; } }
