/* ===== Design tokens (matched to current live site) ===== */
:root {
  --bg: #000000;
  --surface: #1b1b1b;
  --surface-2: #141414;
  --text: #f5f5f4;
  --text-muted: #a8a8a6;
  --accent: #bff747;
  --accent-dark: #8fc71e;
  --border: rgba(255, 255, 255, 0.1);
  --radius: 20px;
  --container-w: 1300px;
  --font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

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

h1, h2, h3 { font-weight: 700; margin: 0 0 16px; line-height: 1.15; }

.section { padding: 96px 0; }
.section-alt { background: var(--surface-2); }
/* Reference section titles are Merriweather 50px weight 300, white, line-height 60px (contact section is the exception at 34px, see override below) */
.section-title {
  font-family: "Merriweather", serif;
  font-weight: 300;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.2;
  color: #ffffff;
  margin: 0 0 24px;
}
.section-lead { color: var(--text-muted); font-size: 18px; max-width: 640px; margin-bottom: 40px; }

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: #0a0a0a; }
.btn-primary:hover { background: var(--accent-dark); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--border); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* ===== Header ===== */
.site-header {
  position: relative;
  z-index: 1000;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 24px;
  gap: 24px;
}
.logo {
  position: relative;
  z-index: 950;
  font-family: "Merriweather", serif;
  font-weight: 400;
  font-size: 25px;
  line-height: 30px;
  white-space: nowrap;
  color: #ffffff;
}
.logo-accent { color: var(--accent); font-weight: 700; }
.main-nav { display: flex; align-items: center; flex: 1; justify-content: center; }
.mobile-nav-links { display: flex; align-items: center; }
.main-nav a { font-size: 16px; font-weight: 700; line-height: 1.2; padding: 15px; color: #ffffff; }
.main-nav a:hover { color: var(--accent); }
.nav-cta { color: #ffffff; }
.mobile-nav-extra { display: none; }
.header-actions { display: flex; align-items: center; }
.social-icons { display: flex; align-items: center; gap: 16px; }
.social-icons a {
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  width: 20px; height: 20px;
}
.social-icons a:hover { opacity: 0.75; }

.nav-toggle {
  position: relative;
  z-index: 950;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero =====
   Values sourced directly from Elementor's generated post-15.css (not sampled
   computed-style guesses) — element IDs 627bca9/04f1316/97c655e/1fdfad1/
   922e283/bd45ae6/7724eeb/3d5c15e/2f0f08c/1ce0121/39e3181. */
.hero {
  padding: 0 10px 50px;
  margin-top: -104px;
}
.hero-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.hero-text {
  width: calc(50% - 5px);
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 15px;
  padding-top: 121px;
}
.hero h1 {
  font-family: "Merriweather", serif;
  font-weight: 300;
  font-size: 44px;
  line-height: 1.2em;
  color: #ffffff;
  margin-bottom: 0;
}
.hero h1.hero-highlight { color: var(--accent); }
.hero-sub {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.7em;
  color: var(--text);
  margin: 0 0 20px;
}
.hero-confidential { display: flex; align-items: center; gap: 8px; color: var(--text); font-weight: 700; font-size: 20px; margin: 0 0 20px; }
.hero-confidential svg { color: var(--accent); flex-shrink: 0; }
.hero-cta-row { display: flex; align-items: center; gap: 12px; }
.btn-hero {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 25px;
  border-radius: 100px;
}
.btn-hero:hover { background: rgba(255, 255, 255, 0.3); }
.btn-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #0a0a0a;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.btn-arrow:hover { background: var(--accent-dark); }

.hero-image {
  position: relative;
  width: calc(50% - 5px);
  padding: 110px 10px 10px 70px;
}
.hero-photo {
  position: relative;
  z-index: 1;
  width: calc(100% - 30px);
  height: auto;
  display: block;
}
.hero-deco {
  position: absolute;
  z-index: 2;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  animation: hero-deco-float 4s ease-in-out infinite;
}
.hero-deco::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #ffffff;
  transform: scale(0);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.hero-deco:hover::before { transform: scale(1); }
.hero-deco img { display: block; position: relative; z-index: 1; }
.hero-deco-1 { width: 82px; height: 82px; top: 159px; left: 70px; animation-duration: 3.6s; }
.hero-deco-2 { width: 80px; height: 80px; bottom: 261px; right: 10px; animation-duration: 4.4s; animation-delay: -1.6s; }

@keyframes hero-deco-float {
  0%, 100% { transform: translateY(-9px); }
  50% { transform: translateY(9px); }
}

/* ===== Ticker ===== */
/* Reference: lime band, black text 20px/700, line-height 24px,
   each word padded 15px/35px (no separator), marquee ~60px/s (40s loop). */
.ticker {
  background: var(--accent);
  color: #000000;
  overflow: hidden;
  white-space: nowrap;
  padding: 0;
}
.ticker-track {
  display: inline-flex;
  animation: scroll-left 40s linear infinite;
}
.ticker-track span {
  padding: 15px 35px;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #000000;
}
@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== About ===== */
.about-layout {
  display: flex;
  align-items: stretch;
  gap: 60px;
}
.about-left { width: calc(60% - 30px); min-width: 0; }
.about-right { width: calc(40% - 30px); scroll-margin-top: 24px; }
.about-sticky { position: sticky; top: 24px; align-self: start; }

.about-eyebrow {
  color: var(--accent);
  font-size: 15px;
  font-weight: 500;
  margin: 0 0 8px;
}
.about-name {
  font-family: "Merriweather", serif;
  font-weight: 700;
  font-size: 34px;
  color: #ffffff;
  margin: 0 0 20px;
}
.about-socials { display: flex; gap: 12px; margin-bottom: 40px; }
.about-socials a {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.about-socials a:hover { border-color: var(--accent); }

.about-contact-rows { margin-bottom: 48px; }
.about-contact-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: padding-left 0.25s ease, border-color 0.25s ease;
}
.about-contact-row:first-child { padding-top: 0; }
.about-contact-row:hover {
  padding-left: 8px;
  border-color: var(--accent);
}
.about-contact-row:hover .about-contact-icon {
  background: var(--accent);
  color: #0a0a0a;
  transform: scale(1.06);
}
.about-contact-row:hover .about-contact-label {
  color: var(--accent);
}
.about-contact-icon {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--surface);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.about-contact-label { font-weight: 700; color: #ffffff; margin: 0 0 4px; font-size: 16px; transition: color 0.25s ease; }
.about-contact-value { color: var(--text); margin: 0; font-size: 15px; }

.about-bio-title { margin-top: 0; }
.about-text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 22px;
}
.about-text p:last-child { margin-bottom: 0; }
.about-value, .about-mission { color: var(--text); }
.about-video { margin-top: 40px; }

.about-photo {
  width: 100%;
  height: auto;
  border-radius: var(--radius) var(--radius) 0 0;
  margin-bottom: 0;
  display: block;
}
.about-form-card {
  background: var(--surface);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 24px;
}

.about-cta-row { display: flex; align-items: center; gap: 12px; }
.about-cta-toggle {
  flex: 1;
  font-size: 16px;
  font-weight: 700;
  padding: 15px 20px;
  border: none;
  cursor: pointer;
}
.about-quick-actions { display: flex; gap: 10px; flex-shrink: 0; }
.about-quick-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--accent);
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.about-quick-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #0a0a0a;
  transform: translateY(-2px);
}

.about-form-collapse {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.about-form-collapse.open { grid-template-rows: 1fr; }
.about-form-collapse-inner { overflow: hidden; min-height: 0; }
.about-contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 18px;
}
.about-contact-form input,
.about-contact-form textarea {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--surface-2);
  border-radius: 10px;
  padding: 10px 14px;
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  resize: vertical;
}
.about-contact-form input::placeholder,
.about-contact-form textarea::placeholder { color: var(--text-muted); }
.about-contact-form input:focus,
.about-contact-form textarea:focus { outline: none; border-color: var(--accent); }
.about-contact-form .btn-primary {
  font-size: 16px;
  font-weight: 700;
  padding: 14px 25px;
  color: #1b1b1b;
}
.about-contact-form .btn-primary:disabled { opacity: 0.7; cursor: default; transform: none; }
.about-form-status { margin: 0; font-size: 13.5px; line-height: 1.5; min-height: 0; }
.about-form-status.is-success { color: var(--accent); }
.about-form-status.is-error { color: #f0997b; }

/* ===== Directions ===== */
.directions-lead { max-width: 820px; }
.directions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  counter-reset: direction-counter;
}
.direction-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 18px 20px 20px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}
.direction-card::before {
  counter-increment: direction-counter;
  content: "0" counter(direction-counter);
  display: block;
  font-family: "Merriweather", serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.06em;
  color: var(--accent);
  opacity: 0.7;
  margin-bottom: 20px;
}
.direction-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  background: var(--surface-2);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
}
.direction-card h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--accent);
  margin: 0 0 14px;
}
.direction-card p {
  color: var(--text-muted);
  margin: 0;
  font-size: 15.5px;
  line-height: 1.7;
}

