﻿  :root {
    --ocean: #1B3A52;
    --teal: #2BBFB3;
    --sand: #D4B896;
    --cream: #F0EAE0;
    --cream-section: #F5EFE6;
    --white: #FFFFFF;
    --off-black: #111820;
    --body-on-cream: #3d3a36;
    --body-on-dark: rgba(255, 255, 255, 0.78);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', system-ui, sans-serif;
    background: var(--ocean);
    color: var(--white);
    overflow-x: hidden;
    font-optical-sizing: auto;
  }

  .skip-link {
    position: absolute;
    left: -9999px;
    z-index: 999;
    padding: 0.75rem 1rem;
    background: var(--sand);
    color: var(--ocean);
    font-weight: 600;
    text-decoration: none;
  }
  .skip-link:focus { left: 1rem; top: 1rem; }

  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    background: rgba(27, 58, 82, 0.92);
    backdrop-filter: blur(16px);
  }

  .nav-wordmark {
    font-family: Gadugi, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.02em;
  }

  .nav-wordmark span {
    font-weight: 600;
    font-style: normal;
    color: var(--teal);
  }

  .nav-links {
    display: flex; gap: 2rem; list-style: none; align-items: center;
  }

  .nav-links a {
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.06em;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--teal); }

  .nav-cta {
    background: var(--sand);
    color: var(--ocean);
    padding: 0.55rem 1.35rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: all 0.2s;
    border: 1px solid var(--sand);
  }

  .nav-cta:hover {
    background: transparent;
    color: var(--sand);
  }

  .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 101;
  }
  .nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: transform 0.25s, opacity 0.25s;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .mobile-drawer {
    display: none;
    position: fixed;
    inset: 0;
    top: 0;
    background: rgba(27, 58, 82, 0.98);
    padding: 5.5rem 2rem 2rem;
    flex-direction: column;
    gap: 0;
    z-index: 99;
  }
  .mobile-drawer.open { display: flex; }
  .mobile-drawer a {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    color: var(--white);
    text-decoration: none;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .mobile-drawer a:hover { color: var(--teal); }
  .mobile-drawer .mobile-cta {
    margin-top: 1.5rem;
    text-align: center;
    background: var(--sand);
    color: var(--ocean);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 1rem;
    border: none;
  }

  /* HERO — Introduction */
  #home {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    background: var(--ocean);
  }

  #home::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(43,191,179,0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(43,191,179,0.06) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 80% 70% at 60% 40%, black 15%, transparent 65%);
    pointer-events: none;
  }

  .hero-bg-number {
    position: absolute;
    top: 42%;
    right: -4rem;
    transform: translateY(-50%);
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(12rem, 22vw, 20rem);
    font-weight: 700;
    color: rgba(255,255,255,0.04);
    line-height: 1;
    pointer-events: none;
    user-select: none;
  }

  .hero-layout {
    flex: 1;
    display: grid;
    grid-template-columns: minmax(280px, 420px) 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 7.5rem 2rem 2rem;
    position: relative;
    z-index: 2;
  }

  .hero-photo-wrap {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow:
      0 24px 48px rgba(0,0,0,0.35),
      0 0 0 1px rgba(212, 184, 150, 0.35);
  }

  .hero-photo-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 4px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
    pointer-events: none;
  }

  .hero-photo {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
    background: linear-gradient(145deg, var(--cream-section) 0%, var(--ocean) 100%);
  }

  .hero-photo-fallback {
    aspect-ratio: 4 / 5;
    background: linear-gradient(160deg, var(--teal) 0%, var(--ocean) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    text-align: center;
    padding: 1rem;
    line-height: 1.5;
  }

  .hero-copy { padding-bottom: 0.5rem; }

  .hero-tag {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .hero-tag::before {
    content: '';
    width: 36px;
    height: 2px;
    background: var(--teal);
  }

  .hero-h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 1.25rem;
  }

  .hero-h1 .line-italic {
    font-style: italic;
    font-weight: 600;
    color: var(--sand);
  }

  .hero-h1 .line-teal {
    color: var(--teal);
    font-style: italic;
    font-weight: 600;
  }

  .hero-sub {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255,255,255,0.82);
    line-height: 1.65;
    max-width: 34rem;
    margin-bottom: 1.75rem;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.5rem;
  }

  .btn-primary-dark {
    background: var(--sand);
    color: var(--ocean);
    padding: 0.95rem 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: all 0.25s;
    border: 2px solid var(--sand);
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
  }

  .btn-primary-dark:hover {
    background: transparent;
    color: var(--sand);
    transform: translateY(-2px);
  }

  .btn-secondary-teal {
    background: var(--teal);
    color: var(--white);
    padding: 0.95rem 1.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-decoration: none;
    border: 2px solid var(--teal);
    transition: all 0.25s;
    font-family: 'DM Sans', sans-serif;
  }

  .btn-secondary-teal:hover {
    background: transparent;
    color: var(--teal);
  }

  .hero-scroll {
    position: absolute;
    bottom: 1.75rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.35);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    z-index: 3;
    cursor: default;
  }

  .hero-scroll-arrow {
    width: 22px;
    height: 22px;
    border-right: 2px solid rgba(43,191,179,0.6);
    border-bottom: 2px solid rgba(43,191,179,0.6);
    transform: rotate(45deg);
    animation: bounceArrow 2.2s ease-in-out infinite;
  }

  @keyframes bounceArrow {
    0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 0.6; }
    50% { transform: rotate(45deg) translate(4px, 4px); opacity: 1; }
  }

  /* STORY */
  #story {
    background: var(--cream-section);
    padding: clamp(5rem, 12vw, 9rem) 0;
    position: relative;
  }

  .sand-divider {
    height: 4px;
    width: min(120px, 30vw);
    background: linear-gradient(90deg, var(--sand), rgba(212, 184, 150, 0.35));
    border-radius: 2px;
    margin-bottom: 2.5rem;
  }

  .story-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  .story-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 4rem;
  }

  .story-section-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(4rem, 10vw, 6rem);
    font-weight: 700;
    color: rgba(27,58,82,0.08);
    line-height: 1;
    flex-shrink: 0;
  }

  .story-header-text { flex: 1; min-width: 0; }

  .story-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .story-label::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--teal);
  }

  .story-big-quote {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.65rem, 3.2vw, 2.75rem);
    font-weight: 700;
    font-style: italic;
    color: var(--ocean);
    line-height: 1.28;
  }

  .story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
  }

  .story-p {
    font-size: 1.02rem;
    font-weight: 400;
    color: var(--body-on-cream);
    line-height: 1.85;
    margin-bottom: 1.35rem;
  }

  .story-photo-secondary {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(27,58,82,0.12);
    border: 1px solid rgba(27,58,82,0.08);
  }

  .story-photo-secondary img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
    background: var(--cream);
  }

  .story-photo-caption {
    font-size: 0.78rem;
    color: rgba(61,58,54,0.65);
    margin-top: 0.65rem;
    font-style: italic;
  }

  .story-stat-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem 2.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(27,58,82,0.12);
  }

  .story-stat-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ocean);
    line-height: 1;
    margin-bottom: 0.35rem;
  }

  .story-stat-num span { color: var(--teal); font-size: 1.5rem; }

  .story-stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(61,58,54,0.55);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.4;
  }

  .story-pull-card {
    background: var(--ocean);
    padding: 2.5rem 2.75rem;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
  }

  .story-pull-card::before {
    content: '';
    position: absolute;
    top: -2rem; right: -2rem;
    width: 10rem; height: 10rem;
    border: 1px solid rgba(43,191,179,0.25);
    transform: rotate(45deg);
  }

  .story-pull-card blockquote {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    font-style: italic;
    font-weight: 600;
    color: var(--white);
    line-height: 1.55;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
  }

  .story-pull-card cite {
    font-size: 0.78rem;
    font-weight: 600;
    font-style: normal;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
  }

  /* SERVICES — Work With Me */
  #work {
    background: var(--off-black);
    padding: clamp(5rem, 12vw, 9rem) 0;
    position: relative;
  }

  #work::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(43,191,179,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(43,191,179,0.04) 1px, transparent 1px);
    background-size: 72px 72px;
    pointer-events: none;
  }

  .services-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
  }

  .services-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
  }

  .services-h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.05;
    letter-spacing: -0.02em;
    max-width: 14ch;
  }

  .services-h2 em {
    font-style: italic;
    font-weight: 600;
    color: var(--sand);
  }

  .services-lead {
    max-width: 28rem;
    font-size: 1.05rem;
    font-weight: 400;
    color: rgba(255,255,255,0.72);
    line-height: 1.75;
  }

  .services-note {
    margin-top: 1rem;
    font-size: 0.88rem;
    color: var(--teal);
    font-weight: 500;
  }

  .services-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 3.5rem;
  }

  .service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 0;
    text-align: left;
    cursor: pointer;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 0;
    border-radius: 4px;
    overflow: hidden;
    transition: border-color 0.25s, background 0.25s, transform 0.25s, box-shadow 0.25s;
    font: inherit;
    color: inherit;
    -webkit-tap-highlight-color: transparent;
  }

  .service-card:hover,
  .service-card:focus-visible {
    border-color: rgba(43,191,179,0.5);
    background: rgba(43,191,179,0.08);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.35);
    outline: none;
  }

  .service-card:focus-visible {
    box-shadow: 0 0 0 2px var(--ocean), 0 0 0 4px var(--teal);
  }

  /* Icon + title share one row so headings align across the grid */
  .service-card-front {
    flex: 1;
    display: grid;
    grid-template-columns: 1.4rem 1fr;
    grid-template-rows: auto 1fr auto;
    gap: 0.65rem 0.75rem;
    align-items: start;
    padding: 1.75rem 1.85rem 1.5rem;
    position: relative;
    z-index: 1;
    transition: opacity 0.22s ease;
  }

  .service-card-icon {
    grid-column: 1;
    grid-row: 1;
    color: var(--teal);
    font-size: 1.25rem;
    margin: 0;
    font-weight: 700;
    line-height: 1.2;
    padding-top: 0.12em;
  }

  .service-card h3 {
    grid-column: 2;
    grid-row: 1;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    line-height: 1.28;
  }

  .service-card .service-card-summary {
    grid-column: 1 / -1;
    grid-row: 2;
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255,255,255,0.55);
    line-height: 1.65;
    margin: 0;
  }

  .service-card-hint {
    grid-column: 1 / -1;
    grid-row: 3;
    margin: 0;
    padding-top: 0.25rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal);
    opacity: 0.85;
  }

  @media (hover: hover) and (pointer: fine) {
    .service-card-hint { display: none; }
  }

  /* Hide default layer on hover so overlay text never stacks over the title */
  .service-card:hover .service-card-front,
  .service-card:focus-visible .service-card-front {
    opacity: 0;
  }

  .service-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: var(--ocean);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.5rem 1.65rem;
    opacity: 0;
    transition: opacity 0.22s ease;
    pointer-events: none;
  }

  .service-card:hover .service-card-overlay,
  .service-card:focus-visible .service-card-overlay {
    opacity: 1;
  }

  .service-card-overlay p {
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255,255,255,0.92);
    line-height: 1.55;
    margin: 0 0 0.75rem;
  }

  .service-card-overlay span {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sand);
  }

  @media (prefers-reduced-motion: reduce) {
    .service-card-front,
    .service-card-overlay {
      transition: none;
    }
  }

  /* Portfolio (past work) */
  .work-portfolio {
    margin-bottom: 3.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .work-portfolio-header {
    margin-bottom: 1.75rem;
  }

  .work-portfolio-header h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.65rem;
  }

  .work-portfolio-header p {
    font-size: 0.98rem;
    color: rgba(255,255,255,0.62);
    line-height: 1.65;
    max-width: 40rem;
  }

  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .portfolio-card {
    position: relative;
    display: block;
    width: 100%;
    text-align: left;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    overflow: hidden;
    background: rgba(255,255,255,0.03);
    padding: 0;
    font: inherit;
    color: inherit;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    -webkit-tap-highlight-color: transparent;
  }

  .portfolio-card:hover,
  .portfolio-card:focus-visible {
    border-color: rgba(212, 184, 150, 0.45);
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(0,0,0,0.3);
    outline: none;
  }

  .portfolio-card:focus-visible {
    box-shadow: 0 0 0 2px var(--ocean), 0 0 0 4px var(--sand);
  }

  .portfolio-card-visual {
    height: 140px;
    background: linear-gradient(135deg, rgba(43,191,179,0.25) 0%, rgba(27,58,82,0.85) 55%, rgba(212, 184, 150, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(255,255,255,0.2);
  }

  .portfolio-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
  }

  .portfolio-card-body {
    padding: 1.1rem 1.15rem 1.25rem;
  }

  .portfolio-card-meta {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.4rem;
  }

  .portfolio-card h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 0.35rem;
  }

  .portfolio-card-snippet {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.5;
  }

  .portfolio-card-more {
    margin-top: 0.65rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sand);
  }

  /* Modal */
  .content-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s;
  }

  .content-modal[hidden] {
    display: none !important;
  }

  .content-modal.is-open {
    opacity: 1;
    visibility: visible;
  }

  .content-modal-backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgba(10, 15, 22, 0.72);
    backdrop-filter: blur(6px);
    cursor: pointer;
    border: none;
    padding: 0;
  }

  .content-modal-panel {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 520px;
    max-height: min(88vh, 720px);
    overflow-y: auto;
    background: var(--cream-section);
    color: var(--ocean);
    border-radius: 6px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.45);
    transform: translateY(16px) scale(0.98);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .content-modal.is-open .content-modal-panel {
    transform: translateY(0) scale(1);
  }

  .content-modal-close {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(27,58,82,0.08);
    color: var(--ocean);
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.35rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
  }

  .content-modal-close:hover,
  .content-modal-close:focus-visible {
    background: var(--ocean);
    color: var(--white);
    outline: none;
  }

  .content-modal-inner {
    padding: 2.25rem 2rem 2rem;
  }

  .content-modal-label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.5rem;
  }

  .content-modal-panel h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    color: var(--ocean);
  }

  .content-modal-panel .content-modal-meta {
    font-size: 0.88rem;
    color: rgba(27,58,82,0.65);
    margin-bottom: 1.25rem;
    line-height: 1.5;
  }

  .content-modal-body p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--body-on-cream);
    margin-bottom: 1rem;
  }

  .content-modal-body ul {
    margin: 0 0 1rem 1.1rem;
    color: var(--body-on-cream);
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .content-modal-body li { margin-bottom: 0.4rem; }

  .content-modal-cta {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(27,58,82,0.12);
  }

  .content-modal-cta a {
    display: inline-block;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--ocean);
    text-decoration: none;
    border-bottom: 2px solid var(--sand);
    transition: color 0.2s;
  }

  .content-modal-cta a:hover { color: var(--teal); border-bottom-color: var(--teal); }

  body.modal-open {
    overflow: hidden;
  }

  /* ABOUT — Why Kerri */
  #about {
    background: var(--ocean);
    padding: clamp(5rem, 12vw, 9rem) 0;
    position: relative;
    color: var(--white);
  }

  #about::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 100% 0%, rgba(43,191,179,0.12) 0%, transparent 55%);
    pointer-events: none;
  }

  .about-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
  }

  .about-intro-grid {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
    margin-bottom: 3.5rem;
  }

  .about-photo {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
    border: 2px solid rgba(212, 184, 150, 0.35);
  }

  .about-photo img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
    background: rgba(255,255,255,0.06);
  }

  .about-head-block .story-label { color: var(--teal); }

  .about-big-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.5rem, 2.8vw, 2.15rem);
    font-weight: 600;
    font-style: italic;
    color: var(--white);
    line-height: 1.35;
    margin-bottom: 1.5rem;
  }

  .about-body {
    font-size: 1rem;
    font-weight: 400;
    color: var(--body-on-dark);
    line-height: 1.8;
    margin-bottom: 1.1rem;
  }

  .award-strip {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem 1.75rem;
    background: rgba(0,0,0,0.25);
    border-left: 4px solid var(--sand);
    margin-bottom: 3rem;
    border-radius: 0 2px 2px 0;
  }

  .award-star { font-size: 2rem; color: var(--sand); line-height: 1; }

  .award-text-top {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 0.25rem;
  }

  .award-text-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
  }

  .cred-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 3rem;
  }

  .cred-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.9rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255,255,255,0.92);
    line-height: 1.35;
  }

  .cred-badge::before {
    content: '✓';
    color: var(--teal);
    font-weight: 700;
    font-size: 0.7rem;
  }

  .testimonial-block {
    max-width: 42rem;
    padding: 2rem 2.25rem;
    background: rgba(0,0,0,0.2);
    border-radius: 4px;
    border-left: 3px solid var(--teal);
  }

  .testimonial-block blockquote {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.15rem;
    font-style: italic;
    font-weight: 500;
    color: rgba(255,255,255,0.92);
    line-height: 1.55;
    margin-bottom: 1rem;
  }

  .testimonial-block footer {
    background: none;
    border: none;
    padding: 0;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
  }

  /* CONTACT */
  #contact {
    background: var(--cream-section);
    padding: clamp(5rem, 12vw, 9rem) 0 0;
    position: relative;
    overflow: hidden;
    color: var(--ocean);
  }

  #contact::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 50%;
    height: 80%;
    background: radial-gradient(circle, rgba(43,191,179,0.12) 0%, transparent 70%);
    pointer-events: none;
  }

  .contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
  }

  /* Contact: heading + copy share left column; form aligns top and is 2× width of info column */
  .contact-inner > .contact-grid {
    max-width: min(75rem, 100%);
    margin-left: auto;
    margin-right: auto;
  }

  .contact-column--info .contact-header {
    margin-bottom: 1.5rem;
  }

  .contact-column {
    min-width: 0;
  }

  .contact-h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--ocean);
    line-height: 1.05;
    letter-spacing: -0.02em;
  }

  .contact-h2 em {
    font-style: italic;
    font-weight: 600;
    color: var(--teal);
  }

  .contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: start;
    margin-bottom: 4rem;
    width: 100%;
  }

  .contact-info-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .contact-info-label::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--teal);
  }

  .contact-invite {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--body-on-cream);
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 34rem;
  }

  .contact-links {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
  }

  .contact-detail-link {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: var(--ocean);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
  }

  .contact-detail-link:hover { color: var(--teal); }

  .contact-detail-link .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--teal);
    flex-shrink: 0;
  }

  .contact-form-wrap {
    background: var(--white);
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(27,58,82,0.08);
    border: 1px solid rgba(27,58,82,0.08);
  }

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .field {
    border: 1px solid rgba(27,58,82,0.12);
    margin: -1px;
  }

  .field input,
  .field select,
  .field textarea {
    width: 100%;
    background: var(--cream-section);
    border: none;
    color: var(--ocean);
    padding: 1rem 1.15rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.92rem;
    font-weight: 400;
    outline: none;
    resize: vertical;
    min-height: 52px;
    transition: background 0.2s, box-shadow 0.2s;
  }

  .field textarea { min-height: 140px; }

  .field:focus-within {
    z-index: 2;
    position: relative;
    box-shadow: 0 0 0 2px var(--teal);
  }

  .field input::placeholder,
  .field textarea::placeholder {
    color: rgba(27,58,82,0.4);
  }

  .field select {
    color: rgba(27,58,82,0.75);
    cursor: pointer;
  }

  .field select option { background: var(--white); color: var(--ocean); }

  .form-submit-row {
    display: flex;
    justify-content: flex-end;
    margin-top: 1.25rem;
  }

  .form-submit-row .btn-primary-dark {
    cursor: pointer;
    border: none;
  }

  .form-status {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ocean);
    margin-top: 1rem;
    min-height: 1.4em;
  }

  .form-status.is-success {
    color: #1a6b5c;
  }

  .form-status.is-error {
    color: #8b2942;
  }

  .form-note {
    font-size: 0.75rem;
    color: rgba(61,58,54,0.55);
    margin-top: 1rem;
    line-height: 1.5;
  }

  .site-footer {
    background: var(--ocean);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .site-footer p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    font-weight: 400;
  }

  .footer-links {
    display: flex; gap: 1.5rem; list-style: none; flex-wrap: wrap;
  }

  .footer-links a {
    font-size: 0.74rem;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    letter-spacing: 0.05em;
    font-weight: 500;
    transition: color 0.2s;
  }

  .footer-links a:hover { color: var(--teal); }

  /* Reveal */
  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1), transform 0.75s cubic-bezier(0.22,1,0.36,1);
  }

  .reveal.visible { opacity: 1; transform: none; }

  .reveal-left {
    opacity: 0;
    transform: translateX(-28px);
    transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1), transform 0.75s cubic-bezier(0.22,1,0.36,1);
  }

  .reveal-left.visible { opacity: 1; transform: none; }

  @media (max-width: 960px) {
    .nav-links, .nav-cta { display: none; }
    .nav-toggle { display: flex; }
    .hero-layout {
      grid-template-columns: 1fr;
      padding-top: 5.5rem;
      text-align: center;
    }
    .hero-tag { justify-content: center; }
    .hero-tag::before { display: none; }
    .hero-copy { max-width: 36rem; margin: 0 auto; }
    .hero-actions { justify-content: center; }
    .hero-photo-wrap { max-width: 320px; margin: 0 auto; }
    .story-top { flex-direction: column; }
    .story-grid { grid-template-columns: 1fr; }
    .services-cards { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .services-header-row { flex-direction: column; align-items: flex-start; }
    .about-intro-grid { grid-template-columns: 1fr; text-align: center; }
    .about-photo { max-width: 220px; margin: 0 auto; }
    .about-head-block .story-label { justify-content: center; }
    .about-head-block .story-label::before { display: none; }
    .award-strip { flex-direction: column; text-align: center; }
    .cred-badges { justify-content: center; }
    .testimonial-block { text-align: left; }
    .contact-grid { grid-template-columns: 1fr; }
    .field-row { grid-template-columns: 1fr; }
  }

  @media (max-width: 480px) {
    nav { padding: 0.85rem 1.25rem; }
    .hero-h1 { font-size: 1.85rem; }
    .portfolio-grid { grid-template-columns: 1fr; }
  }
