
  :root{
    --bg: #f6f6f3;
    --ink: #191b1a;
    --line: #d8d8d3;
    --muted: #6e726f;
    --accent: #3e4a4d;
    --panel: #efefeb;
    --surface: #191b1a;
    --glass: rgba(246,246,243,0.8);
    --glass-border: rgba(216,216,211,0.7);
    --header-bg: rgba(246,246,243,0.88);
    --texture-line: rgba(25,27,26,0.08);
    --aura-1: rgba(62,74,77,0.14);
    --aura-2: rgba(25,27,26,0.08);
    --aura-3: rgba(62,74,77,0.10);
    --max: 1120px;
    color-scheme: light;
  }

  html[data-theme="dark"]{
    --bg: #17181a;
    --ink: #eeeeec;
    --line: #34363a;
    --muted: #9a9d9b;
    --accent: #7fa89e;
    --panel: #1f2123;
    --surface: #0f1011;
    --glass: rgba(23,24,26,0.72);
    --glass-border: rgba(255,255,255,0.08);
    --header-bg: rgba(23,24,26,0.82);
    --texture-line: rgba(255,255,255,0.06);
    --aura-1: rgba(127,168,158,0.16);
    --aura-2: rgba(255,255,255,0.05);
    --aura-3: rgba(127,168,158,0.1);
    color-scheme: dark;
  }

  *{ box-sizing: border-box; }
  html{ scroll-behavior: smooth; scroll-padding-top: 96px; scrollbar-width: thin; scrollbar-color: var(--line) var(--bg); }

  ::-webkit-scrollbar{ width: 10px; height: 10px; }
  ::-webkit-scrollbar-track{ background: var(--bg); }
  ::-webkit-scrollbar-thumb{
    background: var(--line);
    border-radius: 999px;
    border: 2px solid var(--bg);
  }
  ::-webkit-scrollbar-thumb:hover{ background: var(--accent); }

  body{
    margin:0;
    background-color: var(--bg);
    background-image:
      repeating-linear-gradient(180deg, transparent 0 108px, var(--texture-line) 108px 109.5px, transparent 109.5px 216px);
    background-attachment: fixed;
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
  }

  .wrap{
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 32px;
  }

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

  ::selection{
    background: var(--accent);
    color: #ffffff;
  }

  .aura{
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
  }
  .aura-blob{
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    will-change: transform;
  }
  .aura-1{
    width: 46vw;
    height: 46vw;
    top: -12vw;
    left: -10vw;
    background: var(--aura-1);
    animation: aura-drift-1 34s ease-in-out infinite alternate;
  }
  .aura-2{
    width: 38vw;
    height: 38vw;
    bottom: -10vw;
    right: -8vw;
    background: var(--aura-2);
    animation: aura-drift-2 40s ease-in-out infinite alternate;
  }
  .aura-3{
    width: 30vw;
    height: 30vw;
    top: 40%;
    left: 55%;
    background: var(--aura-3);
    animation: aura-drift-3 46s ease-in-out infinite alternate;
  }
  @keyframes aura-drift-1{
    from{ transform: translate(0, 0) scale(1); }
    to{ transform: translate(6vw, 8vw) scale(1.12); }
  }
  @keyframes aura-drift-2{
    from{ transform: translate(0, 0) scale(1); }
    to{ transform: translate(-7vw, -5vw) scale(1.08); }
  }
  @keyframes aura-drift-3{
    from{ transform: translate(0, 0) scale(1); }
    to{ transform: translate(-5vw, 6vw) scale(0.94); }
  }
  @media (prefers-reduced-motion: reduce){
    .aura-blob{ animation: none !important; }
  }

  #particle-canvas{
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
  }
  #scroll-progress{
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: var(--accent);
    z-index: 50;
    transition: width .1s linear;
  }
  header, .hero, section, footer, .mobile-call-bar{
    position: relative;
    z-index: 2;
  }

  /* ---------- Header ---------- */
  header{
    position: sticky;
    top: 0;
    z-index: 20;
    background: var(--header-bg);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 0 0 rgba(10,11,12,0);
    transition: box-shadow .35s ease, border-color .35s ease;
  }
  header.scrolled{
    box-shadow: 0 12px 28px rgba(10,11,12,0.14);
    border-bottom-color: transparent;
  }
  .nav{
    display:flex;
    align-items:center;
    justify-content: space-between;
    height: 76px;
  }
  .nav-brand{
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .nav-logo{
    height: 40px;
    width: auto;
    display: block;
  }
  .nav-mark{
    font-family: 'Archivo Expanded', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  .nav-links{
    display:flex;
    gap: 36px;
    font-size: 14px;
    color: var(--muted);
  }
  .nav-links a{ transition: color .2s ease; }
  .nav-links a:hover{ color: var(--ink); }
  .nav-links a.active{
    color: var(--ink);
    position: relative;
  }
  .nav-links a.active::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 2px;
    background: var(--accent);
  }
  .nav-cta{
    font-size: 13px;
    font-weight: 500;
    padding: 10px 20px;
    border: 1px solid var(--ink);
    border-radius: 2px;
    letter-spacing: 0.02em;
    transition: background .2s ease, color .2s ease;
    white-space: nowrap;
  }
  .nav-cta:hover{ background: var(--surface); color: #ffffff; }

  .nav-actions{
    display: flex;
    align-items: center;
    position: relative;
  }

  #theme-toggle{
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--ink);
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 12px;
    transition: border-color .2s ease, transform .2s ease;
  }
  #theme-toggle:hover{
    border-color: var(--ink);
    transform: rotate(-12deg);
  }

  /* ---------- Dropdown menu ---------- */
  #menu-toggle{
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 12px;
    padding: 9px 16px;
    border: 1px solid var(--line);
    border-radius: 2px;
    background: transparent;
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: border-color .2s ease;
  }
  #menu-toggle:hover{ border-color: var(--ink); }
  #menu-toggle .menu-icon{
    display: flex;
    flex-direction: column;
    gap: 3px;
    width: 16px;
  }
  #menu-toggle .menu-icon span{
    display: block;
    height: 1.5px;
    background: currentColor;
    transition: transform .25s ease, opacity .25s ease;
  }
  #menu-toggle.open .menu-icon span:nth-child(1){ transform: translateY(4.5px) rotate(45deg); }
  #menu-toggle.open .menu-icon span:nth-child(2){ opacity: 0; }
  #menu-toggle.open .menu-icon span:nth-child(3){ transform: translateY(-4.5px) rotate(-45deg); }

  #nav-dropdown{
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 220px;
    background: var(--glass);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(10,11,12,0.18);
    padding: 10px;
    z-index: 40;
  }
  #nav-dropdown.open{ display: block; }
  #nav-dropdown a{
    display: block;
    padding: 12px 14px;
    border-radius: 6px;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--ink);
    transition: background .15s ease;
  }
  #nav-dropdown a:hover{ background: rgba(62,74,77,0.08); }
  #nav-dropdown a.active{ color: var(--accent); }

  @media (max-width: 720px){
    .nav-links{ display:none; }
  }

  /* ---------- Hero ---------- */
  .hero{
    padding: 108px 0 96px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .hero-watermark{
    position: absolute;
    top: 32%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(680px, 90vw);
    height: auto;
    opacity: 0.06;
    pointer-events: none;
    z-index: 0;
    user-select: none;
  }
  html[data-theme="dark"] .hero-watermark{
    filter: invert(1) brightness(1.4);
    opacity: 0.05;
  }
  .hero .wrap{
    position: relative;
    z-index: 1;
  }
  .eyebrow{
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #ffffff;
    background: var(--surface);
    padding: 6px 14px;
    border-radius: 2px;
    margin-bottom: 32px;
  }
  .wordmark{
    font-family: 'Archivo Expanded', sans-serif;
    font-weight: 700;
    line-height: 0.92;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    font-size: clamp(40px, 9vw, 104px);
  }
  .wordmark .top,
  .wordmark .bottom{
    display: block;
    opacity: 0;
    transform: translateY(16px);
    animation: rise .65s cubic-bezier(.2,.8,.2,1) forwards;
  }
  .wordmark .top{ animation-delay: .05s; }
  .wordmark .bottom{ animation-delay: .2s; color: var(--accent); }

  .horizon-line{
    position: relative;
    max-width: 640px;
    margin: 30px auto 34px;
    height: 1px;
    background: var(--line);
  }
  .horizon-line::before{
    content:"";
    position:absolute;
    left:0; top:0;
    height:1px;
    width: 0%;
    background: var(--ink);
    animation: draw 1.1s .5s cubic-bezier(.2,.8,.2,1) forwards;
  }
  .horizon-line::after{
    content:"";
    position:absolute;
    top: -4px;
    left: 50%;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0;
    animation: fadein .6s 1.3s ease forwards;
  }
  @keyframes draw{ to{ width: 100%; } }
  @keyframes fadein{ to{ opacity: 1; } }
  @keyframes rise{ to{ opacity: 1; transform: translateY(0); } }

  .motto{
    display: inline-block;
    font-family: 'Archivo', sans-serif;
    font-style: italic;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.03em;
    color: var(--accent);
    margin: 0 auto 18px;
  }
  .hero-sub{
    max-width: 460px;
    margin: 0 auto 40px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
  }
  .hero-actions{
    display:flex;
    gap: 14px;
    justify-content:center;
    flex-wrap: wrap;
  }
  .trust-badge-row{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
  }
  .trust-badge{
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin: 0;
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--muted);
    border: 1px solid var(--line);
    background: var(--bg);
    padding: 8px 16px;
    border-radius: 2px;
    width: fit-content;
  }
  .trust-badge::before{
    content: "✓";
    color: var(--accent);
    font-weight: 700;
  }

  /* ---------- Rewards ---------- */
  .rewards-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 20px;
  }
  .reward-card{
    background: var(--glass);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(25,27,26,0.06);
    padding: 30px 24px;
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  }
  @media (hover: hover) and (pointer: fine){
    .reward-card:hover{
      transform: translateY(-4px);
      box-shadow: 0 20px 40px rgba(25,27,26,0.1);
      border-color: rgba(62,74,77,0.35);
    }
  }
  .reward-icon{
    width: 44px;
    height: 44px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    color: var(--accent);
    font-size: 18px;
    font-weight: 700;
  }
  .reward-card h3{
    font-family: 'Archivo', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
  }
  .reward-card p{
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--muted);
    margin: 0;
  }
  .reward-card strong{
    color: var(--accent);
    font-weight: 700;
  }
  .discount-badge-row{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
  }
  .discount-badge{
    display: inline-block;
    margin-top: 0;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 7px 14px;
    border-radius: 999px;
  }
  .btn{
    display:inline-block;
    font-size: 14px;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: 2px;
    letter-spacing: 0.01em;
    transition: all .2s ease;
    border: 1px solid transparent;
  }
  .btn-primary{
    background: var(--surface);
    color: #ffffff;
    font-weight: 600;
  }
  .btn-primary:hover{ background: var(--accent); color: #ffffff; }
  .btn-ghost{
    border-color: var(--line);
    color: var(--ink);
    background: var(--bg);
  }
  .btn-ghost:hover{ border-color: var(--ink); }

  /* ---------- Section shared ---------- */
  section{ padding: 96px 0; }
  .section-line{
    border-top: none;
    position: relative;
  }
  .section-line::after{
    content: "";
    position: absolute;
    top: 0;
    left: -3%;
    width: 106%;
    height: 1px;
    background: var(--line);
    transform: rotate(-0.6deg);
    transform-origin: top left;
    pointer-events: none;
  }
  .section-line::before{
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 140px;
    background: linear-gradient(to bottom, var(--texture-line) 0%, transparent 100%);
    opacity: 0.7;
    pointer-events: none;
    z-index: -1;
  }
  .kicker{
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #ffffff;
    background: var(--surface);
    padding: 6px 12px;
    border-radius: 2px;
    margin-bottom: 18px;
  }
  h2{
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
    font-size: clamp(28px, 4vw, 38px);
    letter-spacing: -0.01em;
    margin: 0 0 48px;
    max-width: 560px;
    color: var(--ink);
  }

  /* ---------- Services ---------- */
  .services{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .service,
  .step,
  .faq-item,
  .contact-info,
  .contact-form-panel{
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  }
  @media (hover: hover) and (pointer: fine){
    .service:hover,
    .step:hover,
    .faq-item:hover,
    .contact-info:hover,
    .contact-form-panel:hover{
      transform: translateY(-4px);
      box-shadow: 0 20px 40px rgba(25,27,26,0.1);
      border-color: rgba(62,74,77,0.35);
    }
  }

  .service{
    background: var(--glass);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(25,27,26,0.06);
    padding: 44px 40px;
  }
  .service h3{
    font-family: 'Archivo', sans-serif;
    font-size: 21px;
    font-weight: 600;
    margin: 0 0 12px;
  }
  .service p{
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
    margin: 0 0 24px;
  }
  .service ul{
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
  }
  .service li{
    padding: 11px 0;
    border-top: 1px solid var(--line);
    color: var(--ink);
  }
  .service li:first-child{ border-top: none; }

  @media (max-width: 720px){
    .services{ grid-template-columns: 1fr; }
  }

  /* ---------- FAQ ---------- */
  .faq-list{
    max-width: 720px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .faq-item{
    background: var(--glass);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    box-shadow: 0 10px 26px rgba(25,27,26,0.05);
    padding: 0 24px;
  }
  .faq-item summary{
    list-style: none;
    cursor: pointer;
    padding: 20px 0;
    font-size: 16px;
    font-weight: 500;
    display:flex;
    justify-content: space-between;
    align-items:center;
    gap: 20px;
    background: transparent;
  }
  .faq-item summary::-webkit-details-marker{ display:none; }
  .faq-item summary::after{
    content: "+";
    font-size: 20px;
    font-weight: 400;
    color: var(--muted);
    flex-shrink: 0;
    transition: transform .2s ease;
  }
  .faq-item[open] summary::after{
    content: "–";
  }
  .faq-item p{
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 0 24px;
    background: transparent;
  }
  .included-list{
    list-style: none;
    margin: 0 0 26px;
    padding: 0;
    max-width: 560px;
  }
  .included-list li{
    position: relative;
    padding: 8px 0 8px 26px;
    font-size: 14.5px;
    line-height: 1.5;
    color: var(--ink);
  }
  .included-list li::before{
    content: "✓";
    position: absolute;
    left: 0;
    top: 8px;
    color: var(--accent);
    font-weight: 700;
  }

  /* ---------- Photos ---------- */
  .photo-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 8px;
  }
  .photo-grid.two-up{
    grid-template-columns: repeat(2, 1fr);
  }
  .photo-frame{
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 12px 30px rgba(25,27,26,0.08);
    background: var(--panel);
  }
  .photo-frame img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.92) contrast(1.02);
    transition: transform .5s ease, filter .5s ease;
  }
  @media (hover: hover) and (pointer: fine){
    .photo-frame:hover img{
      transform: scale(1.04);
      filter: saturate(1) contrast(1.03);
    }
  }
  .photo-frame figcaption{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px 14px;
    font-size: 12.5px;
    letter-spacing: 0.02em;
    color: #ffffff;
    background: linear-gradient(to top, rgba(10,11,12,0.65), transparent);
  }
  @media (max-width: 720px){
    .photo-grid, .photo-grid.two-up{ grid-template-columns: 1fr 1fr; gap: 12px; }
  }
  @media (max-width: 480px){
    .photo-grid, .photo-grid.two-up{ grid-template-columns: 1fr; }
  }

  /* ---------- Before & after ---------- */
  .ba-list{
    display: flex;
    flex-direction: column;
    gap: 48px;
  }
  .ba-title{
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    margin: 0 0 14px;
  }
  .ba-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .ba-frame{ margin: 0; }
  .ba-tag{
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 11px;
    border-radius: 999px;
    color: #ffffff;
  }
  .ba-before{ background: rgba(25,27,26,0.72); }
  .ba-after{ background: var(--accent); }
  @media (max-width: 560px){
    .ba-grid{ grid-template-columns: 1fr 1fr; gap: 10px; }
    .ba-list{ gap: 36px; }
  }

  /* ---------- Contact ---------- */
  /* ---------- Asymmetric editorial layout (About page) ---------- */
  .editorial{
    padding: 40px 0 60px;
    position: relative;
  }
  .editorial-grid{
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 0;
    align-items: center;
  }
  .editorial-img{ position: relative; z-index: 1; }
  .editorial-img img{
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
    border-radius: 4px;
    box-shadow: 0 30px 60px rgba(25,27,26,0.18);
  }
  .editorial-text{
    position: relative;
    z-index: 2;
    margin-left: -80px;
    background: var(--bg);
    padding: 56px 60px 56px 96px;
  }
  .editorial-kicker{
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
  }
  .editorial-title{
    font-family: 'Archivo Expanded', sans-serif;
    font-weight: 700;
    font-size: clamp(30px, 3.4vw, 42px);
    line-height: 1.08;
    letter-spacing: -0.01em;
    margin: 0 0 20px;
    color: var(--ink);
  }
  .editorial-text p{
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
    max-width: 420px;
    margin: 0 0 16px;
  }
  .editorial-num{
    position: absolute;
    top: -40px;
    left: 40px;
    font-family: 'Archivo Expanded', sans-serif;
    font-weight: 700;
    font-size: 120px;
    color: var(--line);
    z-index: 0;
    line-height: 1;
    user-select: none;
  }
  .editorial-alt .editorial-grid{ grid-template-columns: 0.9fr 1.1fr; }
  .editorial-alt .editorial-img{ order: 2; }
  .editorial-alt .editorial-text{
    order: 1;
    margin-left: 0;
    margin-right: -80px;
    padding: 56px 96px 56px 60px;
    text-align: right;
  }
  .editorial-alt .editorial-text p{ margin-left: auto; }
  .editorial-alt .editorial-num{ left: auto; right: 40px; }
  @media (max-width: 860px){
    .editorial-grid{ grid-template-columns: 1fr !important; }
    .editorial-img{ order: 1 !important; }
    .editorial-text{
      order: 2 !important;
      margin: -40px 0 0 0 !important;
      padding: 40px 28px !important;
      text-align: left !important;
    }
    .editorial-text p{ margin-left: 0 !important; }
    .editorial-num{ display: none; }
  }

  .contact-grid{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .contact-info,
  .contact-form-panel{
    background: var(--glass);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(25,27,26,0.06);
    padding: 36px 32px;
  }
  .contact-info p{
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
    max-width: 380px;
    margin: 0 0 28px;
  }
  .info-row{
    display:flex;
    justify-content: space-between;
    padding: 16px 0;
    border-top: 1px solid var(--line);
    font-size: 14.5px;
  }
  .info-row:first-child{ border-top: none; }
  .info-row:last-child{ border-bottom: none; }
  .info-row span:first-child{ color: var(--muted); }

  form{ display:flex; flex-direction: column; gap: 18px; }
  .field{ display:flex; flex-direction: column; gap: 8px; }
  .field-row{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  @media (max-width: 480px){
    .field-row{ grid-template-columns: 1fr; }
  }
  label{ font-size: 13px; color: var(--muted); }

  .form-section{
    padding-top: 22px;
    margin-top: 4px;
    border-top: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .form-section:first-of-type{
    padding-top: 0;
    margin-top: 0;
    border-top: none;
  }
  .form-section-title{
    font-family: 'Archivo', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    margin: 0;
  }

  .extras-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  @media (max-width: 480px){
    .extras-grid{ grid-template-columns: 1fr; }
  }
  .extra-option{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border: 1px solid var(--line);
    border-radius: 6px;
    font-size: 13.5px;
    color: var(--ink);
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease;
  }
  .extra-option:has(input:checked){
    border-color: var(--accent);
    background: rgba(62,74,77,0.06);
  }
  .extra-option input{
    accent-color: var(--accent);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }

  .pill-group{
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .radio-pill{
    display: block;
    padding: 12px 16px;
    border: 1px solid var(--line);
    border-radius: 6px;
    font-size: 14px;
    color: var(--ink);
    cursor: pointer;
    text-align: center;
    transition: border-color .2s ease, background .2s ease, color .2s ease;
  }
  .radio-pill input{
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }
  .radio-pill:has(input:checked){
    border-color: var(--surface);
    background: var(--surface);
    color: #ffffff;
  }
  input, select, textarea{
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    padding: 12px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    outline: none;
    transition: border-color .2s ease;
  }
  input:focus, select:focus, textarea:focus{ border-color: var(--ink); }
  textarea{ resize: vertical; min-height: 64px; }
  .submit-btn{
    align-self: flex-start;
    margin-top: 8px;
    background: var(--surface);
    color: #ffffff;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 2px;
    cursor: pointer;
    transition: background .2s ease;
  }
  .submit-btn:hover{ background: var(--accent); color: #ffffff; }
  .submit-btn:disabled{ opacity: 0.7; cursor: default; }

  .success-anim{
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
  }
  .success-anim.show{
    display: flex;
    animation: pop-in .4s ease;
  }
  .success-circle{
    stroke: var(--accent);
    stroke-width: 2;
    stroke-dasharray: 151;
    stroke-dashoffset: 151;
    animation: draw-circle .5s ease forwards;
  }
  .success-check{
    stroke: var(--accent);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 36;
    stroke-dashoffset: 36;
    animation: draw-check .3s .45s ease forwards;
  }
  @keyframes draw-circle{ to{ stroke-dashoffset: 0; } }
  @keyframes draw-check{ to{ stroke-dashoffset: 0; } }
  @keyframes pop-in{
    from{ opacity: 0; transform: scale(0.7); }
    to{ opacity: 1; transform: scale(1); }
  }
  @media (prefers-reduced-motion: reduce){
    .success-circle, .success-check{ animation: none; stroke-dashoffset: 0; }
    .success-anim.show{ animation: none; }
  }

  @media (max-width: 720px){
    .contact-grid{ grid-template-columns: 1fr; gap: 44px; }
  }

  /* ---------- Footer ---------- */
  footer{
    border-top: 1px solid var(--line);
    padding: 56px 0 32px;
  }
  .footer-nav{
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 40px;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--line);
  }
  .footer-nav-title{
    font-family: 'Archivo', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 16px;
  }
  .footer-nav-text{
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--muted);
    max-width: 320px;
    margin: 0;
  }
  .footer-nav-col{
    display: flex;
    flex-direction: column;
  }
  .footer-nav-col a{
    font-size: 13.5px;
    color: var(--muted);
    padding: 6px 0;
    transition: color .2s ease;
  }
  .footer-nav-col a:hover{ color: var(--ink); }
  @media (max-width: 640px){
    .footer-nav{ grid-template-columns: 1fr; gap: 28px; }
  }

  /* ---------- Mobile call bar ---------- */
  .mobile-call-bar{
    display: none;
  }
  @media (max-width: 720px){
    .hero-actions a[href^="tel:"]{ display: none; }
    .mobile-call-bar{
      display: flex;
      align-items: center;
      justify-content: center;
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 30;
      background: var(--surface);
      color: #ffffff;
      font-size: 15px;
      font-weight: 600;
      letter-spacing: 0.01em;
      padding: 16px 0 calc(16px + env(safe-area-inset-bottom));
      text-align: center;
    }
    body{ padding-bottom: 60px; }
  }

  /* ---------- Back to top ---------- */
  #back-to-top{
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 25;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--surface);
    color: #ffffff;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease, background .2s ease;
  }
  #back-to-top.visible{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  #back-to-top:hover{ background: var(--accent); }
  @media (max-width: 720px){
    #back-to-top{
      right: 16px;
      bottom: calc(76px + env(safe-area-inset-bottom));
      width: 40px;
      height: 40px;
      font-size: 16px;
    }
  }
  .footer-row{
    display:flex;
    justify-content: space-between;
    align-items:center;
    font-size: 13px;
    color: var(--muted);
    flex-wrap: wrap;
    gap: 12px;
  }
  .footer-legal-links{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
  }
  .footer-legal-sep{ color: var(--line); }
  .legal-link{
    color: var(--muted);
    transition: color .2s ease;
  }
  .legal-link:hover{ color: var(--ink); }

  /* ---------- Legal modal ---------- */
  .legal-modal{
    display: none;
    position: fixed;
    inset: 0;
    z-index: 60;
    align-items: center;
    justify-content: center;
    padding: 24px;
  }
  .legal-modal.open{ display: flex; }
  .legal-modal-backdrop{
    position: absolute;
    inset: 0;
    background: rgba(10,11,12,0.55);
    backdrop-filter: blur(3px);
  }
  .legal-modal-panel{
    position: relative;
    background: var(--bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    box-shadow: 0 24px 60px rgba(10,11,12,0.25);
    max-width: 640px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 32px 28px;
  }
  .photo-modal-panel{
    max-width: 880px;
  }
  .photo-modal-body .ba-list{ margin-top: 4px; }
  .photo-empty{
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    padding: 12px 0 4px;
  }
  .photo-links{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .photo-link-card{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: var(--glass);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(25,27,26,0.06);
    padding: 26px 26px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    text-align: left;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  }
  .photo-link-arrow{
    color: var(--accent);
    font-size: 18px;
    flex-shrink: 0;
    transition: transform .2s ease;
  }
  @media (hover: hover) and (pointer: fine){
    .photo-link-card:hover{
      transform: translateY(-4px);
      box-shadow: 0 20px 40px rgba(25,27,26,0.1);
      border-color: rgba(62,74,77,0.35);
    }
    .photo-link-card:hover .photo-link-arrow{ transform: translateX(4px); }
  }
  @media (max-width: 560px){
    .photo-links{ grid-template-columns: 1fr; }
  }
  .legal-modal-panel h3{
    font-family: 'Archivo', sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 18px;
    color: var(--ink);
    padding-right: 28px;
  }
  .legal-modal-body p{
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 16px;
  }
  .legal-modal-body strong{ color: var(--ink); font-weight: 600; }
  .legal-modal-close{
    position: absolute;
    top: 18px;
    right: 18px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--ink);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
  }
  .legal-modal-close:hover{ border-color: var(--ink); }
  .footer-mark{
    font-family: 'Archivo Expanded', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--ink);
  }

  @media (prefers-reduced-motion: reduce){
    .wordmark .top, .wordmark .bottom, .horizon-line::before, .horizon-line::after{
      animation: none !important;
      opacity: 1 !important;
      width: 100% !important;
      transform: none !important;
    }
  }

  /* scroll reveal */
  /* ---------- Keep background texture off of text ---------- */
  h2,
  .hero-sub,
  .motto,
  .nav-mark, .nav-links a,
  footer{
    background: var(--bg);
  }

  /* ---------- Page hero (subpage banners) ---------- */
  .page-hero{
    position: relative;
    background: var(--bg);
    padding: 64px 0 52px;
    text-align: center;
    overflow: hidden;
    border-bottom: none;
  }
  .page-hero::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: -3%;
    width: 106%;
    height: 1px;
    background: var(--line);
    transform: rotate(-0.6deg);
    transform-origin: bottom left;
    pointer-events: none;
  }
  .page-hero-watermark{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(420px, 70vw);
    height: auto;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
    user-select: none;
  }
  html[data-theme="dark"] .page-hero-watermark{
    filter: invert(1) brightness(1.4);
    opacity: 0.045;
  }
  .page-hero .wrap{ position: relative; z-index: 1; }
  .page-hero-eyebrow{
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #ffffff;
    background: var(--surface);
    padding: 6px 14px;
    border-radius: 2px;
    margin-bottom: 22px;
  }
  .page-hero-title{
    font-family: 'Archivo Expanded', sans-serif;
    font-weight: 700;
    letter-spacing: -0.01em;
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.08;
    color: var(--ink);
    margin: 0 0 16px;
  }
  .page-hero-sub{
    max-width: 480px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
  }

  /* ---------- Page transition ---------- */
  body{ animation: page-fade-in .5s ease; }
  @keyframes page-fade-in{
    from{ opacity: 0; }
    to{ opacity: 1; }
  }
  @media (prefers-reduced-motion: reduce){
    body{ animation: none; }
  }

  /* ---------- Drag-to-compare slider ---------- */
  .compare-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  @media (max-width: 720px){
    .compare-grid{ grid-template-columns: 1fr; }
  }
  .compare-block{ text-align: center; }
  .compare{
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(25,27,26,0.14);
    border: 1px solid var(--glass-border);
    user-select: none;
    cursor: ew-resize;
    touch-action: pan-y;
  }
  .compare img{
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
  }
  .compare .compare-after{
    clip-path: inset(0 0 0 50%);
  }
  .compare-divider{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: #ffffff;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
    transform: translateX(-1px);
    pointer-events: none;
  }
  .compare-handle{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--surface);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    box-shadow: 0 6px 16px rgba(25,27,26,0.3);
    pointer-events: none;
    font-size: 14px;
  }
  .compare-tag{
    position: absolute;
    top: 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 11px;
    border-radius: 999px;
    color: #fff;
    pointer-events: none;
  }
  .compare-tag.tag-before{ left: 14px; background: rgba(25,27,26,0.72); }
  .compare-tag.tag-after{ right: 14px; background: var(--accent); }
  .compare-caption{
    margin-top: 16px;
    font-size: 14.5px;
    color: var(--muted);
  }
  .compare-caption strong{ color: var(--ink); font-family: 'Archivo', sans-serif; }

  .reveal{
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .7s ease, transform .7s ease;
  }
  .reveal.in{ opacity: 1; transform: translateY(0); }

  .card-reveal{
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .6s ease, transform .6s ease;
  }
  .card-reveal.in{ opacity: 1; transform: translateY(0); }

  @media (prefers-reduced-motion: reduce){
    .card-reveal{
      opacity: 1 !important;
      transform: none !important;
      transition: none !important;
    }
  }
