/* ============================================
     BYRON BAY — Oli Ayo
     Photography-first. White ground. Cinematic heroes.
     Inspired by Thurston Photo / Craig Parry.
     ============================================ */

  /* Display font — Manrope (free Google Font, geometric sans).
     Visually close cousin to Cera GR Bold from the book cover.
     Used on the hero title + subtitle for that "cover energy". */

  :root {
    --bg:        #FFFFFF;
    --ink:       #0E1419;          /* near-black for primary text */
    --ink-soft:  #3A434C;
    --ink-mute:  #7A828A;
    --rule:      #E5E7EA;
    --accent:    #1B4F6B;          /* deep ocean for hover states */
    --bar:       #0E1419;          /* utility bar + footer */
    --bar-text:  #F5F5F2;

    --sans:    'Inter',   -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
    --display: 'Manrope', 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;

    --gutter: clamp(1.5rem, 5vw, 5rem);
    --section: clamp(5rem, 10vw, 9rem);
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--sans);
    font-weight: 400;
    line-height: 1.55;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }
  img { max-width: 100%; display: block; }
  a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease, opacity 0.25s ease;
  }
  button { font-family: inherit; cursor: pointer; border: none; background: none; }

  /* ============================================
     LAYOUT
     ============================================ */
  .container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 var(--gutter);
  }
  .narrow {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 var(--gutter);
  }

  /* ============================================
     TYPOGRAPHY
     ============================================ */
  .eyebrow {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ink-mute);
  }
  .display {
    font-weight: 300;
    letter-spacing: 0.02em;
    line-height: 1.05;
  }
  .display-uppercase {
    font-weight: 300;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    line-height: 1.1;
  }

  /* ============================================
     UTILITY BAR
     ============================================ */
  .utility-bar {
    background: var(--bar);
    color: var(--bar-text);
    text-align: center;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.7rem 1rem;
    font-weight: 400;
  }

  /* ============================================
     NAV
     ============================================ */
  nav.site {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--rule);
  }
  nav.site .inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 1.1rem 0;
    gap: 1rem;
  }
  .brand {
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }
  nav.site .nav-links {
    display: flex;
    gap: 2.4rem;
    list-style: none;
    justify-content: center;
  }
  nav.site .nav-links a {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink);
    padding: 0.4rem 0;
    position: relative;
  }
  nav.site .nav-links a:hover { color: var(--accent); }
  nav.site .nav-utility {
    display: flex;
    justify-content: flex-end;
    gap: 1.2rem;
    align-items: center;
  }
  nav.site .nav-utility a {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }
  .icon-cart {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
  }
  @media (max-width: 880px) {
    nav.site .inner {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto;
      padding-left: 1.5rem;
      padding-right: 1.5rem;
      padding-bottom: 0;
      row-gap: 0;
    }
    nav.site .brand { grid-column: 1; grid-row: 1; }
    nav.site .nav-utility { grid-column: 2; grid-row: 1; }
    nav.site .nav-links {
      display: flex;
      grid-column: 1 / -1;
      grid-row: 2;
      justify-content: center;
      gap: 1.6rem;
      padding: 0.7rem 0 0.75rem;
      margin: 0.6rem -1.5rem 0;
      border-top: 1px solid var(--rule);
    }
    nav.site .nav-links a {
      font-size: 0.7rem;
      letter-spacing: 0.18em;
      padding: 0.2rem 0;
    }
  }

  /* ============================================
     HERO — full-bleed cinematic
     ============================================ */
  .hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    background: #0a1015;
  }
  .hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    z-index: 1;
  }
  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(14,20,25,0.25) 0%, rgba(14,20,25,0) 35%, rgba(14,20,25,0) 60%, rgba(14,20,25,0.65) 100%);
    z-index: 2;
  }
  .hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
    text-align: center;
    padding: 0 var(--gutter) clamp(4rem, 10vh, 9rem);
    width: 100%;
  }
  .hero-eyebrow {
    color: rgba(255,255,255,0.85);
    margin-bottom: 1.5rem;
    font-weight: 400;
  }
  .hero h1 {
    font-family: var(--display);
    font-size: clamp(3.2rem, 11vw, 8.5rem);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.55);     /* matches the book cover — translucent white that lets the photo read through */
    text-shadow: 0 2px 30px rgba(0,0,0,0.18);
  }
  .hero .sub {
    font-family: var(--display);
    font-size: clamp(0.95rem, 1.2vw, 1.15rem);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.95);
    font-weight: 700;
  }
  .hero .scroll-cue {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: rgba(255,255,255,0.7);
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
  }
  .scroll-line {
    width: 1px;
    height: 28px;
    background: rgba(255,255,255,0.5);
    animation: pulse 2.4s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50%      { opacity: 0.9; transform: scaleY(1); }
  }

  /* Mobile hero — shorter so the book is reachable faster, scroll cue
     hidden so it never overlaps the wrapped subtitle. */
  @media (max-width: 720px) {
    .hero {
      min-height: 68vh;
    }
    .hero-img {
      object-position: center 40%;
    }
    .hero h1 {
      font-size: clamp(2.6rem, 14vw, 4.2rem);
      margin-bottom: 1rem;
    }
    .hero .sub {
      font-size: 0.78rem;
      letter-spacing: 0.18em;
      line-height: 1.5;
    }
    .hero-content {
      padding-bottom: clamp(3rem, 8vh, 5rem);
    }
    .hero .scroll-cue {
      display: none;
    }
  }

  /* ============================================
     INTRO STATEMENT
     ============================================ */
  .intro {
    text-align: center;
    padding: var(--section) 0;
  }
  .intro-feature {
    max-width: 825px;
    margin: 0 auto clamp(3rem, 6vw, 5rem);
    padding: 0 var(--gutter);
  }
  .intro-feature .image-frame {
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: #f0f0ed;
  }
  .intro-feature img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .intro .eyebrow { margin-bottom: 2rem; }
  .intro h2 {
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-weight: 300;
    line-height: 1.45;
    color: var(--ink);
    max-width: 28ch;
    margin: 0 auto 2rem;
    letter-spacing: -0.005em;
  }
  .intro-lede {
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    line-height: 1.75;
    color: var(--ink-soft);
    max-width: 56ch;
    margin: 0 auto 1.25rem;
    font-weight: 400;
  }
  .intro-lede + .intro-lede { margin-bottom: 2.5rem; }
  .intro .meta-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--rule);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
  .meta-row > div { text-align: center; }
  .meta-row .label {
    font-size: 0.65rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-bottom: 0.5rem;
  }
  .meta-row .val {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: 0.04em;
  }

  /* ============================================
     GALLERY PREVIEW
     ============================================ */
  .gallery {
    padding: 0 0 var(--section);
  }
  .gallery-head {
    text-align: center;
    margin-bottom: 4rem;
  }
  .gallery-head .eyebrow { margin-bottom: 1.25rem; }
  .gallery-head h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 300;
    letter-spacing: -0.01em;
  }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1rem;
    padding: 0;
  }
  .photo {
    position: relative;
    overflow: hidden;
    background: #f0f0ed;
  }
  .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .photo:hover img { transform: scale(1.04); }
  .photo .caption {
    position: absolute;
    left: 1.25rem;
    bottom: 1.1rem;
    color: #fff;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 500;
    text-shadow: 0 1px 8px rgba(0,0,0,0.4);
    z-index: 2;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.35s ease, transform 0.35s ease;
  }
  .photo:hover .caption {
    opacity: 1;
    transform: translateY(0);
  }
  .photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.35) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 1;
  }
  .photo:hover::after { opacity: 1; }

  /* Grid spans — heights tuned so each row aligns flush */
  .g-1 { grid-column: span 7; aspect-ratio: 28 / 25; }
  .g-2 { grid-column: span 5; aspect-ratio: 4 / 5; }
  .g-3 { grid-column: span 4; aspect-ratio: 3 / 4; }
  .g-4 { grid-column: span 4; aspect-ratio: 3 / 4; }
  .g-5 { grid-column: span 4; aspect-ratio: 3 / 4; }
  .g-6 { grid-column: span 8; aspect-ratio: 16 / 10; }
  .g-7 { grid-column: span 4; aspect-ratio: 4 / 5; }

  @media (max-width: 880px) {
    .gallery-grid { gap: 0.5rem; padding: 0 0.5rem; }
    .g-1, .g-2, .g-3, .g-4, .g-5, .g-6, .g-7 {
      grid-column: span 12;
      aspect-ratio: 16 / 10;
    }
  }

  .gallery-foot {
    text-align: center;
    margin-top: 4rem;
  }

  /* ============================================
     BUTTONS
     ============================================ */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 1.1rem 2.2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid var(--ink);
    background: transparent;
    color: var(--ink);
  }
  .btn:hover {
    background: var(--ink);
    color: #fff;
  }
  .btn-dark {
    background: var(--ink);
    color: #fff;
  }
  .btn-dark:hover {
    background: var(--accent);
    border-color: var(--accent);
  }
  .btn-light {
    background: #fff;
    color: var(--ink);
    border-color: #fff;
  }
  .btn-light:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
  }
  .btn-link {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink);
    border-bottom: 1px solid var(--ink);
    padding-bottom: 0.4rem;
    transition: color 0.25s, border-color 0.25s;
  }
  .btn-link:hover {
    color: var(--accent);
    border-color: var(--accent);
  }

  /* ============================================
     ORDER SECTION (Thurston-style)
     ============================================ */
  .order {
    padding: var(--section) 0;
    background: #fafafa;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }
  .order .eyebrow-center {
    text-align: center;
    margin-bottom: 1.25rem;
  }
  .order h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    margin-bottom: 4rem;
    letter-spacing: -0.01em;
  }
  .order-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 6vw, 6rem);
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
  }
  @media (max-width: 880px) {
    .order-grid { grid-template-columns: 1fr; gap: 3rem; }
  }
  .order-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--warm);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(1.5rem, 4vw, 3rem);
  }
  .order-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    box-shadow: 0 18px 40px -16px rgba(14,20,25,0.28);
  }
  .order-info {
    padding: 1rem 0;
  }
  .order-info .product-eyebrow {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-bottom: 1rem;
  }
  .order-info h3 {
    font-size: clamp(1.6rem, 2.6vw, 2.1rem);
    font-weight: 300;
    margin-bottom: 0.6rem;
    letter-spacing: -0.005em;
  }
  .order-info .price {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--ink);
    margin: 1rem 0 1.5rem;
    letter-spacing: 0.02em;
  }
  .order-info p {
    color: var(--ink-soft);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 44ch;
  }
  .specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    margin-bottom: 2rem;
  }
  .specs .label {
    font-size: 0.65rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-bottom: 0.3rem;
  }
  .specs .val {
    font-size: 0.92rem;
    color: var(--ink);
    font-weight: 500;
  }
  .order-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
  }
  .order-actions .btn { padding: 1.15rem 2.4rem; }
  .order-actions .btn[disabled],
  .order-actions .btn[aria-busy="true"] {
    opacity: 0.55;
    cursor: progress;
  }

  /* ============================================
     SHIPPING LINE — auto-detected zone + change link
     ============================================ */
  .ship-line {
    font-size: 0.92rem;
    color: var(--ink-soft);
    margin: 1.5rem 0 0.5rem;
    letter-spacing: 0.01em;
    line-height: 1.5;
  }
  .total-line {
    font-size: 1rem;
    color: var(--ink);
    margin: 0 0 1.5rem;
    letter-spacing: 0.01em;
    line-height: 1.5;
    padding-top: 0.75rem;
    border-top: 1px solid var(--rule);
  }
  .total-line strong {
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.01em;
  }
  .ship-line strong {
    color: var(--ink);
    font-weight: 500;
  }
  .ship-dot {
    margin: 0 0.5rem;
    color: var(--ink-mute);
  }
  .ship-change {
    background: none;
    border: none;
    padding: 0;
    margin-left: 0.75rem;
    color: var(--accent);
    font-family: inherit;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 0.2em;
    text-decoration-thickness: 1px;
    transition: color 0.2s ease;
  }
  .ship-change:hover { color: var(--ink); }
  .ship-note {
    font-size: 0.78rem;
    color: var(--ink-mute);
    margin-top: 1rem;
    letter-spacing: 0.02em;
    line-height: 1.55;
    max-width: 22rem;
  }
  .qty-note {
    font-size: 0.72rem;
    color: var(--ink-mute);
    margin-top: 0.65rem;
    margin-bottom: 0;
    letter-spacing: 0.04em;
    font-style: italic;
    opacity: 0.75;
    text-align: center;
  }

  /* Mobile — centre the buying area so the Add to Cart button, notes,
     price, and shipping line all read as one balanced column. */
  @media (max-width: 880px) {
    .order-info {
      text-align: center;
    }
    .order-info p {
      margin-left: auto;
      margin-right: auto;
    }
    .specs {
      grid-template-columns: 1fr 1fr;
      text-align: center;
    }
    .ship-line {
      text-align: center;
    }
    .ship-note {
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }
    .order-actions {
      justify-content: center;
    }
  }

  /* ============================================
     REGION PICKER MODAL — coastal, centered, polished
     Explicit positioning overrides Safari/Chrome user-agent defaults
     so the dialog is reliably centered with a proper backdrop.
     ============================================ */
  dialog.region-picker {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    padding: 0;
    border: none;
    background: #FFFFFF;
    color: var(--ink);
    width: min(420px, calc(100vw - 3rem));
    max-height: calc(100vh - 4rem);
    overflow: visible;
    border-radius: 3px;
    box-shadow:
      0 30px 80px rgba(14, 20, 25, 0.22),
      0 8px 24px rgba(14, 20, 25, 0.08);
    z-index: 1000;
  }
  dialog.region-picker::backdrop {
    background: rgba(14, 20, 25, 0.55);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
  }
  dialog.region-picker[open] {
    animation: regionPickerIn 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  @keyframes regionPickerIn {
    from { opacity: 0; transform: translate(-50%, -46%); }
    to   { opacity: 1; transform: translate(-50%, -50%); }
  }
  .region-picker-inner {
    padding: 2.25rem 2rem 1.5rem;
  }
  .region-picker h3 {
    font-family: var(--display, inherit);
    font-weight: 400;
    font-size: 1.4rem;
    letter-spacing: 0.005em;
    line-height: 1.25;
    margin: 0 0 0.4rem;
    color: var(--ink);
  }
  .region-picker-sub {
    font-size: 0.85rem;
    color: var(--ink-mute);
    margin: 0 0 1.6rem;
    line-height: 1.55;
    letter-spacing: 0.015em;
  }
  .region-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.4rem;
  }
  .region-list li + li {
    margin-top: 0.55rem;
  }
  .region-list button {
    width: 100%;
    background: transparent;
    border: 1px solid var(--rule, #E5E7EA);
    padding: 1rem 1.2rem;
    font-family: inherit;
    font-size: 0.92rem;
    color: var(--ink);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    letter-spacing: 0.01em;
    border-radius: 2px;
    transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
  }
  .region-list button:hover,
  .region-list button:focus-visible {
    border-color: var(--ink);
    background: var(--ink);
    color: #FFFFFF;
    outline: none;
  }
  .region-list button > span:first-child {
    font-weight: 500;
  }
  .region-list button > span:last-child {
    font-variant-numeric: tabular-nums;
    color: var(--ink-mute);
    font-size: 0.88rem;
    margin-left: 1rem;
  }
  .region-list button:hover > span:last-child,
  .region-list button:focus-visible > span:last-child {
    color: rgba(255, 255, 255, 0.78);
  }
  .region-close {
    display: block;
    width: 100%;
    background: none;
    border: none;
    padding: 0.65rem 0;
    margin-top: 0.25rem;
    color: var(--ink-mute);
    font-family: inherit;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    transition: color 0.2s ease;
  }
  .region-close:hover { color: var(--ink); }
  @media (max-width: 480px) {
    dialog.region-picker {
      width: calc(100vw - 2rem);
      border-radius: 2px;
    }
    .region-picker-inner {
      padding: 1.75rem 1.5rem 1.25rem;
    }
  }

  /* ============================================
     QUOTE BREAK — full-bleed photo with text
     ============================================ */
  .quote-break {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #0a1015;
  }
  .quote-break img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
    z-index: 1;
  }
  .quote-break::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.45) 100%);
    z-index: 2;
  }
  .quote-break .quote-content {
    position: relative;
    z-index: 3;
    color: #fff;
    text-align: center;
    padding: 5rem var(--gutter);
    max-width: 800px;
  }
  .quote-break .eyebrow {
    color: rgba(255,255,255,0.75);
    margin-bottom: 1.75rem;
  }
  .quote-break p {
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: -0.005em;
    text-shadow: 0 2px 24px rgba(0,0,0,0.4);
  }

  /* ============================================
     ABOUT SECTION
     ============================================ */
  .about {
    padding: var(--section) 0;
  }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 6vw, 6rem);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  @media (max-width: 880px) {
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-text { text-align: center; }
    .about-text h2,
    .about-text p {
      margin-left: auto;
      margin-right: auto;
    }
  }
  .about-image {
    aspect-ratio: 4 / 5;
    overflow: hidden;
  }
  .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .about-text .eyebrow { margin-bottom: 1.5rem; }
  .about-text h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
    max-width: 18ch;
  }
  .about-text p {
    color: var(--ink-soft);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1.25rem;
    max-width: 50ch;
  }
  .about-text .btn-link { margin-top: 1.25rem; display: inline-block; }

  /* ============================================
     FOOTER
     ============================================ */
  footer {
    background: var(--bar);
    color: var(--bar-text);
    padding: 5rem 0 2rem;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
  }
  @media (max-width: 720px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  }
  footer .brand-block .brand {
    color: var(--bar-text);
    margin-bottom: 1.25rem;
    display: inline-block;
  }
  footer .brand-block p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(245,245,242,0.65);
    max-width: 32ch;
  }
  footer h4 {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(245,245,242,0.55);
    margin-bottom: 1.25rem;
  }
  footer ul { list-style: none; }
  footer ul li { margin-bottom: 0.6rem; }
  footer ul a {
    font-size: 0.88rem;
    color: rgba(245,245,242,0.85);
  }
  footer ul a:hover { color: #fff; }
  .footer-bottom {
    border-top: 1px solid rgba(245,245,242,0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.78rem;
    color: rgba(245,245,242,0.5);
    letter-spacing: 0.08em;
  }

  /* ============================================
     ENTRY ANIMATIONS
     ============================================ */
  @keyframes fade-rise {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .hero-eyebrow, .hero h1, .hero .sub {
    animation: fade-rise 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) both;
  }
  .hero h1 { animation-delay: 0.15s; }
  .hero .sub { animation-delay: 0.3s; }

  /* ============================================
     DESIGN PREVIEW BAR (remove on real site)
     ============================================ */
  .preview-note {
    background: #1B4F6B;
    color: #fff;
    text-align: center;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.6rem 1rem;
    font-weight: 500;
  }
