﻿/*  RESET  */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* TOKENS */
:root {
  --red:    #C42200;
  --dark:   #111110;
  --ink:    #1E1E1C;
  --mid:    #3D3D39;
  --muted:  #7A7A74;
  --pale:   #F6F5F2;
  --white:  #FFFFFF;
  --border: #E0DDD8;
  --serif:  'Playfair Display', Georgia, serif;
  --sans:   'DM Sans', system-ui, sans-serif;
}

/* BASE */
body { font-family: var(--sans); font-size: 16px; font-weight: 400; line-height: 1.7; color: var(--ink); background: var(--white); overflow-x: hidden; }

/* TYPE SCALE
   .lbl      12px  500  0.18em  uppercase  red
   body      16px  400
   .lead     19px  400  muted
   h2-small  clamp(32,3vw,44px)   Playfair
   h2-large  clamp(44,5vw,68px)   Playfair
   h1        clamp(52,6vw,80px)   Playfair
 */

/* NAV */
nav {
  position: fixed; inset: 0 0 auto; z-index: 100;
  height: 64px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 56px;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

/* Logo container */
.logo{
  display:flex;
  align-items:center;
  flex-shrink:0;
}


/*.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }*/
/*.logo-mark { width: 32px; height: 32px; background: var(--red); display: grid; place-items: center; font-family: var(--serif); font-weight: 700; font-size: 16px; color: #fff; }*/
/*.logo-text { font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink); }*/
/*.logo-text em { color: var(--muted); font-style: normal; font-weight: 400; }*/
nav ul { list-style: none; display: flex; gap: 36px; }
nav ul a { font-size: 14px; color: var(--muted); text-decoration: none; transition: color .2s; }
nav ul a:hover { color: var(--ink); }
.nav-btn { background: var(--red); color: #fff; font-size: 13px; font-weight: 500; padding: 10px 24px; text-decoration: none; transition: background .2s; }
.nav-btn:hover { background: #a01c00; }

/* start new nav and logo */

/* =========================================
   NAV LOGO + MODERN NAV POLISH
   ========================================= */

/* Nav glass blur effect */
nav{
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.85);
  border-bottom:1px solid rgba(0,0,0,0.05);
  transition: background .25s ease, box-shadow .25s ease;
}

/* subtle nav depth when scrolling */
nav.scrolled{
  background: rgba(255,255,255,0.9);
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}


/* =========================================
   LOGO
   ========================================= */

.logo{
  display:flex;
  align-items:center;
  flex-shrink:0;
}

/* responsive logo */
.logo-img{
  display:block;
  max-height:42px;
  width:auto;
  height:auto;
  object-fit:contain;
  /* transition: transform .25s ease, opacity .25s ease; */
}

/* micro polish hover
.logo:hover .logo-img{
  transform: scale(1.05);
  opacity:.95;
} */


/* =========================================
   NAV ITEMS
   ========================================= */

nav ul{
  display:flex;
  align-items:center;
  gap:32px;
  list-style:none;
}

nav ul li a{
  text-decoration:none;
  font-weight:500;
  color:var(--ink);
  transition: color .2s ease, opacity .2s ease;
}

nav ul li a:hover{
  color:var(--red);
}


/* =========================================
   CTA BUTTON
   ========================================= */

.nav-btn{
  padding:10px 18px;
  border-radius:8px;
  font-weight:600;
  text-decoration:none;
  background:var(--red);
  color:white;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.nav-btn:hover{
  transform: translateY(-2px);
  box-shadow:0 6px 16px rgba(0,0,0,0.12);
}


/* =========================================
   NAV STRUCTURE STABILITY
   ========================================= */

nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

nav ul{
  flex-shrink:0;
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width:900px){

  nav{
    padding:0 0px;
  }

  .logo-img{
    max-height:38px;
  }

}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width:600px){

  nav{
    padding:0 0px;
  }

  nav ul{
    gap:20px;
  }

  .logo-img{
    max-height:36px;
  }

}

/* end new nav and logo */


/* SECTION SHELL */
.sec { padding: 96px 56px; }
.sec-sm { padding: 72px 56px; }

/* LABEL */
.lbl {
  font-size: 12px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--red); display: flex; align-items: center; gap: 10px; margin-bottom: 24px;
}
.lbl::after { content: ''; flex: 0 0 24px; height: 1px; background: var(--red); opacity: 0.5; }
.lbl-light { color: rgba(255,255,255,0.45); }
.lbl-light::after { background: rgba(255,255,255,0.3); }

/* HEADINGS */
.h1 {
  font-family: var(--serif); font-size: clamp(52px, 6vw, 80px);
  font-weight: 700; line-height: 1.05; letter-spacing: -0.025em;
}
.h2 {
  font-family: var(--serif); font-size: clamp(28px, 3vw, 42px);
  font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 32px; max-width: 700px;
}
.h2-sm {
  font-family: var(--serif); font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 28px; 
}
.h2 em, .h2-sm em, .h1 em { font-style: italic; color: var(--red); }
.on-dark { color: #fff; }
.on-dark em { color: var(--red); }

/* LEAD TEXT */
.lead { font-size: 19px; color: var(--muted); line-height: 1.65; margin-bottom: 40px; max-width: 640px; }
.lead-dark { color: rgba(255,255,255,0.6); }
.body-text { font-size: 16px; color: var(--mid); line-height: 1.8; margin-bottom: 16px; }
.body-text:last-child { margin-bottom: 0; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 500; padding: 14px 32px; text-decoration: none; transition: all .2s; }
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: #a01c00; }
.btn-outline-dark { border: 1px solid rgba(255,255,255,0.25); color: rgba(255,255,255,0.8); }
.btn-outline-dark:hover { border-color: rgba(255,255,255,0.6); color: #fff; }
.btn-outline { border: 1px solid var(--border); color: var(--muted); }
.btn-outline:hover { border-color: var(--ink); color: var(--ink); }

/* HERO - dark */
.hero {
  background: var(--dark);
  min-height: 100vh; display: flex; align-items: center;
  padding: 140px 56px 100px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 100% 50%, rgba(196,34,0,0.12), transparent);
  pointer-events: none;
}
.hero-inner { max-width: 820px; position: relative; z-index: 1; }
.hero-eyebrow {
  font-size: 12px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 36px;
  display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--red); }
.hero .h1 { color: #fff; margin-bottom: 24px; }
.hero-sub { font-size: 21px; color: rgba(255,255,255,0.55); line-height: 1.5; margin-bottom: 52px; }
.hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

/* BAND */
.band {
  background: var(--red); padding: 16px 56px; text-align: center;
  font-size: 14px; color: rgba(255,255,255,0.85); font-style: italic; letter-spacing: 0.01em;
}

/* STORIES - white */
.stories { background: var(--white); }
.stories-head { padding: 80px 56px 0; }
.stories-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border-top: 1px solid var(--border); margin-top: 56px;
}
.story {
  background: var(--white); padding: 52px 44px;
  display: flex; flex-direction: column;
  transition: background .2s;
}
.story:hover { background: var(--pale); }
.story-lbl {
  font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 24px;
}
.story-num {
  font-family: var(--serif); font-size: clamp(72px, 7.5vw, 108px);
  font-weight: 700; color: var(--red); line-height: 0.85;
  letter-spacing: -0.03em; margin-bottom: 16px;
}
.story-ctx {
  font-size: 17px; font-weight: 500; color: var(--ink);
  line-height: 1.45; padding-bottom: 22px;
  border-bottom: 1px solid var(--border); margin-bottom: 20px;
}
.story-body {
  font-size: 15px; color: var(--muted); line-height: 1.82;
  flex: 1; margin-bottom: 20px;
}
.story-kicker {
  font-family: var(--serif); font-size: 15px; font-style: italic;
  color: var(--ink); line-height: 1.5;
}

/* TRUTH - dark */
.truth { background: var(--ink); }
.truth-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: start; }
.truth-body { font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.85; margin-bottom: 20px; }
.truth-body:last-child { margin-bottom: 0; }
.truth-body strong { color: rgba(255,255,255,0.9); font-weight: 500; }

