  :root {
    --bg: #0c0a08;
    --bg-alt: #14100a;
    --panel: #1d1710;
    --hairline: rgba(201,162,74,0.22);
    --gold: #c9a24a;
    --gold-bright: #e6c777;
    --spark: #f6e2a8;
    --text: #ece5d6;
    --text-muted: #a89a80;
    --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-body: 'Jost', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-script: 'Parisienne', 'Cormorant Garamond', cursive;
    box-sizing: border-box;
    padding-top: env(safe-area-inset-top, 0px);
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }
  *, *::before, *::after { box-sizing: inherit; }
  html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(70px + env(safe-area-inset-top, 0px));
  }
  body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; }
  [hidden] { display: none !important; }

  .visually-hidden {
    position: absolute;
    width: 1px; height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
    outline: 2px solid var(--gold-bright);
    outline-offset: 3px;
  }

  .wrap {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 28px;
  }

  /* ---------- Header ---------- */
  header.site-header {
    z-index: 50;
    background: rgba(12,10,8,0.82);
    border-bottom: 1px solid var(--hairline);
    padding-top: env(safe-area-inset-top, 0px);
  }
  .header-row {
    max-width: 1080px;
    margin: 0 auto;
  }
  .brand-logo {
    display: block;
    text-decoration: none;
  }
  .brand-logo img {
    display: block;
    width: 100%;
    height: auto;
    mix-blend-mode: screen;
  }
  .btn-primary {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--bg);
    background: linear-gradient(180deg, var(--gold-bright), var(--gold));
    padding: 11px 22px;
    border-radius: 3px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: filter 0.2s ease, transform 0.2s ease;
  }
  .btn-primary:hover { filter: brightness(1.08); }
  @media (min-width: 681px) {
    .btn-primary:hover { transform: translateY(-1px); }
  }

  /* ---------- Hero ---------- */
  .hero {
    position: relative;
    min-height: 100svh;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background-image:
      linear-gradient(180deg, rgba(8,7,5,0.35) 0%, rgba(8,7,5,0.55) 60%, rgba(8,7,5,0.92) 100%),
      url("images/hands.jpg");
    background-size: cover;
    background-position: center 30%;
    text-align: center;
    padding: 28px 24px 64px;
  }
  .hero-content {
    max-width: 640px;
    animation: rise 1.1s ease both;
  }
  .hero-buttons {
    width: 100%;
    max-width: 860px;
    animation: rise 1.1s ease 0.15s both;
  }
  @media (prefers-reduced-motion: reduce) {
    .hero-content, .hero-buttons { animation: none; }
  }
  @keyframes rise {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-tagline {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 500;
    font-size: clamp(1.35rem, 3.4vw, 1.9rem);
    color: var(--text);
    margin: 0 0 14px;
    line-height: 1.35;
  }
  .hero-sub {
    font-size: 0.98rem;
    color: var(--text-muted);
    margin: 0 0 34px;
    letter-spacing: 0.02em;
  }

  /* ---------- Explore buttons (Core Values / Services / Portfolio / Quote) ---------- */
  .explore-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  @media (max-width: 620px) {
    .explore-grid { grid-template-columns: 1fr; }
  }
  .page-btn {
    display: block;
    text-align: center;
    text-decoration: none;
    padding: 20px 18px;
    border-radius: 6px;
    background: linear-gradient(160deg, rgba(36,31,24,0.4), rgba(23,19,16,0.4));
    backdrop-filter: blur(7px) saturate(1.1);
    -webkit-backdrop-filter: blur(7px) saturate(1.1);
    border: 1px solid rgba(201,162,74,0.35);
    box-shadow: 0 0 0 1px rgba(0,0,0,0.3), 0 8px 26px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
    cursor: pointer;
    transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  }
  .page-btn:hover, .page-btn:focus-visible {
    box-shadow: 0 0 0 1px rgba(0,0,0,0.3), 0 0 50px rgba(201,162,74,0.28), inset 0 1px 0 rgba(255,255,255,0.07);
    border-color: rgba(201,162,74,0.6);
    transform: translateY(-2px);
  }
  .page-btn-label {
    display: block;
    font-family: var(--font-script);
    font-weight: 400;
    font-size: 1.7rem;
    letter-spacing: 0.01em;
    color: var(--gold-bright);
    margin: 0 0 4px;
  }
  .page-btn-sub {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
  }
  .page-btn-primary {
    background: linear-gradient(160deg, rgba(230,199,119,0.94), rgba(201,162,74,0.94));
    border-color: rgba(230,199,119,0.7);
  }
  .page-btn-primary:hover, .page-btn-primary:focus-visible {
    border-color: rgba(230,199,119,0.9);
    box-shadow: 0 0 0 1px rgba(0,0,0,0.3), 0 0 50px rgba(230,199,119,0.4), inset 0 1px 0 rgba(255,255,255,0.15);
  }
  .page-btn-primary .page-btn-label { color: var(--bg); }
  .page-btn-primary .page-btn-sub { color: rgba(12,10,8,0.72); }

  /* ---------- Back link / subpages ---------- */
  .back-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.9rem;
    color: var(--gold-bright);
    text-decoration: none;
    margin-bottom: 38px;
    border-bottom: 1px solid transparent;
  }
  .back-link:hover { color: var(--spark); border-color: var(--spark); }
  .subpage {
    min-height: 100svh;
    min-height: 100vh;
    padding: 96px 0 100px;
    background-image:
      linear-gradient(180deg, rgba(8,7,5,0.9) 0%, rgba(8,7,5,0.94) 100%),
      url("images/hands.jpg");
    background-size: cover;
    background-position: center 20%;
  }

  /* ---------- Sections generic ---------- */
  section { padding: 96px 0; }
  .section-alt { background: var(--bg-alt); }
  .section-head {
    max-width: 620px;
    margin: 0 0 44px;
  }
  .section-head h1, .section-head h2 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(2rem, 4vw, 2.6rem);
    color: var(--gold-bright);
    margin: 0 0 14px;
  }
  .section-head p {
    color: var(--text-muted);
    margin: 0;
    max-width: 56ch;
  }

  /* ---------- About ---------- */
  .about-grid {
    display: grid;
    gap: 40px;
  }
  .about-intro p {
    max-width: 62ch;
    color: var(--text);
    margin: 0 0 18px;
  }
  .veteran-line {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 26px;
    font-size: 0.92rem;
    color: var(--gold-bright);
  }
  .veteran-line svg { width: 15px; height: 15px; flex-shrink: 0; }

  /* ---------- Values ---------- */
  .values-list {
    border-top: 1px solid var(--hairline);
  }
  .value-row {
    display: grid;
    grid-template-columns: minmax(140px, 220px) 1fr;
    gap: 24px;
    padding: 26px 0;
    border-bottom: 1px solid var(--hairline);
  }
  .value-row h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-style: italic;
    font-size: 1.4rem;
    color: var(--gold-bright);
    margin: 0;
  }
  .value-row p {
    margin: 0;
    color: var(--text-muted);
    max-width: 54ch;
  }
  @media (max-width: 620px) {
    .value-row { grid-template-columns: 1fr; gap: 6px; }
  }

  /* ---------- Portfolio ---------- */
  .work-list {
    border-top: 1px solid var(--hairline);
  }
  .work-row {
    display: grid;
    grid-template-columns: 1.1fr 1.9fr;
    gap: 30px;
    padding: 34px 0;
    border-bottom: 1px solid var(--hairline);
  }
  .work-title-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .work-row h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.7rem;
    color: var(--text);
    margin: 0;
  }
  .status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.82rem;
    color: var(--text-muted);
  }
  .status::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--text-muted);
    flex-shrink: 0;
  }
  .status.is-live::before { background: var(--gold-bright); box-shadow: 0 0 6px rgba(230,199,119,0.7); }
  .status.is-live { color: var(--gold-bright); }
  .status.is-dev::before { background: transparent; border: 1.5px solid var(--text-muted); width: 6px; height: 6px; }
  .status.is-fun::before { background: transparent; border: 1.5px dashed var(--text-muted); width: 6px; height: 6px; }
  .work-body p {
    margin: 0 0 14px;
    color: var(--text-muted);
  }
  .work-link {
    font-size: 0.94rem;
    color: var(--gold-bright);
    text-decoration: none;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 1px;
    transition: color 0.2s ease, border-color 0.2s ease;
  }
  .work-link:hover { color: var(--spark); border-color: var(--spark); }
  @media (max-width: 680px) {
    .work-row { grid-template-columns: 1fr; gap: 12px; }
  }

  /* ---------- Quote / Contact ---------- */
  .quote-inner {
    display: grid;
    gap: 48px;
  }
  form.quote-form {
    display: grid;
    gap: 18px;
    max-width: 560px;
  }
  .field { display: grid; gap: 7px; }
  .field label {
    font-size: 0.88rem;
    color: var(--text-muted);
  }
  .field input, .field textarea {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text);
    background: var(--panel);
    border: 1px solid var(--hairline);
    border-radius: 3px;
    padding: 12px 14px;
    width: 100%;
  }
  .field input::placeholder, .field textarea::placeholder { color: #6b6151; }
  .field textarea { min-height: 120px; resize: vertical; }
  .hidden-field { position: absolute; left: -9999px; }
  .submit-row { margin-top: 6px; }
  .form-note {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 4px;
  }
  .quote-alt-contact {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-top: 14px;
  }
  .quote-alt-contact a {
    color: var(--gold-bright);
    text-decoration: none;
    border-bottom: 1px solid var(--gold);
  }
  .quote-alt-contact a:hover { color: var(--spark); }

  /* ---------- Services / Packages ---------- */
  .packages-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-top: 8px;
  }
  @media (max-width: 820px) {
    .packages-grid { grid-template-columns: 1fr; }
  }
  .package-card {
    border: 1px solid var(--hairline);
    border-radius: 6px;
    padding: 28px 24px;
    background: var(--bg-alt);
  }
  .package-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--gold-bright);
    margin-bottom: 4px;
  }
  .package-price {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.6rem;
    color: var(--text);
    margin-bottom: 10px;
  }
  .package-tagline {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0 0 18px;
    line-height: 1.5;
  }
  .package-features {
    list-style: none;
    display: grid;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text);
  }
  .package-features li {
    padding-left: 20px;
    position: relative;
    line-height: 1.4;
  }
  .package-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    background: var(--gold-bright);
    box-shadow: 0 0 6px rgba(230,199,119,0.6);
  }
  .packages-note {
    max-width: 720px;
    margin: 36px 0 0;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
  }
  .packages-cta {
    margin: 18px 0 0;
    font-size: 0.95rem;
  }
  .packages-cta a {
    color: var(--gold-bright);
    text-decoration: none;
    border-bottom: 1px solid var(--gold);
  }
  .packages-cta a:hover { color: var(--spark); }

  /* ---------- Footer ---------- */
  footer {
    padding: 46px 0 calc(46px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid var(--hairline);
    background: var(--bg-alt);
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
  }
  .footer-brand {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--gold-bright);
  }
  .footer-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
  }
  .footer-meta a { text-decoration: none; color: var(--text-muted); }
  .footer-meta a:hover { color: var(--gold-bright); }
