/*
Theme Name: MKDDY Property Management
Theme URI: https://mkddypm.com
Author: MKDDY
Author URI: https://mkddypm.com
Description: Custom theme for MKDDY Property Management — Hampton Roads' family-owned property management firm. Editorial design with warm cream/navy/copper palette.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mkddy
*/

:root {
    --ink: #0E2030;
    --ink-soft: #1B3147;
    --paper: #F5F0E6;
    --paper-warm: #EDE4D3;
    --cream: #FAF6EE;
    --copper: #B8642E;
    --copper-deep: #8F4A1F;
    --moss: #4A5D3A;
    --rule: rgba(14, 32, 48, 0.18);
    --shadow: 0 30px 80px -20px rgba(14, 32, 48, 0.25);
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--paper);
    color: var(--ink);
    font-family: 'Inter', -apple-system, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  /* Paper texture overlay */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.05 0 0 0 0 0.12 0 0 0 0 0.18 0 0 0 0.08 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 100;
    opacity: 0.6;
    mix-blend-mode: multiply;
  }

  .container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
  }

  /* ─────────── NAV ─────────── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    padding: 20px 32px;
    background: rgba(245, 240, 230, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--rule);
  }
  nav .inner {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .logo {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 22px;
    letter-spacing: 0.18em;
    color: var(--ink);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .logo::before {
    content: '';
    width: 8px; height: 8px;
    background: var(--copper);
    border-radius: 50%;
  }
  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
    align-items: center;
  }
  .nav-links a {
    color: var(--ink);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    position: relative;
    transition: color 0.3s;
  }
  .nav-links a:not(.cta)::after {
    content: '';
    position: absolute;
    left: 0; bottom: -4px;
    width: 0; height: 1px;
    background: var(--copper);
    transition: width 0.3s ease;
  }
  .nav-links a:not(.cta):hover::after { width: 100%; }
  .cta {
    background: var(--ink);
    color: var(--cream) !important;
    padding: 12px 22px;
    border-radius: 999px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .cta:hover {
    background: var(--copper);
    transform: translateY(-1px);
  }
  .cta::after { display: none !important; }
  .menu-toggle { display: none; }

  /* ─────────── HERO ─────────── */
  .hero {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--copper-deep);
    margin-bottom: 32px;
  }
  .eyebrow::before {
    content: '';
    width: 32px; height: 1px;
    background: var(--copper);
  }
  h1 {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: clamp(48px, 7vw, 96px);
    line-height: 0.95;
    letter-spacing: -0.025em;
    margin-bottom: 32px;
    color: var(--ink);
  }
  h1 em {
    font-style: italic;
    font-weight: 300;
    color: var(--copper);
  }
  .hero-lead {
    font-size: 19px;
    line-height: 1.5;
    color: var(--ink-soft);
    max-width: 520px;
    margin-bottom: 40px;
  }
  .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
  }
  .btn-primary, .btn-secondary {
    padding: 16px 32px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .btn-primary {
    background: var(--ink);
    color: var(--cream);
  }
  .btn-primary:hover {
    background: var(--copper);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px -8px rgba(184, 100, 46, 0.5);
  }
  .btn-secondary {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--ink);
  }
  .btn-secondary:hover {
    background: var(--ink);
    color: var(--cream);
  }
  .arrow {
    transition: transform 0.3s;
  }
  .btn-primary:hover .arrow,
  .btn-secondary:hover .arrow {
    transform: translateX(4px);
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid var(--rule);
    max-width: 600px;
  }
  .stat-num {
    font-family: 'Fraunces', serif;
    font-size: 40px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1;
    letter-spacing: -0.02em;
  }
  .stat-label {
    font-size: 12px;
    color: var(--ink-soft);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 8px;
  }

  /* Hero Visual */
  .hero-visual {
    position: relative;
    aspect-ratio: 4/5;
    max-width: 480px;
    justify-self: end;
    width: 100%;
  }
  .hero-card {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #2C4E5F 0%, #0E2030 100%);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow);
  }
  .hero-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 30% 20%, rgba(184, 100, 46, 0.35) 0%, transparent 40%),
      radial-gradient(circle at 70% 80%, rgba(74, 93, 58, 0.3) 0%, transparent 50%);
  }
  .house-illustration {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  .badge-floating {
    position: absolute;
    background: var(--cream);
    border-radius: 4px;
    padding: 16px 20px;
    box-shadow: 0 20px 50px -15px rgba(14, 32, 48, 0.4);
    display: flex;
    align-items: center;
    gap: 14px;
    animation: float 6s ease-in-out infinite;
  }
  .badge-1 {
    top: 8%;
    left: -40px;
    animation-delay: 0s;
  }
  .badge-2 {
    bottom: 18%;
    right: -50px;
    animation-delay: 2s;
  }
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
  }
  .badge-icon {
    width: 36px; height: 36px;
    background: var(--paper-warm);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--copper);
  }
  .badge-text { font-size: 13px; }
  .badge-text strong {
    display: block;
    font-family: 'Fraunces', serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--ink);
  }
  .badge-text span {
    color: var(--ink-soft);
    font-size: 11px;
    letter-spacing: 0.04em;
  }
  .hero-tag {
    position: absolute;
    bottom: 32px;
    left: 32px;
    color: var(--cream);
    z-index: 2;
  }
  .hero-tag-label {
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 8px;
  }
  .hero-tag-value {
    font-family: 'Fraunces', serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
  }

  /* ─────────── MARQUEE ─────────── */
  .marquee {
    background: var(--ink);
    color: var(--cream);
    padding: 24px 0;
    overflow: hidden;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }
  .marquee-track {
    display: flex;
    gap: 60px;
    animation: scroll 35s linear infinite;
    white-space: nowrap;
  }
  .marquee-item {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 400;
    font-style: italic;
    display: flex;
    align-items: center;
    gap: 60px;
  }
  .marquee-item::after {
    content: '✦';
    color: var(--copper);
    font-style: normal;
  }
  @keyframes scroll {
    to { transform: translateX(-50%); }
  }

  /* ─────────── SECTION HEADERS ─────────── */
  section { position: relative; }
  .section-header {
    margin-bottom: 80px;
    max-width: 800px;
  }
  .section-header h2 {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-top: 24px;
  }
  .section-header h2 em {
    font-style: italic;
    color: var(--copper);
    font-weight: 300;
  }

  /* ─────────── VALUE / WHY ─────────── */
  .why {
    padding: 140px 0;
    background: var(--cream);
    position: relative;
  }
  .why::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(var(--rule) 1px, transparent 1px),
      linear-gradient(90deg, var(--rule) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.3;
    pointer-events: none;
  }
  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--rule);
    border: 1px solid var(--rule);
    position: relative;
    z-index: 1;
  }
  .why-card {
    background: var(--cream);
    padding: 48px 36px;
    transition: all 0.4s;
    position: relative;
  }
  .why-card:hover {
    background: var(--paper-warm);
  }
  .why-num {
    font-family: 'Fraunces', serif;
    font-size: 14px;
    color: var(--copper);
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    display: block;
  }
  .why-card h3 {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 28px;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
  }
  .why-card p {
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.65;
  }
  .why-icon {
    width: 48px; height: 48px;
    margin-bottom: 32px;
    color: var(--copper);
  }

  /* ─────────── SERVICES ─────────── */
  .services {
    padding: 160px 0;
    background: var(--paper);
  }
  .services-list {
    display: flex;
    flex-direction: column;
  }
  .service-row {
    display: grid;
    grid-template-columns: 80px 1fr 2fr auto;
    gap: 40px;
    align-items: center;
    padding: 36px 0;
    border-top: 1px solid var(--rule);
    transition: all 0.4s;
    cursor: pointer;
  }
  .service-row:last-child { border-bottom: 1px solid var(--rule); }
  .service-row:hover {
    padding-left: 24px;
    padding-right: 24px;
    background: var(--cream);
  }
  .service-num {
    font-family: 'Fraunces', serif;
    font-size: 14px;
    color: var(--copper);
    letter-spacing: 0.08em;
  }
  .service-title {
    font-family: 'Fraunces', serif;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: -0.01em;
  }
  .service-desc {
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.5;
  }
  .service-arrow {
    width: 44px; height: 44px;
    border: 1px solid var(--rule);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: var(--ink);
  }
  .service-row:hover .service-arrow {
    background: var(--copper);
    border-color: var(--copper);
    color: var(--cream);
    transform: rotate(-45deg);
  }

  /* ─────────── HOW IT WORKS ─────────── */
  .process {
    padding: 160px 0;
    background: var(--ink);
    color: var(--cream);
    position: relative;
    overflow: hidden;
  }
  .process::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 20% 30%, rgba(184, 100, 46, 0.15) 0%, transparent 40%),
      radial-gradient(circle at 80% 70%, rgba(74, 93, 58, 0.12) 0%, transparent 40%);
  }
  .process .container { position: relative; z-index: 1; }
  .process .section-header h2 { color: var(--cream); }
  .process .eyebrow { color: var(--copper); }
  .process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 80px;
  }
  .step {
    position: relative;
    padding-top: 48px;
  }
  .step-num {
    font-family: 'Fraunces', serif;
    font-size: 64px;
    font-weight: 300;
    line-height: 1;
    color: var(--copper);
    margin-bottom: 24px;
    display: block;
  }
  .step h4 {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
  }
  .step p {
    color: rgba(245, 240, 230, 0.7);
    font-size: 14px;
    line-height: 1.6;
  }
  .step::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 32px; height: 1px;
    background: var(--copper);
  }

  /* ─────────── AREAS ─────────── */
  .areas {
    padding: 160px 0;
    background: var(--paper-warm);
    position: relative;
  }
  .areas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .areas-list {
    list-style: none;
    margin-top: 40px;
  }
  .areas-list li {
    padding: 24px 0;
    border-top: 1px solid var(--rule);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Fraunces', serif;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: -0.01em;
    transition: color 0.3s;
    cursor: default;
  }
  .areas-list li:last-child { border-bottom: 1px solid var(--rule); }
  .areas-list li:hover {
    color: var(--copper);
    font-style: italic;
  }
  .areas-list li span {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-style: normal;
    color: var(--ink-soft);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
  }
  .map-card {
    background: var(--ink);
    border-radius: 4px;
    padding: 48px;
    color: var(--cream);
    aspect-ratio: 4/5;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
  }
  .map-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
  }
  .map-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }
  .map-label {
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    opacity: 0.7;
  }
  .map-headline {
    font-family: 'Fraunces', serif;
    font-size: 44px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.02em;
  }
  .map-headline em {
    font-style: italic;
    color: var(--copper);
  }

  /* ─────────── TESTIMONIAL ─────────── */
  .testimonial {
    padding: 160px 0;
    background: var(--cream);
  }
  .quote-block {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
  }
  .quote-mark {
    font-family: 'Fraunces', serif;
    font-size: 180px;
    line-height: 0.7;
    color: var(--copper);
    margin-bottom: -20px;
    font-style: italic;
  }
  .quote-text {
    font-family: 'Fraunces', serif;
    font-weight: 300;
    font-size: clamp(28px, 3.5vw, 44px);
    line-height: 1.25;
    letter-spacing: -0.015em;
    margin-bottom: 40px;
  }
  .quote-text em { color: var(--copper); }
  .quote-author {
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ink-soft);
  }
  .quote-author strong {
    display: block;
    color: var(--ink);
    font-family: 'Fraunces', serif;
    font-size: 16px;
    letter-spacing: 0.02em;
    text-transform: none;
    margin-bottom: 4px;
    font-weight: 500;
  }

  /* ─────────── CTA ─────────── */
  .final-cta {
    padding: 140px 0;
    background: var(--copper);
    color: var(--cream);
    position: relative;
    overflow: hidden;
  }
  .final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 80% 20%, rgba(143, 74, 31, 0.6) 0%, transparent 50%);
  }
  .cta-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  .cta-grid h2 {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: clamp(40px, 5.5vw, 72px);
    line-height: 1;
    letter-spacing: -0.025em;
  }
  .cta-grid h2 em {
    font-style: italic;
    color: var(--cream);
    opacity: 0.7;
  }
  .cta-form {
    background: var(--cream);
    padding: 40px;
    border-radius: 4px;
    color: var(--ink);
    box-shadow: 0 30px 60px -20px rgba(0,0,0,0.3);
  }
  .cta-form h4 {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    margin-bottom: 24px;
    font-weight: 500;
  }
  .form-row {
    margin-bottom: 16px;
  }
  .form-row label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 8px;
    font-weight: 500;
  }
  .form-row input, .form-row select {
    width: 100%;
    padding: 14px 0;
    border: none;
    border-bottom: 1px solid var(--rule);
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--ink);
    outline: none;
    transition: border-color 0.3s;
  }
  .form-row input:focus, .form-row select:focus {
    border-bottom-color: var(--copper);
  }
  .form-submit {
    background: var(--ink);
    color: var(--cream);
    border: none;
    padding: 16px 28px;
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    margin-top: 24px;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .form-submit:hover { background: var(--copper-deep); }

  /* ─────────── FOOTER ─────────── */
  footer {
    background: var(--ink);
    color: var(--cream);
    padding: 100px 0 32px;
    position: relative;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
  }
  .footer-brand h3 {
    font-family: 'Fraunces', serif;
    font-size: 36px;
    font-weight: 400;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
  }
  .footer-brand h3 em {
    font-style: italic;
    color: var(--copper);
  }
  .footer-brand p {
    color: rgba(245, 240, 230, 0.65);
    font-size: 14px;
    max-width: 360px;
    line-height: 1.6;
  }
  .footer-col h5 {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--copper);
    margin-bottom: 24px;
    font-weight: 500;
  }
  .footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .footer-col a {
    color: var(--cream);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.75;
    transition: all 0.3s;
  }
  .footer-col a:hover {
    opacity: 1;
    color: var(--copper);
  }
  .footer-bottom {
    border-top: 1px solid rgba(245, 240, 230, 0.15);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(245, 240, 230, 0.5);
    letter-spacing: 0.04em;
  }

  /* ─────────── RESPONSIVE ─────────── */
  @media (max-width: 980px) {
    .hero-grid, .areas-grid, .cta-grid { grid-template-columns: 1fr; gap: 60px; }
    .hero-visual { max-width: 100%; justify-self: center; }
    .why-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; }
    .menu-toggle {
      display: flex;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
    }
    .menu-toggle span {
      width: 24px; height: 1.5px;
      background: var(--ink);
    }
    .service-row {
      grid-template-columns: 1fr;
      gap: 8px;
    }
    .service-arrow { display: none; }
    .badge-1 { left: 0; }
    .badge-2 { right: 0; }
  }
  @media (max-width: 600px) {
    .container { padding: 0 20px; }
    nav { padding: 16px 20px; }
    .hero { padding: 130px 0 60px; }
    .hero-stats { grid-template-columns: 1fr; gap: 16px; }
    .process-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 12px; }
    .areas-list li { font-size: 24px; }
  }

  /* Reveal on scroll */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s ease, transform 0.9s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: none;
  }

  /* ─────── INNER PAGE STYLES ─────── */
  .nav-links a.active { color: var(--copper); }
  .nav-links a.active::after { width: 100%; background: var(--copper); }

  .page-hero {
    padding: 180px 0 100px;
    background: var(--cream);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--rule);
  }
  .page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(var(--rule) 1px, transparent 1px),
      linear-gradient(90deg, var(--rule) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.25;
    pointer-events: none;
  }
  .page-hero-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 80px;
    align-items: end;
    position: relative;
    z-index: 1;
  }
  .page-hero h1 {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: clamp(48px, 7vw, 88px);
    line-height: 0.98;
    letter-spacing: -0.025em;
    color: var(--ink);
  }
  .page-hero h1 em {
    font-style: italic;
    font-weight: 300;
    color: var(--copper);
  }
  .page-hero-lead {
    font-size: 18px;
    line-height: 1.55;
    color: var(--ink-soft);
    max-width: 440px;
  }
  .breadcrumb {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 32px;
    display: flex;
    gap: 12px;
    align-items: center;
  }
  .breadcrumb a {
    color: var(--ink-soft);
    text-decoration: none;
    transition: color 0.3s;
  }
  .breadcrumb a:hover { color: var(--copper); }
  .breadcrumb span { color: var(--copper); }

  /* FAQ Accordion */
  .faq-wrapper {
    max-width: 920px;
    margin: 0 auto;
  }
  .faq-item {
    border-top: 1px solid var(--rule);
    overflow: hidden;
  }
  .faq-item:last-child { border-bottom: 1px solid var(--rule); }
  .faq-q {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 32px 0;
    text-align: left;
    font-family: 'Fraunces', serif;
    font-size: clamp(20px, 2.4vw, 26px);
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--ink);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
    transition: color 0.3s;
  }
  .faq-q:hover { color: var(--copper); }
  .faq-icon {
    flex-shrink: 0;
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 1px solid var(--rule);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    margin-top: 4px;
  }
  .faq-icon::before {
    content: '+';
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: var(--ink);
    transition: transform 0.3s;
  }
  .faq-item.open .faq-icon {
    background: var(--copper);
    border-color: var(--copper);
  }
  .faq-item.open .faq-icon::before {
    transform: rotate(45deg);
    color: var(--cream);
  }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  .faq-a-inner {
    padding: 0 0 32px 0;
    font-size: 16px;
    line-height: 1.7;
    color: var(--ink-soft);
    max-width: 720px;
  }
  .faq-a-inner strong { color: var(--ink); font-weight: 600; }
  .faq-a-inner ul { margin-top: 12px; padding-left: 20px; }
  .faq-a-inner li { margin-bottom: 8px; }
  .faq-item.open .faq-a {
    max-height: 1500px;
  }

  /* FAQ category nav */
  .faq-cats {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 60px;
  }
  .faq-cat {
    padding: 10px 20px;
    border: 1px solid var(--rule);
    border-radius: 999px;
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--ink);
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.02em;
  }
  .faq-cat:hover { background: var(--cream); }
  .faq-cat.active {
    background: var(--ink);
    color: var(--cream);
    border-color: var(--ink);
  }

  /* Service detail blocks */
  .service-block {
    padding: 100px 0;
    border-bottom: 1px solid var(--rule);
  }
  .service-block:last-child { border-bottom: none; }
  .service-block-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
  }
  .service-block-num {
    font-family: 'Fraunces', serif;
    font-size: 14px;
    color: var(--copper);
    letter-spacing: 0.15em;
    margin-bottom: 24px;
  }
  .service-block h2 {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: clamp(32px, 4.5vw, 52px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 0;
  }
  .service-block h2 em {
    font-style: italic;
    color: var(--copper);
  }
  .service-block p.lead {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-style: italic;
    color: var(--ink-soft);
    line-height: 1.4;
    margin-bottom: 32px;
    font-weight: 300;
  }
  .service-block ul.checks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .service-block ul.checks li {
    padding-left: 36px;
    position: relative;
    color: var(--ink-soft);
    font-size: 16px;
    line-height: 1.5;
  }
  .service-block ul.checks li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 20px;
    height: 1px;
    background: var(--copper);
  }
  .service-block ul.checks li strong {
    color: var(--ink);
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
  }

  /* Property cards */
  .vacancy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .vacancy-card {
    background: var(--cream);
    border: 1px solid var(--rule);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.4s;
    display: flex;
    flex-direction: column;
    cursor: pointer;
  }
  .vacancy-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px -25px rgba(14, 32, 48, 0.25);
    border-color: var(--ink);
  }
  .vacancy-img {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #2C4E5F 0%, #0E2030 100%);
    position: relative;
    overflow: hidden;
  }
  .vacancy-img svg { position: absolute; inset: 0; width: 100%; height: 100%; }
  .vacancy-status {
    position: absolute;
    top: 16px; left: 16px;
    background: var(--cream);
    color: var(--ink);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
    z-index: 2;
  }
  .vacancy-status.coming { background: var(--copper); color: var(--cream); }
  .vacancy-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .vacancy-price {
    font-family: 'Fraunces', serif;
    font-size: 30px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
  }
  .vacancy-price span {
    font-size: 14px;
    color: var(--ink-soft);
    font-weight: 400;
  }
  .vacancy-addr {
    font-family: 'Fraunces', serif;
    font-size: 19px;
    font-style: italic;
    color: var(--ink-soft);
    margin-bottom: 20px;
  }
  .vacancy-specs {
    display: flex;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--rule);
    margin-top: auto;
    font-size: 13px;
    color: var(--ink-soft);
  }
  .vacancy-specs span {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .vacancy-specs strong {
    color: var(--ink);
    font-weight: 600;
  }

  .empty-state {
    background: var(--cream);
    border: 1px dashed var(--rule);
    padding: 80px 40px;
    text-align: center;
    border-radius: 4px;
  }
  .empty-state h3 {
    font-family: 'Fraunces', serif;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
  }
  .empty-state p {
    color: var(--ink-soft);
    max-width: 480px;
    margin: 0 auto 32px;
    font-size: 16px;
    line-height: 1.6;
  }

  /* Renter resources strip */
  .renter-strip {
    padding: 100px 0;
    background: var(--ink);
    color: var(--cream);
  }
  .renter-strip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(245,240,230,0.15);
    border: 1px solid rgba(245,240,230,0.15);
  }
  .renter-strip-card {
    background: var(--ink);
    padding: 48px 40px;
    transition: background 0.3s;
  }
  .renter-strip-card:hover {
    background: var(--ink-soft);
  }
  .renter-strip-card .icon {
    width: 40px; height: 40px;
    color: var(--copper);
    margin-bottom: 24px;
  }
  .renter-strip-card h4 {
    font-family: 'Fraunces', serif;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
  }
  .renter-strip-card p {
    color: rgba(245,240,230,0.7);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
  }
  .renter-strip-card a {
    color: var(--copper);
    font-size: 13px;
    letter-spacing: 0.05em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
  }
  .renter-strip-card a:hover { gap: 14px; }

  /* Big form */
  .big-form {
    padding: 100px 0;
    background: var(--paper);
  }
  .big-form-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .big-form-side h3 {
    font-family: 'Fraunces', serif;
    font-size: 36px;
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
  }
  .big-form-side h3 em { font-style: italic; color: var(--copper); }
  .big-form-side p {
    color: var(--ink-soft);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
  }
  .big-form-side ul {
    list-style: none;
    border-top: 1px solid var(--rule);
  }
  .big-form-side ul li {
    padding: 18px 0;
    border-bottom: 1px solid var(--rule);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    font-size: 15px;
    color: var(--ink);
  }
  .big-form-side ul li svg {
    flex-shrink: 0;
    color: var(--copper);
    margin-top: 3px;
  }
  .big-form-card {
    background: var(--cream);
    border: 1px solid var(--rule);
    padding: 48px;
    border-radius: 4px;
  }
  .big-form-card h4 {
    font-family: 'Fraunces', serif;
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 32px;
    letter-spacing: -0.01em;
  }
  .form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .form-grid-2 .form-row,
  .big-form-card .form-row { margin-bottom: 24px; }
  .form-row textarea {
    width: 100%;
    padding: 14px 0;
    border: none;
    border-bottom: 1px solid var(--rule);
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--ink);
    outline: none;
    transition: border-color 0.3s;
    resize: vertical;
    min-height: 80px;
  }
  .form-row textarea:focus { border-bottom-color: var(--copper); }

  /* Military bases */
  .bases-section {
    padding: 120px 0;
    background: var(--cream);
  }
  .bases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--rule);
    border: 1px solid var(--rule);
  }
  .base-card {
    background: var(--cream);
    padding: 32px;
    transition: all 0.3s;
  }
  .base-card:hover { background: var(--paper-warm); }
  .base-card a {
    color: var(--ink);
    text-decoration: none;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
  }
  .base-card .name {
    font-family: 'Fraunces', serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.01em;
  }
  .base-card .arrow-out {
    color: var(--copper);
    flex-shrink: 0;
    transition: transform 0.3s;
  }
  .base-card:hover .arrow-out {
    transform: translate(4px, -4px);
  }

  /* Resource links list */
  .resource-links {
    padding: 100px 0;
    background: var(--paper);
  }
  .resource-list {
    list-style: none;
    max-width: 900px;
    margin: 0 auto;
  }
  .resource-list li {
    border-top: 1px solid var(--rule);
  }
  .resource-list li:last-child { border-bottom: 1px solid var(--rule); }
  .resource-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    text-decoration: none;
    color: var(--ink);
    font-family: 'Fraunces', serif;
    font-size: 26px;
    font-weight: 400;
    letter-spacing: -0.01em;
    transition: all 0.3s;
  }
  .resource-list a:hover {
    color: var(--copper);
    padding-left: 16px;
  }
  .resource-list a span.tag {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ink-soft);
    font-weight: 500;
  }

  /* Promise grid */
  .promise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--rule);
    border: 1px solid var(--rule);
    margin-top: 60px;
  }
  .promise-card {
    background: var(--paper);
    padding: 48px;
  }
  .promise-card h4 {
    font-family: 'Fraunces', serif;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
  }
  .promise-card p {
    color: var(--ink-soft);
    line-height: 1.6;
    font-size: 15px;
  }

  @media (max-width: 980px) {
    .page-hero-grid, .service-block-grid, .big-form-grid { grid-template-columns: 1fr; gap: 40px; }
    .vacancy-grid, .renter-strip-grid, .bases-grid, .promise-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 600px) {
    .page-hero { padding: 130px 0 60px; }
    .form-grid-2 { grid-template-columns: 1fr; gap: 0; }
    .big-form-card { padding: 32px 24px; }
    .resource-list a { font-size: 18px; padding: 22px 0; }
  }


  /* ── MOBILE NAV (injected) ── */
  .mobile-nav {
    position: fixed;
    inset: 0;
    background: var(--paper);
    z-index: 49;
    padding: 100px 32px 32px;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
  }
  .mobile-nav.open { transform: translateY(0); }
  .mobile-nav a {
    font-family: 'Fraunces', serif;
    font-size: 32px;
    font-weight: 400;
    color: var(--ink);
    text-decoration: none;
    padding: 18px 0;
    border-bottom: 1px solid var(--rule);
    transition: color 0.3s, padding 0.3s;
    letter-spacing: -0.01em;
  }
  .mobile-nav a:hover,
  .mobile-nav a.active {
    color: var(--copper);
    font-style: italic;
    padding-left: 8px;
  }
  .mobile-nav a:last-child {
    border-bottom: none;
    margin-top: 16px;
    align-self: flex-start;
    background: var(--ink);
    color: var(--cream);
    padding: 16px 28px;
    border-radius: 999px;
    font-size: 18px;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.03em;
  }
  .mobile-nav a:last-child:hover {
    background: var(--copper);
    color: var(--cream);
    font-style: normal;
    padding-left: 28px;
  }

  /* Hamburger button (fixed) */
  @media (max-width: 980px) {
    .menu-toggle {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      width: 44px;
      height: 44px;
      padding: 0;
      background: none;
      border: none;
      cursor: pointer;
      position: relative;
      z-index: 51;
    }
    .menu-toggle span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--ink);
      margin: 0;
      border-radius: 2px;
      transform-origin: center;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }
    .menu-toggle.open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }
    .menu-toggle.open span:nth-child(2) {
      opacity: 0;
    }
    .menu-toggle.open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }
  }

  /* Lock body scroll while menu is open */
  body.menu-open {
    overflow: hidden;
  }