/* ===== FAQ ===== */
#faq-pro .container, #faq-org .container { display: flex; flex-direction: column; align-items: center; }
#faq-pro .section-title, #faq-org .section-title { text-align: center; }
#faq-org .section-lead { text-align: center; }
.faq-list { max-width: 820px; width: 100%; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 16px;
  overflow: hidden;
  background: var(--surface);
  transition: border-color 0.25s ease, background-color 0.25s ease;
}
.faq-item:last-child { margin-bottom: 0; }
.faq-item:hover { border-color: rgba(191, 247, 71, 0.35); }
.faq-item.is-open { border-color: var(--accent); background: var(--surface-2); }
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 19px;
  line-height: 1.35;
  color: #ffffff;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  transition: color 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item:hover summary { color: var(--accent); }
.faq-item.is-open summary { color: var(--accent); }

/* Thin animated plus/minus: circle with two 1.5px bars drawn via layered gradients;
   collapsing the vertical bar's background-size turns the plus into a minus. */
.faq-item summary::after {
  content: "";
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.4px solid var(--border);
  background-image: linear-gradient(var(--accent), var(--accent)), linear-gradient(var(--accent), var(--accent));
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 1.4px, 1.4px 10px;
  transition: background-size 0.3s ease, border-color 0.3s ease, transform 0.35s ease;
}
.faq-item:hover summary::after { border-color: var(--accent); }
.faq-item.is-open summary::after {
  border-color: var(--accent);
  background-size: 10px 1.4px, 1.4px 0;
  transform: rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
  padding: 0 24px;
}
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-answer-inner {
  overflow: hidden;
  min-height: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
}
.faq-answer-inner p { margin: 0 0 12px; }
.faq-answer-inner p:last-child { margin-bottom: 0; }
.faq-answer-inner::after { content: ""; display: block; height: 22px; }
.faq-pending { color: var(--text-muted); font-style: italic; }

