/*
Theme Name:  Wardmont
Theme URI:   https://wardmont.com
Author:      Torrus
Author URI:  https://wardmont.com
Description: A specialist real estate marketing agency theme. One city. One client. No exception. Built exclusively for real estate professionals.
Version:     1.0.0
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wardmont
Tags:        one-column, custom-colors, custom-menu, full-width-template, threaded-comments, translation-ready
*/

/* ============================================================
   WARDMONT — Global Design System v2
   Palette: Soft Cream / Sage Green / Muted Slate
   Typography: Inter (Google Fonts)
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #F9F8F6;
  --bg-2:        #F0EEEA;
  --bg-3:        #E8E5DF;
  --bg-dark:     #2C332B;
  --text:        #2C332B;
  --text-muted:  #7A8078;
  --text-light:  #A8ADA6;
  --accent:      #A3B19B;
  --accent-h:    #8E9C86;
  --accent-pale: #E8EDE6;
  --border:      #DDD9D1;
  --border-dark: #C8C3BA;
  --font:        'Inter', system-ui, sans-serif;
  --radius:      0px;
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --t:           0.28s;
}

html { scroll-behavior: smooth; font-size: 16px; }

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

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 2.5rem; }
.container--narrow { max-width: 900px; margin: 0 auto; padding: 0 2.5rem; }

.bracket {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.bracket--accent { color: var(--accent-h); }
.divider { width: 100%; height: 1px; background: var(--border); }

/* ══════════════════════════════════════
   HEADER — APPLE-STYLE LIQUID GLASS
══════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  width: 100%;
  background-color: rgba(248, 247, 244, 0.20);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: background-color var(--t) var(--ease), border-color var(--t) var(--ease);
}

.site-header.scrolled {
  background-color: rgba(248, 247, 244, 0.45);
  border-bottom-color: rgba(0, 0, 0, 0.12);
}

.header__back,
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-h);
  border: 1px solid var(--border-dark);
  padding: 0.45rem 1.1rem;
  transition: background var(--t) var(--ease), color var(--t) var(--ease), border-color var(--t);
  text-decoration: none;
}

.header__back:hover,
.back-link:hover {
  background: var(--accent-pale);
  color: var(--text);
  border-color: var(--accent);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 2.5rem;
  max-width: 1240px;
  margin: 0 auto;
}

.site-logo {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.header__nav ul,
.primary-menu {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
  margin: 0; padding: 0;
}

.primary-menu a,
.header__nav ul a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--t);
  text-decoration: none;
}

.primary-menu a:hover,
.header__nav ul a:hover,
.primary-menu .current-menu-item > a { color: var(--text); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background var(--t) var(--ease), color var(--t) var(--ease), transform var(--t);
  white-space: nowrap;
  text-decoration: none;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  padding: 0.75rem 1.8rem;
}
.btn--primary:hover {
  background: var(--accent-h);
  transform: translateY(-1px);
  color: #fff;
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-dark);
  padding: 0.75rem 1.8rem;
}
.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent-h);
}

.header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.header__toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--text);
  transition: var(--t);
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  padding: 140px 0 80px;
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: end;
}

.hero__label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero__label::before {
  content: '';
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--accent);
}

.hero__headline {
  font-size: clamp(3.2rem, 8vw, 7.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--text);
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}
.hero__headline em { font-style: normal; color: var(--accent); }

.hero__sub {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: 2.5rem;
}

.hero__cta { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }

.hero__meta {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-self: flex-start;
  padding-top: 6rem;
}
.hero__meta-item { border-top: 1px solid var(--border); padding-top: 1.2rem; }
.hero__meta-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}
.hero__meta-val {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
}

/* ══════════════════════════════════════
   MARQUEE
══════════════════════════════════════ */
.marquee {
  background: var(--bg-dark);
  overflow: hidden;
  padding: 1.1rem 0;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}