/* WHAT WE DO - pale */
.what { background: var(--pale); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.what-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--border); margin-top: 48px;
}
.what-card { background: var(--white); padding: 36px 40px; transition: background .2s; }
.what-card:hover { background: var(--pale); }
.what-card-lbl {
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--red); margin-bottom: 8px;
}
.what-card-head { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 10px; line-height: 1.35;  }
.what-card p { font-size: 15px; color: var(--mid); line-height: 1.75; }
.what-bullets { list-style: none; margin-top: 12px; }
.what-bullets li { font-size: 14px; color: var(--mid); line-height: 1.65; padding: 6px 0 6px 18px; border-bottom: 1px solid var(--border); position: relative; }
.what-bullets li:last-child { border-bottom: none; }
.what-bullets li::before { content: '-'; position: absolute; left: 0; color: var(--red); font-size: 11px; top: 9px; }
.what-foot {
  margin-top: 1px; background: var(--ink);
  padding: 32px 40px; display: flex; flex-wrap: wrap; gap: 0;
}
.what-foot-item {
  font-size: 16px; font-weight: 500; color: rgba(255,255,255,0.8);
  padding-right: 40px; margin-right: 40px;
  border-right: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; gap: 10px;
}
.what-foot-item:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.what-foot-item::before { content: '-'; color: var(--red); font-size: 13px; }

