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

    :root {
      --bg: #f6f2e7;
      --dark: #263940;
      --orange: #d86f36;
      --accent: #e8dead;
      --fh: 'Fraunces', Georgia, serif;
      --fb: 'Fraunces', Georgia, serif;
    }

    html {
      font-size: clamp(14px, 1.5vw + 9.5px, 16px);
      scroll-behavior: smooth;
      scroll-padding-top: 80px;
      overflow-x: hidden;
    }

    body {
      background: var(--bg);
      color: var(--dark);
      font-family: var(--fb);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    img, video, svg {
      max-width: 100%;
      height: auto;
      display: block;
    }

    h1, h2, h3, p {
      overflow-wrap: break-word;
    }

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

    h1, h2, h3 { font-family: var(--fh); font-weight: 900; }

    /* ─── NAV ─── */
    nav {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      padding: 1rem 3rem;
      background: var(--bg);
      position: sticky;
      top: 0;
      z-index: 100;
      border-bottom: 1px solid rgba(38,57,64,0.1);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      justify-self: start;
    }

    .nav-logo img {
      height: 56px;
      width: auto;
      display: block;
    }

    .nav-links {
      display: flex;
      gap: 1.5rem;
      list-style: none;
      font-size: 0.9rem;
      font-weight: 400;
      color: #263940;
      justify-self: center;
    }

    .nav-links a { color: #263940; }

    .nav-links a:hover { color: var(--orange); }

    .nav-right {
      justify-self: end;
      display: flex;
      align-items: center;
      gap: 1.25rem;
    }

    .nav-login {
      font-size: 0.9rem;
      font-weight: 400;
      color: var(--dark);
      text-decoration: underline;
      text-underline-offset: 2px;
      white-space: nowrap;
    }

    .nav-login:hover { color: var(--orange); }

    .nav-cta {
      background: var(--orange);
      color: #fff;
      font-size: 0.9rem;
      font-weight: 400;
      padding: 0.5rem 1.25rem;
      border-radius: 100px;
      transition: opacity 0.2s;
    }

    .nav-cta:hover { opacity: 0.85; }

    .nav-burger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 40px;
      height: 40px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
      justify-self: end;
    }

    .nav-burger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--dark);
      border-radius: 2px;
      transition: transform 0.25s, opacity 0.25s;
    }

    .nav-burger[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .nav-burger[aria-expanded="true"] span:nth-child(2) {
      opacity: 0;
    }

    .nav-burger[aria-expanded="true"] span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    /* ─── HERO ─── */
    .hero {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
      border-bottom: 2px solid var(--dark);
      text-align: center;
      overflow: hidden;
    }

    .hero-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: rgba(38,57,64,0.35);
      z-index: 1;
    }

    .hero-left {
      position: relative;
      z-index: 2;
      padding: 5rem 3rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2.5rem;
      width: 100%;
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
    }

    .hero-chip {
      display: inline-block;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      background: var(--accent);
      border: 1.5px solid var(--dark);
      padding: 0.3rem 0.85rem;
      border-radius: 100px;
      margin: 0 auto 2rem;
      color: var(--dark);
    }

    .chip-break { display: none; }

    .hero-h1 {
      font-family: var(--fh);
      font-size: clamp(3rem, 5vw, 5rem);
      font-weight: 900;
      line-height: 0.95;
      color: #f6f2e7;
      margin-bottom: 1.5rem;
    }

    .hero-h1 em {
      font-style: italic;
      color: var(--orange);
    }

    .hero-sub {
      font-family: var(--fb);
      font-size: 1.25rem;
      line-height: 1.75;
      color: rgba(246,242,231,0.85);
      font-weight: 400;
      max-width: 48ch;
      margin: 0 auto 2.5rem;
    }

    .hero-ctas {
      display: flex;
      gap: 0.75rem;
      align-items: center;
      justify-content: center;
    }

    .btn-primary {
      background: var(--orange);
      color: var(--bg);
      font-family: var(--fh);
      font-size: 0.85rem;
      font-weight: 400;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.85rem 1.75rem;
      border-radius: 100px;
      display: inline-block;
      transition: opacity 0.2s;
    }

    .btn-primary:hover { opacity: 0.85; }

    .btn-secondary {
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--dark);
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .hero .btn-secondary {
      color: #f6f2e7;
    }

    /* image placeholder style */
    .img-placeholder {
      width: 100%;
      height: 100%;
      min-height: 400px;
      background: #c8bfad;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(38,57,64,0.35);
      text-align: center;
      padding: 2rem;
    }

    /* ─── FOUNDER'S NOTE ─── */
    .founder-note {
      background: #f6f2e7;
    }

    .founder-note-inner {
      max-width: 680px;
      margin: 0 auto;
      padding: 6rem 2.5rem;
      text-align: left;
    }

    .founder-note-inner p {
      font-family: var(--fb);
      font-size: 1.1rem;
      line-height: 1.9;
      font-weight: 400;
      color: #263940;
      margin-bottom: 1.5rem;
    }

    .founder-note-inner p:last-child {
      margin-bottom: 0;
    }

    .founder-signature {
      font-weight: 700 !important;
      color: #d86f36 !important;
      margin-top: 1rem;
    }

    .founder-note-inner a {
      color: #263940;
      text-decoration: underline;
      text-underline-offset: 3px;
      transition: opacity 0.2s;
    }

    .founder-note-inner a:hover {
      opacity: 0.7;
    }

    /* ─── OFFERINGS ─── */
    .offerings {
      background: #f6f2e7;
    }

    .offerings-h2 {
      font-family: var(--fh);
      font-size: 3rem;
      font-weight: 900;
      line-height: 1.1;
      color: #d86f36;
      text-align: center;
      background: #f6f2e7;
      padding: 4rem 2.5rem 2rem;
    }

    .offer-card {
      position: relative;
      min-height: 500px;
    }

    .offer-photo {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
    }

    .offer-overlay {
      position: absolute;
      inset: 0;
      background: rgba(38,57,64,0.65);
    }

    .offer-copy {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-height: 500px;
      max-width: 540px;
    }

    .offer-copy-left {
      padding-left: 4rem;
      padding-top: 3rem;
      padding-bottom: 3rem;
      text-align: left;
    }

    .offer-copy-right {
      margin-left: auto;
      padding-right: 4rem;
      padding-top: 3rem;
      padding-bottom: 3rem;
      text-align: left;
    }

    .has-photo .offer-overlay {
      background: none;
    }

    .has-photo .offer-copy {
      background-color: rgba(38,57,64,0.88);
      border-radius: 6px;
      padding: 2.5rem;
    }

    .offer-copy .offering-tag {
      font-family: var(--fh);
      font-size: 0.7rem;
      font-weight: 700;
      font-style: normal;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: #d86f36;
      margin-bottom: 0.4rem;
    }

    .offer-copy .offering-title {
      font-family: var(--fh);
      font-size: 2.5rem;
      font-weight: 700;
      font-style: normal;
      line-height: 1.1;
      color: #f6f2e7;
      margin-bottom: 1.25rem;
    }

    .offer-copy .offering-body {
      font-family: var(--fh);
      font-size: 1.1rem;
      font-weight: 400;
      font-style: normal;
      line-height: 1.8;
      color: rgba(246,242,231,0.75);
      margin-bottom: 1.25rem;
    }

    .offer-copy .offering-list {
      list-style: none;
      margin-bottom: 1.25rem;
    }

    .offer-copy .offering-list li {
      font-family: var(--fh);
      font-size: 1.1rem;
      font-weight: 400;
      font-style: normal;
      color: rgba(246,242,231,0.75);
      padding: 0.6rem 0;
      display: flex;
      align-items: baseline;
      gap: 0.5rem;
      border-bottom: 1px solid rgba(246,242,231,0.1);
    }

    .offer-copy .offering-list li:last-child { border-bottom: none; }

    .offer-copy .offering-list li a {
      color: rgba(246,242,231,0.75);
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .offer-copy .offering-list li::before {
      content: "→";
      color: #d86f36;
      font-weight: 700;
      flex-shrink: 0;
    }

    .offer-copy .offering-note {
      font-family: var(--fh);
      font-size: 0.95rem;
      font-weight: 400;
      font-style: italic;
      color: rgba(246,242,231,0.75);
      line-height: 1.8;
      border-left: 2px solid #d86f36;
      padding-left: 0.75rem;
      margin-top: 1rem;
      margin-bottom: 0.75rem;
    }

    .offer-copy .offering-cta {
      font-family: var(--fh);
      display: inline-block;
      margin-top: 0.5rem;
      font-size: 1rem;
      font-weight: 700;
      font-style: normal;
      color: #f6f2e7;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .offering-cta-label {
      font-family: var(--fh);
      font-size: 0.85rem;
      font-weight: 400;
      color: rgba(246,242,231,0.75);
      margin-top: 1.25rem;
      margin-bottom: 0;
    }

    .offering-cta-label strong {
      font-weight: 700;
      color: #f6f2e7;
    }

    .offer-copy .offering-cta .cta-arrow,
    .builds-link .cta-arrow {
      color: #d86f36;
    }

    .offering-bridge {
      font-family: var(--fh);
      font-size: 1.1rem;
      font-weight: 700;
      font-style: normal;
      color: #f6f2e7;
      margin-top: 1.5rem;
      margin-bottom: 0.75rem;
    }

    /* ─── PHOTO BREAK ─── */
    .photo-break {
      width: 100%;
      height: 420px;
      overflow: hidden;
      border-top: 2px solid var(--dark);
      border-bottom: 2px solid var(--dark);
      background: #c8bfad;
    }

    .photo-break img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 30%;
      display: block;
    }

    /* ─── WHO ─── */
    .who {
      padding: 5rem 2.5rem;
      background: var(--bg);
    }

    .who-header {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 2.5rem;
      text-align: center;
    }

    .who-h2 {
      font-family: var(--fh);
      font-size: clamp(1.8rem, 3vw, 2.5rem);
      font-weight: 900;
      line-height: 1.1;
    }

    .who-sub {
      font-size: 0.9rem;
      color: #4a5c62;
      font-weight: 400;
      text-align: right;
      line-height: 1.6;
    }

    .who-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0.75rem;
      min-width: 0;
    }

    .who-card {
      background: #e8e0d0;
      border: 1.5px solid var(--dark);
      border-radius: 8px;
      padding: 1.5rem;
      text-align: center;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .who-card:hover {
      background: rgba(38,57,64,0.08);
    }

    a.who-card {
      display: block;
      text-decoration: none;
      color: inherit;
    }

    .who-card svg {
      margin: 0 auto 0.75rem;
      display: block;
    }

    .who-title {
      font-family: var(--fh);
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 0.25rem;
    }

    .who-label {
      font-size: 1rem;
      color: #4a5c62;
      font-weight: 300;
    }

    /* ─── BUILDS ─── */
    .builds {
      display: grid;
      grid-template-columns: 1fr 1fr;
      border-top: 2px solid var(--dark);
      border-bottom: 2px solid var(--dark);
    }

    .builds-left {
      background: var(--dark);
      padding: 5rem 3rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .builds-eyebrow {
      font-size: 0.7rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--orange);
      font-weight: 700;
      margin-bottom: 0.75rem;
    }

    .builds-h2 {
      font-family: var(--fh);
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--bg);
      line-height: 1.1;
      margin-bottom: 1rem;
    }

    .builds-body {
      font-size: 1.1rem;
      color: rgba(246,242,231,0.55);
      font-weight: 400;
      line-height: 1.75;
      margin-bottom: 1.5rem;
    }

    .builds-link {
      font-family: var(--fh);
      display: inline-block;
      font-size: 1rem;
      font-weight: 700;
      color: #f6f2e7;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .builds-right {
      position: relative;
      overflow: hidden;
      min-height: 400px;
      background: #c8bfad;
    }

    .builds-right img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* ─── TESTIMONIALS ─── */
    .testimonials {
      padding: 5rem 2.5rem;
      background: var(--bg);
    }

    .section-eyebrow {
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--orange);
      font-weight: 700;
      margin-bottom: 0.75rem;
    }

    .section-h2 {
      font-family: var(--fh);
      font-size: clamp(1.6rem, 2.5vw, 2.2rem);
      font-weight: 900;
      line-height: 1.1;
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      margin-top: 2.5rem;
      min-width: 0;
    }

    .testimonial-card {
      border: 1.5px solid var(--dark);
      border-radius: 8px;
      padding: 2rem;
    }

    .testimonial-quote {
      font-family: var(--fh);
      font-size: 0.95rem;
      font-style: italic;
      line-height: 1.7;
      color: var(--dark);
      margin-bottom: 1.25rem;
    }

    .testimonial-card .testimonial-quote:last-of-type {
      margin-bottom: 0;
    }

    .testimonial-name {
      font-size: 0.7rem;
      font-weight: 300;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--dark);
      font-style: italic;
    }

    /* ─── CTA ─── */
    .cta-bottom {
      background: #e8dead;
      padding: 5rem 2.5rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: start;
      border-top: 2px solid var(--dark);
    }

    .cta-h2 {
      font-family: var(--fh);
      font-size: clamp(2.5rem, 4vw, 4rem);
      font-weight: 900;
      color: var(--dark);
      line-height: 1.05;
      margin-bottom: 0.75rem;
    }

    .cta-sub {
      font-size: 1.05rem;
      color: var(--dark);
      opacity: 0.7;
      font-weight: 400;
      line-height: 1.7;
    }

    .cta-form {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.25rem;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .cta-form label {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--dark);
      opacity: 0.8;
    }

    .cta-form input,
    .cta-form textarea {
      padding: 0.85rem 1rem;
      border: 1.5px solid rgba(38,57,64,0.2);
      background: #fff;
      font-family: var(--fb);
      font-size: 0.95rem;
      color: var(--dark);
      outline: none;
      border-radius: 6px;
      width: 100%;
      box-sizing: border-box;
    }

    .cta-form input::placeholder,
    .cta-form textarea::placeholder { color: rgba(38,57,64,0.4); }

    /* Custom select dropdown */
    .custom-select {
      position: relative;
      width: 100%;
    }

    .select-trigger {
      padding: 0.85rem 1rem;
      border: 1.5px solid rgba(38,57,64,0.2);
      background: #fff;
      font-family: var(--fb);
      font-size: 0.95rem;
      color: var(--dark);
      border-radius: 6px;
      cursor: pointer;
      position: relative;
      padding-right: 2.5rem;
      user-select: none;
      line-height: 1.4;
    }

    .select-trigger::after {
      content: '';
      position: absolute;
      right: 1rem;
      top: 50%;
      transform: translateY(-50%);
      width: 0;
      height: 0;
      border-left: 5px solid transparent;
      border-right: 5px solid transparent;
      border-top: 5px solid var(--dark);
      opacity: 0.5;
      transition: transform 0.2s;
    }

    .custom-select.open .select-trigger::after {
      transform: translateY(-50%) rotate(180deg);
    }

    .select-options {
      position: absolute;
      top: calc(100% + 4px);
      left: 0;
      right: 0;
      background: #fff;
      border: 1.5px solid rgba(38,57,64,0.2);
      border-radius: 6px;
      max-height: 240px;
      overflow-y: auto;
      z-index: 10;
      display: none;
      box-shadow: 0 4px 12px rgba(38,57,64,0.1);
    }

    .custom-select.open .select-options {
      display: block;
    }

    .select-option {
      padding: 0.75rem 1rem;
      font-family: var(--fb);
      font-size: 0.9rem;
      color: var(--dark);
      cursor: pointer;
      border-bottom: 1px solid rgba(38,57,64,0.06);
      line-height: 1.4;
      transition: background 0.15s;
    }

    .select-option:last-child {
      border-bottom: none;
    }

    .select-option:hover,
    .select-option.selected {
      background: rgba(38,57,64,0.06);
    }

    .cta-form textarea {
      resize: vertical;
      min-height: 100px;
    }

    .form-submit {
      background: var(--orange);
      color: var(--bg);
      border: none;
      padding: 1rem 2.5rem;
      font-family: var(--fh);
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      border-radius: 100px;
      cursor: pointer;
      align-self: start;
      transition: opacity 0.2s;
    }

    .form-submit:hover { opacity: 0.9; }

    /* ─── FOOTER ─── */
    footer {
      background: var(--dark);
      padding: 3rem 2.5rem 1.5rem;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(6, auto);
      justify-content: space-between;
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-brand {
      font-family: var(--fb);
      font-size: 0.95rem;
      font-weight: 900;
      color: var(--orange);
      margin-bottom: 0.5rem;
    }

    .footer-tagline {
      font-size: 0.78rem;
      color: rgba(246,242,231,0.6);
      font-weight: 400;
      line-height: 1.6;
      max-width: 42ch;
    }

    .footer-col-title {
      font-size: 0.65rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      font-weight: 700;
      color: var(--orange);
      margin-bottom: 0.65rem;
    }

    .footer-col a {
      display: block;
      font-size: 0.78rem;
      color: rgba(246,242,231,0.6);
      font-weight: 300;
      margin-bottom: 0.35rem;
    }

    .footer-col a:hover { color: var(--bg); }

    .footer-bottom {
      background: var(--dark);
      padding: 1.25rem 2.5rem;
      border-top: 1px solid rgba(246,242,231,0.06);
      text-align: center;
    }

    .footer-copy {
      font-size: 0.7rem;
      font-weight: 300;
      color: rgba(246,242,231,0.5);
    }

    /* ─── RESPONSIVE ─── */

    /* Tablet */
    @media (max-width: 1024px) {
      nav { padding: 1rem 1.5rem; }
      .nav-links { gap: 1rem; font-size: 0.8rem; }
      .nav-logo img { height: 48px; }

      .hero-left { padding: 4rem 2rem; }
      .hero-h1 { font-size: clamp(2.5rem, 6vw, 4rem); }

      .offer-copy { min-height: 420px; }
      .offer-copy-left { padding-left: 2.5rem; }
      .offer-copy-right { padding-right: 2.5rem; }

      .who-grid { grid-template-columns: repeat(2, 1fr); }

      .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; min-width: 0; }
    }

    /* Mobile */
    @media (max-width: 768px) {
      nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
        padding: 0.75rem 1.25rem;
      }
      .nav-logo img { height: 44px; }
      .nav-burger {
        display: flex;
        order: 2;
      }
      .nav-links {
        display: none;
        flex-direction: column;
        order: 3;
        width: 100%;
        gap: 1rem;
        font-size: 0.85rem;
        padding: 1rem 0;
        border-top: 1px solid rgba(38,57,64,0.1);
        margin-top: 0.5rem;
      }
      .nav-links a { color: var(--dark); }
      nav.open .nav-links { display: flex; }
      .nav-right {
        display: none;
        order: 4;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
      }
      nav.open .nav-right { display: flex; }
      .nav-right .nav-cta {
        display: block;
        text-align: center;
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
        width: 100%;
      }
      .nav-right .nav-login {
        text-align: center;
        width: 100%;
        font-size: 0.85rem;
        padding: 0.4rem 0;
      }
      nav.open {
        border: 1.5px solid var(--dark);
        border-radius: 12px;
        margin: 0.5rem;
        padding: 1rem 1.25rem;
        background: var(--bg);
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
      }
      nav.open .nav-links {
        border-top: 1px solid rgba(38,57,64,0.15);
        border-bottom: 1px solid rgba(38,57,64,0.15);
        padding: 1.25rem 0;
        margin: 0.75rem 0;
      }

      .hero,
      .builds,
      .cta-bottom {
        grid-template-columns: 1fr;
      }

      .hero-left { padding: 3rem 1.5rem; }
      .hero-h1 { font-size: clamp(2.5rem, 10vw, 4rem); }
      .hero-sub { font-size: 1.05rem; }
      .hero-ctas { flex-direction: column; gap: 0.75rem; width: 100%; }
      .hero-ctas .btn-primary,
      .hero-ctas .btn-secondary { width: 100%; text-align: center; }
      .chip-break { display: inline; }
      .note-break { display: none; }

      .founder-note-inner { padding: 3rem 1.5rem; }
      .founder-note-inner p { font-size: 1rem; }
      .offerings-h2 { font-size: 1.75rem; padding: 2.5rem 1.5rem 1.25rem; }
      .offerings { background: #263940; }
      .offer-card { min-height: auto; background: #263940; position: static; }
      .has-photo .offer-photo,
      .has-photo .offer-overlay { display: none; }
      .offer-copy { min-height: auto; max-width: none; background: transparent; }
      .offer-copy-left { padding: 2rem 1.5rem; }
      .offer-copy-right { margin-left: 0; padding: 2rem 1.5rem; text-align: left; }
      .has-photo .offer-copy { background: transparent; }
      .offer-copy .offering-title { font-size: 1.75rem; }
      .offer-copy .offering-body,
      .offer-copy .offering-list li { font-size: 1rem; }

      .photo-break { height: 220px; }

      .who { padding: 2.5rem 1.5rem; }
      .who-grid { grid-template-columns: 1fr 1fr; }
      .who-header { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
      .who-sub { text-align: left; font-size: 0.85rem; }
      .who-card { padding: 1.25rem; min-height: 160px; }

      .builds-left { padding: 2.5rem 1.5rem; }
      .builds-h2 { font-size: 1.75rem; }
      .builds-body { font-size: 1rem; }
      .builds-right { min-height: 250px; }

      .testimonials { padding: 2.5rem 1.5rem; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .testimonial-card { padding: 1.5rem; }
      .testimonial-quote { font-size: 0.9rem; }

      .cta-bottom { padding: 2.5rem 1.5rem; gap: 0.5rem; }
      .cta-h2 { font-size: clamp(1.75rem, 6vw, 2.5rem); }
      .section-h2 { font-size: clamp(1.4rem, 5vw, 2rem); }
      .form-row { grid-template-columns: 1fr; }
      .offer-card { overflow: hidden; }

      footer { padding: 2rem 1.5rem 1rem; }
      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
      }
      .footer-tagline { max-width: none; }

      .footer-bottom { padding: 1rem 1.5rem; }
    }

    /* Small mobile */
    @media (max-width: 480px) {
      .nav-links { font-size: 0.7rem; gap: 0.5rem; }
      .hero-h1 { font-size: clamp(2rem, 11vw, 3rem); }
      .hero-sub { font-size: 0.95rem; }

      .who-grid { grid-template-columns: 1fr; }
      .who-card { min-height: auto; }

      .offer-copy .offering-title { font-size: 1.5rem; }

      .footer-grid { grid-template-columns: 1fr; }

      .testimonial-card { padding: 1.25rem; }
    }

/* ── Shared layout system ────────────────────────────────────────────────── */
/* Breakpoints: 768 tablet | 1024 laptop | 1440 desktop                      */

.container-text { max-width: 700px;  margin: 0 auto; padding: 0 24px; box-sizing: border-box; }
.container-wide { max-width: 980px;  margin: 0 auto; padding: 0 32px; box-sizing: border-box; }
.container-full { max-width: 1280px; margin: 0 auto; padding: 0 32px; box-sizing: border-box; }

@media (max-width: 480px) {
  .container-text, .container-wide, .container-full { padding-left: 20px; padding-right: 20px; }
}

/* Fluid type base — specific components may override */
h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
p  { font-size: clamp(1rem, 1.5vw, 1.0625rem); }