.marquee__item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0 2.5rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(163,177,155,0.85);
  white-space: nowrap;
}
.marquee__dot {
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
  flex-shrink: 0;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee:hover .marquee__track { animation-play-state: paused; }

/* ══════════════════════════════════════
   SECTION BASE
══════════════════════════════════════ */
.section { padding: 8rem 0; }
.section--alt { background: var(--bg-2); }
.section--dark { background: var(--bg-dark); }

.section__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 5rem;
  flex-wrap: wrap;
}

.section__title {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--text);
  max-width: 600px;
}
.section__title--light { color: #fff; }

.section__sub {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 360px;
  padding-top: 1rem;
}
.section__sub--light { color: rgba(255,255,255,0.5); }

/* ══════════════════════════════════════
   MECHANISM COMPARISON
══════════════════════════════════════ */
.mechanism {
  border-top: 1px solid var(--border-dark);
  padding: 3.5rem 0;
}
.mechanism:last-child { border-bottom: 1px solid var(--border-dark); }

.mechanism__header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.mechanism__tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

.mechanism__title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text);
  text-transform: uppercase;
}

.mechanism__body {
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 4rem;
  align-items: start;
}

.mechanism__compare {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  background: var(--bg);
  border: 1px solid var(--border);
}

.mechanism__side { padding: 2rem 2.2rem; }
.mechanism__side--standard { background: #FAF8F5; }
.mechanism__side--wardmont { background: var(--bg); }

.mechanism__model-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.mechanism__side--standard .mechanism__model-label { color: var(--text-light); }
.mechanism__side--wardmont .mechanism__model-label { color: var(--accent-h); }
.mechanism__side p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.8; margin: 0; }

.mechanism__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-light);
  background: var(--bg-3);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.mechanism__metric { text-align: right; }
.mechanism__metric-num {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  color: var(--accent-h);
  line-height: 1;
  margin-bottom: 0.6rem;
}
.mechanism__metric-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ══════════════════════════════════════
   SERVICES LIST
══════════════════════════════════════ */
.services__list { border-top: 1px solid var(--border); }

.service-item {
  display: grid;
  grid-template-columns: 120px 1fr 240px;
  gap: 3rem;
  align-items: start;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
  transition: background var(--t);
  position: relative;
}
.service-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: var(--accent-pale);
  transition: width 0.4s var(--ease);
}
.service-item:hover::before { width: 3px; }

.service-item__num {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  padding-top: 0.3rem;
}

.service-item__main h3 {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.service-item__main p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 480px;
}

.service-item__tags { display: flex; flex-wrap: wrap; gap: 0.5rem; padding-top: 0.3rem; }
.service-tag {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--bg-3);
  color: var(--text-muted);
  padding: 0.3rem 0.7rem;
}

/* ══════════════════════════════════════
   JOURNEY — UNBROKEN VERTICAL TIMELINE
══════════════════════════════════════ */
.journey {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.journey__track {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  position: relative;
  border-left: 2px solid var(--border-dark);
  margin-left: 0.5rem;
  padding: 0.5rem 0;
}

.journey__step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 3rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
  will-change: opacity, transform;
}

.journey__step:nth-child(1) { transition-delay: 0s; }
.journey__step:nth-child(2) { transition-delay: 0.1s; }
.journey__step:nth-child(3) { transition-delay: 0.2s; }
.journey__step:nth-child(4) { transition-delay: 0.3s; }

.journey__step.step-visible { opacity: 1; transform: translateY(0); }

.journey__node {
  position: absolute;
  left: -7px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--bg);
  box-shadow: 0 0 0 2px var(--accent-h);
  flex-shrink: 0;
  z-index: 1;
}

.journey__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  width: 100%;
}

.journey__num {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-h);
  margin-bottom: 0.6rem;
}

.journey__title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.7rem;
  line-height: 1.2;
}

.journey__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.85;
  max-width: 540px;
  margin-bottom: 1.2rem;
}