/* ===== Format of work ===== */
.format-general {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.format-grid-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.format-col {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--surface);
  border-radius: 20px;
  padding: 32px 26px;
  border: 1px solid var(--border);
  min-height: 220px;
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}
.format-col:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  background: var(--surface-2);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
}
.format-col::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -26px;
  bottom: -26px;
  width: 150px;
  height: 150px;
  background-color: #ffffff;
  opacity: 0.035;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  pointer-events: none;
}
.format-col-format::after {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.3'><circle cx='12' cy='12' r='9'/><path d='M3 12h18M12 3c2.5 2.4 3.8 5.6 3.8 9s-1.3 6.6-3.8 9c-2.5-2.4-3.8-5.6-3.8-9s1.3-6.6 3.8-9z'/></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.3'><circle cx='12' cy='12' r='9'/><path d='M3 12h18M12 3c2.5 2.4 3.8 5.6 3.8 9s-1.3 6.6-3.8 9c-2.5-2.4-3.8-5.6-3.8-9s1.3-6.6 3.8-9z'/></svg>");
}
.format-col-variants::after {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.3'><rect x='3' y='4' width='8' height='8' rx='2'/><rect x='13' y='4' width='8' height='8' rx='2'/><rect x='3' y='14' width='8' height='8' rx='2'/><rect x='13' y='14' width='8' height='8' rx='2'/></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.3'><rect x='3' y='4' width='8' height='8' rx='2'/><rect x='13' y='4' width='8' height='8' rx='2'/><rect x='3' y='14' width='8' height='8' rx='2'/><rect x='13' y='14' width='8' height='8' rx='2'/></svg>");
}
.format-col-privacy::after {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.3'><rect x='4' y='10' width='16' height='10' rx='2'/><path d='M8 10V7a4 4 0 0 1 8 0v3'/></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.3'><rect x='4' y='10' width='16' height='10' rx='2'/><path d='M8 10V7a4 4 0 0 1 8 0v3'/></svg>");
}
.format-icon {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: rgba(191, 247, 71, 0.08);
  border: 1px solid rgba(191, 247, 71, 0.25);
}
.format-col h3 { font-size: 17px; font-weight: 700; color: #ffffff; margin: 0; margin-top: auto; }
.format-col p { color: var(--text-muted); margin: 0; font-size: 14.5px; line-height: 1.65; }

.format-price {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--accent);
  border-radius: 20px;
  padding: 26px 32px;
  transition: background-color 0.3s ease;
}
.format-price:hover { background: #ffffff; }
.format-price .format-icon { color: #0a0a0a; background: rgba(10, 10, 10, 0.12); border-color: rgba(10, 10, 10, 0.25); flex-shrink: 0; }
.format-price-text { display: flex; flex-direction: column; gap: 4px; flex-shrink: 0; }
.format-price-text h3 { color: #0a0a0a; font-size: 15px; font-weight: 700; margin: 0; }
.format-price-note {
  color: rgba(10, 10, 10, 0.7);
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 0 48px;
  max-width: 320px;
}
.price-tag { color: #0a0a0a; font-size: 20px; font-weight: 800; margin: 0; }
.format-price-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex-shrink: 0;
  background: #0a0a0a;
  color: var(--accent);
  padding: 13px 16px 13px 26px;
  font-size: 14.5px;
  transition: background-color 0.2s ease, transform 0.15s ease;
}
.format-price-cta svg { transition: transform 0.25s ease; }
.format-price-cta:hover { background: #1b1b1b; }
.format-price-cta:hover svg { transform: translate(3px, -3px); }

/* ===== Video ===== */
.video-wrap {
  position: relative;
  padding-top: 56.25%;
  border-radius: 0;
  overflow: hidden;
  background: #000000;
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== Direction reputation (fills the trailing grid gap next to the last direction card) ===== */
.direction-reputation {
  grid-column: span 2;
  display: flex;
  align-items: center;
  gap: 28px;
  background: transparent;
  border: 1px dashed var(--border);
  border-radius: 24px;
  padding: 20px 32px;
}
.direction-reputation-score {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  color: var(--accent);
  opacity: 0.8;
}
.direction-reputation-score span {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-muted);
  line-height: 1;
}
.direction-reputation p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
  padding-left: 24px;
  border-left: 1px solid var(--border);
}

/* ===== Footer ===== */
.site-footer {
  padding: 64px 0 40px;
  background: radial-gradient(ellipse 900px 300px at 10% 0%, rgba(191,247,71,0.08), transparent 70%);
}
.footer-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px 40px;
  margin-bottom: 32px;
}
.footer-name {
  font-family: "Merriweather", serif;
  font-weight: 700;
  font-size: 26px;
  color: #ffffff;
  margin: 0;
  white-space: nowrap;
}
.footer-divider { width: 1px; height: 24px; background: var(--border); flex-shrink: 0; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-weight: 700;
  font-size: 19px;
}
.footer-contact-item svg { color: var(--accent); flex-shrink: 0; }
.footer-contact-item:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy { color: var(--text); font-size: 15px; margin: 0; }
.footer-social-pills { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-social-pills a {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 20px;
  color: #ffffff;
  font-size: 14px;
}
.footer-social-pills a:hover { border-color: var(--accent); color: var(--accent); }

/* Contact section title is genuinely smaller in the reference (34px vs 50px everywhere else) */
#contact .section-title { font-size: clamp(28px, 2.6vw, 34px); line-height: 1.2; }

/* =========================================================
   TABLET  (<= 1024px)
   ========================================================= */
@media (max-width: 1024px) {
  .section { padding: 72px 0; }
  .hero { margin-top: -92px; padding-top: 150px; }
  .hero-text, .hero-image { width: 100%; }
  .hero-text { padding-top: 30px; }
  .hero-image { order: -1; max-width: 520px; margin: 0 auto; padding: 10px 10px 10px 50px; }
  .hero h1 { font-size: 50px; }
  .hero-sub { font-size: 18px; margin-bottom: 15px; }
  .hero-deco-1, .hero-deco-2 { width: 60px; height: 60px; }
  .hero-deco-1 img { width: 30px; height: 30px; }
  .hero-deco-2 img { width: 30px; height: 30px; }
  .directions-grid { grid-template-columns: repeat(2, 1fr); }
  .format-grid-row { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }

  .about-layout { flex-direction: column; }
  .about-left, .about-right { width: 100%; }
  .about-sticky { position: static; max-width: 380px; margin: 0 auto; }

  /* Header stays pinned so nav is always reachable while scrolling, and to anchor the full-screen mobile menu */
  .site-header { position: sticky; top: 0; }

  /* Full nav doesn't fit in one row below ~1100px — switch to a full-screen overlay menu here, not just under 768px */
  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 900;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 90px 28px 32px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
    overflow-y: auto;
  }
  .main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  .main-nav .mobile-nav-links a {
    width: 100%;
    font-family: "Merriweather", serif;
    font-size: 30px;
    font-weight: 700;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
  }
  .main-nav .mobile-nav-links a.nav-cta {
    font-family: var(--font);
    display: inline-flex;
    width: auto;
    margin-top: 20px;
    padding: 15px 30px;
    border-bottom: none;
    border-radius: 999px;
    background: var(--accent);
    color: #0a0a0a;
    font-size: 16px;
  }
  .main-nav .mobile-nav-links a.nav-cta:hover { background: var(--accent-dark); color: #0a0a0a; }

  .mobile-nav-extra {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: auto;
    padding-top: 28px;
    border-top: 1px solid var(--border);
  }
  .mobile-nav-contacts { display: flex; flex-direction: column; gap: 14px; }
  .mobile-nav-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    font-size: 15px;
    font-weight: 500;
  }
  .mobile-nav-contact svg { color: var(--accent); flex-shrink: 0; }
  .mobile-nav-contact:hover { color: var(--accent); }
  .mobile-nav-social { display: flex; gap: 12px; }
  .mobile-nav-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--border);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  }
  .mobile-nav-social a:hover { background: var(--accent); border-color: var(--accent); color: #0a0a0a; }

  .header-actions { display: none; }
  .nav-toggle { display: flex; }
  body.nav-open { overflow: hidden; }
}

/* =========================================================
   MOBILE  (<= 768px)
   ========================================================= */
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .container { padding: 0 20px; }

  .header-inner { padding: 30px 20px; transition: padding 0.25s ease; }
  .logo { font-size: 25px; transition: font-size 0.25s ease; }
  .site-header.scrolled .header-inner { padding: 16px 20px; }
  .site-header.scrolled .logo { font-size: 19px; }

  /* Hero: text leads (photo no longer bumped above it via order:-1), decorative
     bubbles reduced to one small corner accent, CTA switched to a solid high-contrast pill. */
  .hero { margin-top: -68px; padding-top: 108px; }
  .hero-text { order: 0; padding-top: 4px; gap: 12px; }
  .hero-image { order: 0; max-width: 300px; margin: 0 auto 8px; padding: 0; }
  .hero h1 { font-size: 34px; }
  .hero-sub { font-size: 16px; line-height: 1.5em; margin-bottom: 8px; }
  .hero-confidential { font-size: 15px; margin-bottom: 18px; }
  .hero-deco-1 { display: none; }
  .hero-deco-2 { width: 46px; height: 46px; bottom: -6px; right: -6px; }
  .hero-deco-2 img { width: 22px; height: 22px; }
  .btn-hero { background: var(--accent); color: #0a0a0a; }
  .btn-hero:hover { background: var(--accent-dark); }

  .about-name { font-size: 28px; }
  .about-contact-row { gap: 14px; padding: 16px 0; }
  .about-contact-icon { width: 46px; height: 46px; }

  .directions-grid { grid-template-columns: 1fr; }
  .direction-card { padding: 14px; }
  .direction-reputation { grid-column: span 1; flex-direction: column; align-items: flex-start; gap: 14px; padding: 24px; }
  .direction-reputation p { padding-left: 0; border-left: none; }
  .format-grid-row { grid-template-columns: 1fr; }
  .format-col { padding: 14px; }
  .format-price { flex-direction: column; align-items: flex-start; gap: 16px; padding: 14px; }
  .format-price-note { margin-left: 0; }

  .faq-item summary { font-size: 17px; padding: 16px; gap: 14px; }
  .faq-item summary::after { width: 22px; height: 22px; }
  .faq-answer { padding: 0 16px; }
  .faq-answer-inner::after { height: 16px; }
  .ticker-track span { font-size: 17px; padding: 13px 26px; }

  .site-footer { padding: 48px 0 32px; }
  .footer-card { flex-direction: column; align-items: flex-start; gap: 14px; padding: 22px; }
  .footer-name { font-size: 21px; white-space: normal; }
  .footer-divider { display: none; }
  .footer-contact-item { width: 100%; font-size: 15px; }
  .footer-contact-item span { min-width: 0; overflow-wrap: anywhere; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-social-pills a { padding: 9px 16px; font-size: 13.5px; }
  .reputation-inner { gap: 16px; }
  .reputation-score { font-size: 44px; line-height: 1.1; }
  .pricing-card { padding: 28px; }
}

/* Mobile nav open state toggles both blocks together via JS adding .open to header-actions too */