/* NOT A TOOL - white */
.not { background: var(--white); border-bottom: 1px solid var(--border); }
.not-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-top: 48px; }
.contrast { border: 1px solid var(--border); }
.c-row { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--border); }
.c-row:last-child { border-bottom: none; }
.c-no {
  padding: 18px 22px; font-size: 15px; color: var(--muted);
  border-right: 1px solid var(--border); background: var(--pale);
  display: flex; align-items: center; gap: 12px;
}
.c-no::before { content: 'x'; color: #C0BCB6; font-size: 13px; flex-shrink: 0; }
.c-yes {
  padding: 18px 22px; font-size: 15px; color: var(--mid);
  background: var(--white); display: flex; align-items: center; gap: 12px;
}
.c-yes::before { content: '-'; color: var(--red); font-size: 13px; flex-shrink: 0; }
.not-coda {
  margin-top: 1px; background: var(--red);
  padding: 24px 40px; font-size: 16px; color: #fff; line-height: 1.65;
}
.not-coda strong { font-weight: 600; }
.not-aside { font-size: 16px; color: var(--mid); line-height: 1.8; margin-bottom: 20px; }
.not-aside:last-child { margin-bottom: 0; }

/* TEAM - pale */
.team { background: var(--pale); border-bottom: 1px solid var(--border); }
.clients-strip {
  display: flex; align-items: center; flex-wrap: wrap; gap: 0;
  padding: 16px 0; margin-bottom: 52px;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.clients-lbl { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-right: 20px; }
.clients-strip span { font-size: 14px; color: var(--muted); padding: 0 16px; border-right: 1px solid var(--border); }
.clients-strip span:last-child { border-right: none; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }
.tc { background: var(--white); padding: 36px 36px 36px 36px; }
.tc-init {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--pale); border: 1px solid var(--border);
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 16px; font-weight: 700; color: var(--red);
  margin-bottom: 18px;
}
.tc-name { font-size: 17px; font-weight: 600; color: var(--ink); margin-bottom: 3px; }
.tc-role { font-size: 12px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); margin-bottom: 14px; }
.tc-bio { font-size: 14px; color: var(--muted); line-height: 1.75; }
.team-also { padding: 18px 36px; background: var(--pale); border-top: 1px solid var(--border); font-size: 14px; color: var(--muted); }
.team-line { font-family: var(--serif); font-size: 20px; font-style: italic; color: var(--mid); margin-top: 36px; }

/* WHO WE WORK WITH - white */
.who { background: var(--white); border-bottom: 1px solid var(--border); }
.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.who-p { font-size: 16px; color: var(--mid); line-height: 1.8; margin-bottom: 16px; }
.who-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.who-tag { padding: 7px 16px; border: 1px solid var(--border); font-size: 13px; color: var(--muted); background: var(--pale); }
.who-box { background: var(--pale); border: 1px solid var(--border); padding: 40px; }
.who-box p { font-size: 16px; color: var(--mid); line-height: 1.8; margin-bottom: 16px; }
.who-box p:last-of-type { margin-bottom: 0; }
.avail { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border); font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); display: flex; align-items: center; gap: 8px; }
.avail::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--red); flex-shrink: 0; }

/* CONTACT - dark red */
.contact { background: #1A0800; }
.contact-inner { max-width: 680px; }
.contact-email {
  display: inline-flex; align-items: center; gap: 14px;
  margin-top: 40px; padding: 18px 32px;
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 16px; color: #fff; text-decoration: none;
  transition: border-color .2s;
}
.contact-email:hover { border-color: var(--red); }
.contact-email span { color: var(--red); font-size: 16px; }

/* FOOTER */

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; text-underline-offset: 0.2em; }