.journey__cta {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-h);
  transition: color var(--t);
}
.journey__cta:hover { color: var(--text); }

.journey__badge {
  display: inline-block;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--accent-pale);
  color: var(--accent-h);
  padding: 0.3rem 0.8rem;
}

/* ══════════════════════════════════════
   WHY / NUMBERS GRID
══════════════════════════════════════ */
.numbers { padding: 8rem 0; background: var(--bg); }
.numbers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.number-item {
  background: var(--bg);
  padding: 3.5rem 2.5rem;
  transition: background var(--t);
}
.number-item:hover { background: var(--bg-2); }
.number-item__num {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 1rem;
}
.number-item__num span { color: var(--accent); }
.number-item__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}
.number-item__desc { font-size: 0.85rem; color: var(--text-light); line-height: 1.7; }

/* ══════════════════════════════════════
   TESTIMONIALS SLIDER
══════════════════════════════════════ */
.testimonials { background: var(--bg-dark); padding: 8rem 0; }
.testimonials__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
}
.slider__controls { display: flex; gap: 0.8rem; }
.slider__btn {
  width: 48px; height: 48px;
  border: 1px solid rgba(255,255,255,0.15);
  background: none;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: var(--t);
}
.slider__btn:hover { border-color: var(--accent); color: var(--accent); }
.slider__track { display: grid; grid-template-columns: 1fr; overflow: hidden; }
.testimonial-slide { display: none; }
.testimonial-slide.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  animation: fadeSlide 0.4s var(--ease);
}
@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.testimonial__quote {
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  font-weight: 300;
  color: rgba(255,255,255,0.88);
  line-height: 1.6;
  letter-spacing: -0.01em;
}
.testimonial__quote::before {
  content: '"';
  display: block;
  font-size: 5rem;
  line-height: 0.8;
  color: var(--accent);
  opacity: 0.4;
  margin-bottom: 0.5rem;
}
.testimonial__meta { padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); margin-top: 2rem; }
.testimonial__name {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.25rem;
}
.testimonial__role { font-size: 0.78rem; color: rgba(255,255,255,0.4); letter-spacing: 0.06em; }
.testimonial__stat-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.testimonial__stat {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 2rem;
}
.testimonial__stat:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.testimonial__stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
}
.testimonial__stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  text-align: right;
  max-width: 180px;
  line-height: 1.5;
}
.slider__dots { display: flex; gap: 0.5rem; margin-top: 3rem; }
.slider__dot {
  width: 24px; height: 2px;
  background: rgba(255,255,255,0.15);
  cursor: pointer;
  transition: var(--t);
}
.slider__dot.active { background: var(--accent); }

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
.faq { padding: 8rem 0; background: var(--bg-2); }
.faq__list { border-top: 1px solid var(--border); }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.8rem 0;
  display: grid;
  grid-template-columns: 100px 1fr 40px;
  gap: 2rem;
  align-items: center;
  cursor: pointer;
  color: var(--text);
  transition: color var(--t);
}
.faq__q:hover { color: var(--accent-h); }
.faq__q-num {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.faq__q-text { font-size: 1rem; font-weight: 600; letter-spacing: -0.01em; }
.faq__q-icon {
  width: 32px; height: 32px;
  border: 1px solid var(--border-dark);
  display: flex; align-items: center; justify-content: center;
  transition: var(--t);
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1;
  flex-shrink: 0;
}
.faq__item.open .faq__q-icon {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: rotate(45deg);
}
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq__a p {
  padding: 0 0 2rem 164px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.9;
}
.faq__item.open .faq__a { max-height: 300px; }

/* ══════════════════════════════════════
   BOOKING
══════════════════════════════════════ */
.booking { padding: 8rem 0; background: var(--bg-dark); }
.booking__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.booking__left .section__title { color: #fff; }
.booking__left .section__sub { color: rgba(255,255,255,0.45); }
.booking__embed {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  min-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 3rem;
  text-align: center;
}
.booking__embed-icon {
  width: 56px; height: 56px;
  border: 1px solid rgba(163,177,155,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.booking__embed-icon svg {
  width: 24px; height: 24px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
}
.booking__embed p { font-size: 0.82rem; color: rgba(255,255,255,0.35); max-width: 260px; line-height: 1.7; }
.booking__embed code {
  font-size: 0.72rem;
  color: var(--accent);
  background: rgba(163,177,155,0.12);
  padding: 0.3rem 0.8rem;
  font-family: monospace;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.site-footer { background: var(--bg-dark); border-top: 1px solid rgba(255,255,255,0.05); padding: 4rem 0 2rem; }
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer__logo {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.2rem;
}
.footer__tagline { font-size: 0.85rem; color: rgba(255,255,255,0.35); max-width: 280px; line-height: 1.8; }
.footer__col h5 {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; padding: 0; margin: 0; }
.footer__col ul a { font-size: 0.83rem; color: rgba(255,255,255,0.4); transition: color var(--t); }
.footer__col ul a:hover { color: rgba(255,255,255,0.8); }
.footer__col address { font-style: normal; font-size: 0.83rem; color: rgba(255,255,255,0.35); line-height: 2; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.06em;
}

/* ══════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════ */
.about-hero {
  padding: 130px 0 80px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.about-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: end;
}
.about-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--text);
}
.about-hero p { font-size: 0.97rem; color: var(--text-muted); line-height: 1.8; }

.letter { padding: 8rem 0; background: var(--bg-2); }
.letter__card {
  max-width: 780px;
  margin: 0 auto;
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 4rem 5rem;
  position: relative;
}
.letter__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--accent);
}
.letter__greeting {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.letter__body p { font-size: 0.97rem; line-height: 2; margin-bottom: 1.4rem; color: var(--text); }
.letter__body p:last-child { margin-bottom: 0; }
.letter__sig { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.letter__sig-name { font-size: 1.3rem; font-weight: 700; color: var(--text); margin-bottom: 0.3rem; letter-spacing: -0.02em; }
.letter__sig-title { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-h); }

.name-section { padding: 8rem 0; background: var(--bg-dark); text-align: center; }
.name-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.06);
  max-width: 720px;
  margin: 4rem auto 0;
}
.name-part { background: rgba(255,255,255,0.02); padding: 3rem; text-align: center; }
.name-word { font-size: 3.5rem; font-weight: 800; letter-spacing: -0.05em; color: var(--accent); margin-bottom: 0.8rem; }
.name-def { font-size: 0.85rem; color: rgba(255,255,255,0.4); line-height: 1.8; }

