/* Home page sections */

    .hero {
      position: relative;
      max-width: var(--wide);
      margin: 0 auto;
      padding: 4.5rem 1.5rem 3.5rem;
      isolation: isolate;
    }

    .hero__grid {
      display: grid;
      gap: 2.5rem;
      align-items: center;
    }

    @media (min-width: 820px) {
      .hero__grid {
        grid-template-columns: 1.05fr 0.95fr;
        gap: 3rem;
      }
    }

    .hero__photo {
      margin: 0;
      position: relative;
    }

    .hero__photo-frame,
    .why-photo__frame {
      position: relative;
      line-height: 0;
      overflow: hidden;
      background: var(--photo-edge-bg, var(--bg));
    }

    .hero__photo-frame {
      --photo-edge-bg: var(--bg);
      --photo-edge-mid: rgba(14, 18, 24, 0.55);
      --photo-edge-side: rgba(14, 18, 24, 0.42);
    }

    .why-photo__frame {
      --photo-edge-bg: var(--bg-elevated);
      --photo-edge-mid: rgba(21, 27, 36, 0.55);
      --photo-edge-side: rgba(21, 27, 36, 0.42);
      border-radius: 8px;
    }

    .hero__photo-frame img,
    .why-photo__frame img {
      width: 100%;
      display: block;
      vertical-align: middle;
    }

    .hero__photo-frame img {
      height: auto;
    }

    .why-photo__frame img {
      aspect-ratio: 3 / 4;
      object-fit: cover;
      object-position: center top;
      filter: saturate(0.88) sepia(0.12);
    }

    .why-photo--crew .why-photo__frame img {
      object-position: center 42%;
    }

    .hero__photo-frame::after,
    .why-photo__frame::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      border-radius: inherit;
      background:
        linear-gradient(to top, var(--photo-edge-bg) 0%, var(--photo-edge-mid) 10%, transparent 26%),
        linear-gradient(to bottom, var(--photo-edge-bg) 0%, var(--photo-edge-mid) 10%, transparent 26%),
        linear-gradient(to left, var(--photo-edge-bg) 0%, var(--photo-edge-side) 8%, transparent 22%),
        linear-gradient(to right, var(--photo-edge-bg) 0%, var(--photo-edge-side) 8%, transparent 22%);
    }

    .hero__photo .photo-cap {
      margin-top: 0.65rem;
      padding-left: 0.15rem;
      opacity: 0.85;
    }

    @media (min-width: 820px) {
      .hero__photo-frame {
        margin-right: -0.5rem;
      }
    }

    @media (max-width: 819px) {
      .hero__photo-frame {
        max-width: 22rem;
        margin-inline: auto;
      }
    }

    .photo-cap {
      margin-top: 0.5rem;
      font-size: 0.6875rem;
      color: var(--text-muted);
      line-height: 1.45;
    }

    .photo-cap a {
      color: var(--text-muted);
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .photo-cap a:hover { color: var(--accent); }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 55% 70% at 78% 42%, rgba(61, 90, 128, 0.14) 0%, transparent 58%),
        radial-gradient(circle at 12% 88%, rgba(196, 163, 90, 0.08) 0%, transparent 40%);
      pointer-events: none;
      z-index: -1;
    }

    .hero__label {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .hero__label svg {
      flex-shrink: 0;
      opacity: 0.9;
    }

    .hero__vob {
      font-size: 0.6875rem;
      font-weight: 600;
      letter-spacing: 0.11em;
      text-transform: uppercase;
      color: var(--gold);
      opacity: 0.88;
      margin: -0.35rem 0 1rem;
    }

    .hero__tag {
      font-family: Lora, Georgia, serif;
      font-size: 1.05rem;
      font-style: italic;
      color: rgba(196, 163, 90, 0.85);
      max-width: 32rem;
      margin-bottom: 0.75rem;
      line-height: 1.45;
    }

    .hero h1 {
      font-family: Lora, Georgia, serif;
      font-size: clamp(2rem, 5.5vw, 2.85rem);
      font-weight: 500;
      line-height: 1.2;
      letter-spacing: -0.02em;
      max-width: 16ch;
      margin-bottom: 1.25rem;
    }

    .hero__lead {
      font-size: 1.125rem;
      color: var(--text-muted);
      max-width: 36rem;
      margin-bottom: 2rem;
    }

    .hero__actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
    }

    /* heritage band — generation + branches */
    .heritage {
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      background: linear-gradient(
        180deg,
        var(--navy-deep) 0%,
        rgba(36, 53, 72, 0.6) 100%
      );
      padding: 2rem 1.5rem;
    }

    .heritage-inner {
      max-width: var(--wide);
      margin: 0 auto;
      text-align: center;
    }

    .heritage__lead {
      font-family: Lora, Georgia, serif;
      font-size: 1.125rem;
      font-weight: 500;
      color: var(--text);
      margin-bottom: 0.5rem;
      line-height: 1.4;
    }

    .heritage__sub {
      font-size: 0.875rem;
      color: var(--text-muted);
      max-width: 36rem;
      margin: 0 auto 1.25rem;
      line-height: 1.55;
    }

    .heritage__branches {
      display: grid;
      grid-template-columns: repeat(6, minmax(0, 1fr));
      gap: 1.25rem 0.75rem;
      list-style: none;
      padding: 0;
      max-width: 36rem;
      margin: 0 auto;
    }

    @media (max-width: 640px) {
      .heritage__branches {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        max-width: 16rem;
      }
    }

    .heritage__branch {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.45rem;
    }

    .heritage__branch img {
      width: 3rem;
      height: 3rem;
      object-fit: contain;
      display: block;
    }

    .heritage__branch span {
      font-size: 0.5625rem;
      font-weight: 600;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      color: var(--text-muted);
      text-align: center;
      line-height: 1.25;
    }

    .section {
      padding: 4rem 1.5rem;
      border-top: 1px solid var(--border);
    }

    .section--raised {
      background: var(--bg-elevated);
    }

    .wrap {
      max-width: var(--max);
      margin: 0 auto;
    }

    .wrap--wide {
      max-width: var(--wide);
      margin: 0 auto;
    }

    h2 {
      font-family: Lora, Georgia, serif;
      font-size: 1.5rem;
      font-weight: 500;
      margin-bottom: 0.75rem;
      color: var(--text);
    }

    .section-intro {
      color: var(--text-muted);
      margin-bottom: 2rem;
      font-size: 1.05rem;
    }

    /* Why — personal */
    .why {
      position: relative;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 1.75rem 1.5rem;
      border-left: 3px solid var(--gold);
    }

    .why::before {
      content: "";
      position: absolute;
      top: 1rem;
      right: 1rem;
      width: 28px;
      height: 28px;
      opacity: 0.12;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23c4a35a' d='M12 2l2.4 7.4H22l-6.2 4.5 2.4 7.4L12 16.8 5.8 21.3l2.4-7.4L2 9.4h7.6z'/%3E%3C/svg%3E");
      background-size: contain;
      pointer-events: none;
    }

    .why p {
      color: var(--text-muted);
      margin-bottom: 1rem;
    }

    .why p:last-child { margin-bottom: 0; }

    .why strong { color: var(--text); font-weight: 500; }

    .why-layout {
      display: grid;
      gap: 2rem;
    }

    .why-photos {
      display: grid;
      gap: 0.85rem;
      grid-template-columns: repeat(3, 1fr);
    }

    @media (max-width: 640px) {
      .why-photos { grid-template-columns: 1fr; max-width: 18rem; }
    }

    .why-photo {
      margin: 0;
    }

    .why-photo__name {
      display: block;
      font-size: 0.8125rem;
      font-weight: 600;
      color: var(--text);
      margin-top: 0.45rem;
    }

    .why-photo__rank {
      display: inline-block;
      min-width: 2.25rem;
      margin-right: 0.35rem;
      font-weight: 500;
      color: var(--text-muted);
      letter-spacing: 0.02em;
    }

    .why-photo__meta {
      display: block;
      font-size: 0.6875rem;
      color: var(--text-muted);
      line-height: 1.4;
      margin-top: 0.15rem;
    }

    /* Process */
    .process {
      list-style: none;
      counter-reset: step;
    }

    .process li {
      counter-increment: step;
      padding: 1.5rem 0;
      border-bottom: 1px solid var(--border);
      display: grid;
      grid-template-columns: 3rem 1fr;
      gap: 1rem;
      align-items: start;
    }

    .process li:last-child { border-bottom: none; }

    .process li::before {
      content: counter(step, decimal-leading-zero);
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--gold);
      background: var(--gold-soft);
      width: 2.25rem;
      height: 2.25rem;
      display: grid;
      place-items: center;
      border-radius: 6px;
    }

    .process h3 {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 0.35rem;
    }

    .process p {
      font-size: 0.9375rem;
      color: var(--text-muted);
      line-height: 1.55;
    }

    /* Deliverables */
    .deliverables {
      display: grid;
      gap: 1rem;
    }

    @media (min-width: 600px) {
      .deliverables { grid-template-columns: 1fr 1fr; }
    }

    .deliverable {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 1.25rem;
    }

    .deliverable h3 {
      font-size: 0.9375rem;
      font-weight: 600;
      margin-bottom: 0.35rem;
    }

    .deliverable p {
      font-size: 0.875rem;
      color: var(--text-muted);
      line-height: 1.5;
    }

    /* FAQ */
    details {
      border-bottom: 1px solid var(--border);
      padding: 1rem 0;
    }

    details summary {
      font-weight: 500;
      font-size: 0.9375rem;
      cursor: pointer;
      list-style: none;
      color: var(--text);
    }

    details summary::-webkit-details-marker { display: none; }

    details p {
      margin-top: 0.75rem;
      font-size: 0.9375rem;
      color: var(--text-muted);
      line-height: 1.55;
    }

    /* Contact */
    .contact-block {
      max-width: 32rem;
    }

    .contact-block__btn {
      margin-top: 0.25rem;
    }

    .contact-block__email {
      margin-top: 1.25rem;
      line-height: 1.6;
    }

    .contact-grid {
      display: grid;
      gap: 2rem;
    }

    @media (min-width: 640px) {
      .contact-grid { grid-template-columns: 1fr 1.1fr; }
    }

    .form-box {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 1.5rem;
    }

    label {
      display: block;
      font-size: 0.8125rem;
      font-weight: 500;
      color: var(--text-muted);
      margin-bottom: 0.35rem;
    }

    input, select, textarea {
      width: 100%;
      font: inherit;
      font-size: 0.9375rem;
      padding: 0.6rem 0.75rem;
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 6px;
      color: var(--text);
      margin-bottom: 1rem;
    }

    input:focus, select:focus, textarea:focus {
      outline: none;
      border-color: var(--accent);
      box-shadow: 0 0 0 3px var(--accent-soft);
    }

    .fine {
      font-size: 0.75rem;
      color: var(--text-muted);
      margin-top: 0.75rem;
    }

    .deliverables-note {
      margin-top: 1.75rem;
      text-align: center;
      font-size: 0.9375rem;
      font-weight: 600;
      color: var(--text);
      line-height: 1.5;
    }

    .deliverables-note a {
      font-weight: 600;
      color: var(--accent);
      text-decoration: none;
    }

    .deliverables-note a:hover {
      text-decoration: underline;
    }

    .intake-cta__title {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
    }

    .intake-cta__lead {
      color: var(--text-muted);
      font-size: 0.9375rem;
      line-height: 1.55;
      margin-bottom: 1.25rem;
    }

    .intake-cta__btn {
      display: block;
      text-align: center;
      width: 100%;
    }