.site-footer {
  width: 100%;
  /*max-width: 1280px;*/
  margin: 0 auto;
}
.section-shell--footer {
  padding-top: 2rem;
  padding-bottom: 3.5rem;
}
site-footer,
.site-footer p,
.footer-links,
.footer-links span,
.footer-links a {
  font-family: 'Hind', Arial, sans-serif; color: var(--red);
}
.site-footer {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.95rem;
  font-weight: 600;
}
.site-footer p { margin: 0; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  color: var(--red);
}

@media (min-width: 768px) {
  .site-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
}

.footer-modal-link {
  appearance: none;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: inherit;
  cursor: pointer;
}

.footer-modal-link:hover {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

/*footer {
  background: var(--dark); border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 56px; display: flex; justify-content: space-between; align-items: center;
}
footer span { font-size: 12px; color: rgba(255,255,255,0.3); letter-spacing: 0.05em; }*/

/* HERO VISUAL */
.hero-visual {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 44%; display: flex; align-items: center; justify-content: center;
  opacity: 1; pointer-events: none;
}
.hero-visual svg { width: 100%; max-width: 880px; height: auto; }

/* PULL QUOTE */
.pullquote {
  background: var(--red); padding: 72px 56px;
  display: flex; align-items: flex-start; gap: 20px;
}
.pq-mark {
  font-family: var(--serif); font-size: 100px; line-height: 0.65;
  color: rgba(255,255,255,0.2); flex-shrink: 0; margin-top: 12px;
}
.pullquote blockquote {
  font-family: var(--serif); font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700; font-style: italic; line-height: 1.15;
  color: #fff; letter-spacing: -0.02em;
}

/* ARC VISUAL */
.arc-visual { margin-top: 20px; }
.arc-visual svg { width: 100%; max-width: 640px; height: auto; }

/* RESPONSIVE */


/* MOBILE NAV */
.nav-btn--desktop {
  display: inline-flex;
}

.mobile-nav-toggle,
.mobile-nav-panel {
  display: none;
}

.mobile-nav-toggle {
  appearance: none;
  border: 1px solid rgba(0,0,0,0.08);
  background: #fff;
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  flex-shrink: 0;
}

.mobile-nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
  transition: transform .2s ease, opacity .2s ease;
}

.mobile-nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-panel {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 95;
  padding: 0 24px 18px;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
}

.mobile-nav-panel.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-nav-panel__inner {
  background: rgba(255,255,255,0.98);
  border: 1px solid var(--border);
  box-shadow: 0 14px 34px rgba(0,0,0,0.08);
  padding: 18px;
}

.mobile-nav-links {
  list-style: none;
  display: grid;
  gap: 2px;
  margin-bottom: 16px;
}

.mobile-nav-links a {
  display: block;
  text-decoration: none;
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  padding: 10px 0;
}

.mobile-nav-btn {
  width: 100%;
  justify-content: center;
}

@media (max-width: 860px) {
  nav { padding: 0 24px; }
  nav ul { display: none; }
  .nav-btn--desktop { display: none; }
  .mobile-nav-toggle { display: inline-flex; }
  .mobile-nav-panel { display: block; }
  .hero, .sec, .sec-sm { padding: 88px 24px 56px; }
  .band, .stories-head { padding-left: 24px; padding-right: 24px; }
  .stories-grid, .what-grid, .team-grid, .truth-grid, .not-grid, .who-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .pullquote { padding: 48px 24px; }
  .pq-mark { display: none; }
  footer { padding: 16px 24px; flex-direction: column; gap: 4px; text-align: center; }
}

/* ==========================
   CONTACT FORM
   ========================== */

.contact-form-wrap{
  margin-top:32px;
  width:100%;
  max-width:760px;
}

.contact-form{
  display:grid;
  gap:18px;
}