.pillars { padding: 8rem 0; background: var(--bg); }
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 5rem;
}
.pillar { background: var(--bg); padding: 3rem; transition: background var(--t); }
.pillar:hover { background: var(--bg-2); }
.pillar__num { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent-h); margin-bottom: 1.5rem; }
.pillar h3 { font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: -0.01em; color: var(--text); margin-bottom: 1rem; }
.pillar p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.8; }

/* ══════════════════════════════════════
   CTA BAND
══════════════════════════════════════ */
.cta-band { padding: 8rem 0; background: var(--bg); border-top: 1px solid var(--border); }
.cta-band__inner { display: grid; grid-template-columns: 1fr auto; gap: 4rem; align-items: center; }
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.04em; text-transform: uppercase; line-height: 1; color: var(--text); }
.cta-band p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; margin-top: 0.8rem; max-width: 460px; }

/* ══════════════════════════════════════
   PRIVACY PAGE
══════════════════════════════════════ */
.privacy-hero { padding: 130px 0 60px; background: var(--bg); border-bottom: 1px solid var(--border); }
.privacy-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; letter-spacing: -0.04em; text-transform: uppercase; color: var(--text); margin-top: 0.5rem; }
.privacy-hero .meta { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-h); margin-top: 0.5rem; }
.privacy-content { padding: 6rem 0 8rem; background: var(--bg-2); }
.privacy-layout { display: grid; grid-template-columns: 260px 1fr; gap: 6rem; align-items: start; }
.privacy-nav { position: sticky; top: 90px; background: var(--bg); border: 1px solid var(--border); padding: 1.8rem; }
.privacy-nav h5 { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent-h); margin-bottom: 1.2rem; }
.privacy-nav ul { list-style: none; display: flex; flex-direction: column; gap: 0.1rem; padding: 0; }
.privacy-nav ul a { font-size: 0.78rem; color: var(--text-muted); display: block; padding: 0.4rem 0.8rem; border-left: 2px solid transparent; transition: var(--t); }
.privacy-nav ul a:hover { color: var(--text); border-left-color: var(--accent); }
.privacy-body section { margin-bottom: 4rem; padding-bottom: 4rem; border-bottom: 1px solid var(--border); }
.privacy-body section:last-child { border-bottom: none; }
.privacy-body h2 { font-size: 1.1rem; font-weight: 700; text-transform: uppercase; letter-spacing: -0.01em; color: var(--text); margin-bottom: 1.2rem; }
.privacy-body h3 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin: 1.5rem 0 0.7rem; color: var(--text); }
.privacy-body p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.9; }
.privacy-body ul { padding-left: 1.2rem; margin-bottom: 1rem; }
.privacy-body ul li { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 0.4rem; line-height: 1.7; }
.privacy-tag { display: inline-block; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; background: var(--accent-pale); color: var(--accent-h); padding: 0.25rem 0.7rem; margin-bottom: 0.8rem; }

/* ══════════════════════════════════════
   FADE-UP ANIMATION
══════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-d1 { transition-delay: 0.08s; }
.fade-up-d2 { transition-delay: 0.16s; }
.fade-up-d3 { transition-delay: 0.24s; }
.fade-up-d4 { transition-delay: 0.32s; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .numbers__grid { grid-template-columns: repeat(2, 1fr); }
  .service-item { grid-template-columns: 80px 1fr; }
  .service-item__tags { display: none; }
  .booking__inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__top > *:first-child { grid-column: 1 / -1; }
  .about-hero__inner { grid-template-columns: 1fr; gap: 2rem; }
  .pillars__grid { grid-template-columns: 1fr 1fr; }
  .privacy-layout { grid-template-columns: 1fr; }
  .privacy-nav { position: static; }
  .testimonial-slide.active { grid-template-columns: 1fr; gap: 3rem; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__meta { display: none; }
  .mechanism__body { grid-template-columns: 1fr; gap: 1.5rem; }
  .mechanism__metric { text-align: left; }
  .journey__step-inner { grid-template-columns: 100px 1fr; gap: 1.5rem; }
}

@media (max-width: 720px) {
  .header__nav ul,
  .primary-menu { display: none; }
  .header__nav ul.open,
  .primary-menu.open { display: flex; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--border); padding: 1.5rem 2.5rem; gap: 1rem; }
  .header__toggle { display: flex; }
  .numbers__grid { grid-template-columns: repeat(2, 1fr); }
  .service-item { grid-template-columns: 1fr; gap: 0.8rem; }
  .service-item__num { display: none; }
  .pillars__grid { grid-template-columns: 1fr; }
  .cta-band__inner { grid-template-columns: 1fr; gap: 2rem; }
  .faq__q { grid-template-columns: 60px 1fr 32px; gap: 1rem; }
  .faq__a p { padding-left: 0; }
  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .name-grid { grid-template-columns: 1fr; }
  .letter__card { padding: 2.5rem 1.8rem; }
  .mechanism__compare { grid-template-columns: 1fr; }
  .mechanism__divider { display: none; }
  .mechanism__header { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .journey__step-inner { grid-template-columns: 1fr; gap: 1rem; }
  .journey__connector { display: none; }
}