.form-row{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.form-row label{
  font-size:14px;
  font-weight:600;
  color:rgba(255,255,255,0.88);
  letter-spacing:0.02em;
}

.form-row input,
.form-row textarea{
  width:100%;
  border:1px solid rgba(255,255,255,0.16);
  background:rgba(255,255,255,0.06);
  color:#ffffff;
  border-radius:12px;
  padding:14px 16px;
  font:inherit;
  outline:none;
  transition:border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.form-row input::placeholder,
.form-row textarea::placeholder{
  color:rgba(255,255,255,0.45);
}

.form-row input:focus,
.form-row textarea:focus{
  border-color:rgba(196,34,0,0.9);
  background:rgba(255,255,255,0.08);
  box-shadow:0 0 0 4px rgba(196,34,0,0.14);
}

.form-row textarea{
  resize:vertical;
  min-height:140px;
}

.contact-submit{
  appearance:none;
  border:0;
  border-radius:12px;
  padding:14px 20px;
  background:var(--red);
  color:#fff;
  font:inherit;
  font-weight:600;
  cursor:pointer;
  justify-self:start;
  transition:transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.contact-submit:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 24px rgba(0,0,0,0.18);
}

.contact-submit:active{
  transform:translateY(0);
}

.hp-field{
  position:absolute !important;
  left:-9999px !important;
  opacity:0 !important;
  pointer-events:none !important;
}

@media (max-width:600px){
  .contact-form-wrap{
    margin-top:24px;
  }

  .form-row input,
  .form-row textarea{
    padding:13px 14px;
  }

  .contact-submit{
    width:100%;
    justify-self:stretch;
  }
}

/*  extra form styling for Ajax Function Message */

.form-status {
  min-height: 24px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.72);
}

.form-status--error {
  color: #ffb4a3;
}

.contact-submit[disabled] {
  opacity: 0.7;
  cursor: wait;
  transform: none;
  box-shadow: none;
}

.form-success {
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 28px 24px;
  color: #fff;
  animation: formSuccessIn 0.35s ease;
}

.form-success-kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 10px;
}

.form-success h3 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  margin-bottom: 12px;
  color: #fff;
}

.form-success p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  margin: 0;
}

@keyframes formSuccessIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Modal windows */

body.modal-open {
  overflow: hidden;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 180;
  background: rgba(10, 6, 3, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.policy-modal {
  position: fixed;
  inset: 0;
  z-index: 190;
  display: grid;
  place-items: center;
  padding: 32px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.policy-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.policy-modal__dialog {
  position: relative;
  width: min(960px, 100%);
  max-height: min(84vh, 900px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.4rem;
  background: linear-gradient(180deg, #120b07 0%, #0d0704 100%);
  box-shadow: 0 24px 80px rgba(0,0,0,0.35);
  transform: translateY(14px) scale(0.985);
  transition: transform 0.24s ease;
}

.policy-modal.is-open .policy-modal__dialog {
  transform: translateY(0) scale(1);
}

.policy-modal__content {
  max-height: min(84vh, 900px);
  overflow: auto;
  padding: 2.25rem 2rem 2rem;
  color: #f4ede6;
}

.policy-modal__content h2,
.policy-modal__content h3,
.policy-modal__content h4 {
  font-family: 'Playfair Display', Georgia, serif;
}

.policy-modal__content h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}

.policy-modal__content h3 {
  margin: 1.75rem 0 0.75rem;
  font-size: 1.45rem;
  line-height: 1.2;
  color: #f4ede6;
}

.policy-modal__content h4 {
  margin: 1.1rem 0 0.55rem;
  font-size: 1.08rem;
  line-height: 1.3;
  color: #c42200;
}

.policy-modal__content p,
.policy-modal__content li {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: #d0c2b6;
}

.policy-modal__content p + p,
.policy-modal__content p + ol,
.policy-modal__content ol + p,
.policy-modal__content h4 + p,
.policy-modal__content h3 + p {
  margin-top: 0.75rem;
}

.policy-modal__content ol {
  margin: 0.75rem 0 0;
  padding-left: 1.35rem;
}

.policy-modal__content li + li {
  margin-top: 0.45rem;
}

.policy-modal__eyebrow,
.policy-modal__updated {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244,237,230,0.6);
}

.policy-modal__updated {
  margin-top: 0.85rem;
  margin-bottom: 1.25rem;
}

.policy-modal__close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  color: #f4ede6;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.policy-modal__close:hover {
  background: rgba(255,255,255,0.12);
  transform: scale(1.04);
}

@media (max-width: 767px) {
  .policy-modal {
    padding: 16px;
  }

  .policy-modal__content {
    padding: 1.4rem 1.15rem 1.25rem;
  }

  .policy-modal__close {
    top: 0.65rem;
    right: 0.65rem;
  }
}

@media (max-width: 480px) {
  nav {
    padding: 0 18px;
    height: 60px;
  }

  .logo-img {
    max-height: 32px;
  }

  .mobile-nav-toggle {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    gap: 4px;
  }

  .mobile-nav-toggle span {
    width: 16px;
  }

  .mobile-nav-panel {
    top: 60px;
    padding: 0 18px 16px;
  }
}
