:root {
      --paper: #eee3d0;
      --paper-light: #f8efe0;
      --paper-deep: #d4c0a0;
      --sky: #899077;
      --sky-light: #bcc1aa;
      --sky-deep: #59634a;
      --ink: #3d362e;
      --muted-ink: #6d6258;
      --rust: #8d5b48;
      --olive: #596146;
      --olive-dark: #3f4733;
      --tan: #bca27d;
      --line: rgba(76, 61, 48, 0.25);
      --shadow: 0 20px 50px rgba(55, 44, 34, 0.15);
      --soft-shadow: 0 12px 28px rgba(55, 44, 34, 0.12);
      --script: "Allura", "Snell Roundhand", "Segoe Script", cursive;
      --serif: "Cormorant Garamond", Georgia, serif;
      --sans: "Montserrat", Arial, sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--ink);
      background:
        radial-gradient(circle at 16% 8%, rgba(255,255,255,.5), transparent 22rem),
        radial-gradient(circle at 88% 74%, rgba(126,165,185,.16), transparent 28rem),
        linear-gradient(180deg, var(--paper-light), var(--paper));
      font-family: var(--serif);
      font-size: 18px;
      line-height: 1.55;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: 0.18;
      z-index: 100;
      background-image:
        repeating-linear-gradient(
          0deg,
          rgba(79, 61, 46, 0.035) 0,
          rgba(79, 61, 46, 0.035) 1px,
          transparent 1px,
          transparent 4px
        ),
        repeating-linear-gradient(
          90deg,
          rgba(255, 255, 255, 0.05) 0,
          rgba(255, 255, 255, 0.05) 1px,
          transparent 1px,
          transparent 7px
        );
      mix-blend-mode: multiply;
    }

    a {
      color: inherit;
    }

    img {
      display: block;
      max-width: 100%;
    }

    button,
    input,
    textarea,
    select {
      font: inherit;
    }

    .container {
      width: min(1160px, calc(100% - 40px));
      margin-inline: auto;
    }

    .eyebrow {
      margin: 0;
      font-family: var(--sans);
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

    .script-title {
      margin: 0;
      color: var(--sky-deep);
      font-family: var(--script);
      font-size: clamp(3.2rem, 7vw, 5.9rem);
      font-weight: 400;
      line-height: 0.9;
    }

    .brush-rule {
      width: 250px;
      height: 18px;
      margin: 18px 0 22px;
      position: relative;
    }

    .brush-rule::before {
      content: "";
      position: absolute;
      inset: 7px 0 auto;
      height: 3px;
      background: linear-gradient(
        90deg,
        transparent,
        var(--rust) 8%,
        var(--rust) 88%,
        transparent
      );
      transform: rotate(-1.5deg);
      border-radius: 100%;
    }

    .brush-rule::after {
      content: "❧";
      position: absolute;
      left: 50%;
      top: -9px;
      transform: translateX(-50%);
      padding: 0 10px;
      color: var(--rust);
      background: var(--paper-light);
      font-size: 1.2rem;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 50px;
      padding: 0 26px;
      border: 1px solid transparent;
      text-decoration: none;
      font-family: var(--sans);
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      transition:
        transform 160ms ease,
        box-shadow 160ms ease,
        background-color 160ms ease;
    }

    .button:hover {
      transform: translateY(-2px);
      box-shadow: var(--soft-shadow);
    }

    .button-primary {
      color: #fff;
      background: var(--olive);
    }

    .button-primary:hover {
      background: var(--olive-dark);
    }

    .button-secondary {
      color: var(--paper-light);
      background: var(--olive);
    }

    .text-link {
      font-family: var(--sans);
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      text-underline-offset: 5px;
    }

    /* Header */
    .site-header {
      position: relative;
      z-index: 20;
      background: rgba(248, 239, 222, 0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(108, 88, 67, 0.1);
    }

    .header-inner {
      min-height: 124px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 10px;
      min-width: 350px;
      text-decoration: none;
    }

    .brand img {
      width: 52px;
      height: 88px;
      object-fit: contain;
    }

    .brand-copy {
      display: grid;
      align-items: center;
    }

    .brand-name {
      color: var(--rust);
      font-family: var(--script);
      font-size: clamp(2.25rem, 4vw, 3.45rem);
      line-height: 0.86;
      white-space: nowrap;
    }

    .brand-flourish {
      width: 210px;
      height: 16px;
      margin-top: 9px;
      border-top: 2px solid rgba(138, 90, 71, 0.8);
      transform: rotate(-2deg);
      position: relative;
    }

    .brand-flourish::before,
    .brand-flourish::after {
      content: "";
      position: absolute;
      width: 13px;
      height: 7px;
      border-radius: 100% 0 100% 0;
      background: var(--rust);
      top: -5px;
    }

    .brand-flourish::before {
      left: 42%;
      transform: rotate(-25deg);
    }

    .brand-flourish::after {
      left: 58%;
      transform: rotate(150deg);
    }

    .site-nav {
      display: flex;
      align-items: center;
      gap: clamp(18px, 2.6vw, 38px);
    }

    .site-nav a {
      position: relative;
      text-decoration: none;
      font-family: var(--sans);
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .site-nav a::after {
      content: "";
      position: absolute;
      left: 0;
      right: 100%;
      bottom: -7px;
      height: 2px;
      background: var(--sky-deep);
      transition: right 160ms ease;
    }

    .site-nav a:hover::after,
    .site-nav a[aria-current="page"]::after {
      right: 0;
    }

    .social-links {
      display: flex;
      gap: 10px;
    }

    .social-links a {
      width: 34px;
      aspect-ratio: 1;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: white;
      background: var(--sky-deep);
      text-decoration: none;
      font-family: var(--sans);
      font-size: 0.72rem;
      font-weight: 700;
    }

    .menu-button {
      display: none;
      width: 46px;
      height: 46px;
      border: 0;
      background: transparent;
      cursor: pointer;
    }

    .menu-button span {
      display: block;
      width: 26px;
      height: 2px;
      margin: 6px auto;
      background: var(--ink);
      transition: transform 160ms ease;
    }

    /* Hero */
    .hero {
      position: relative;
      isolation: isolate;
      min-height: 585px;
      display: grid;
      align-items: stretch;
      overflow: hidden;
      background:
        linear-gradient(90deg, rgba(248,239,224,1) 0%, rgba(248,239,224,.19) 34%, rgba(248,239,224,.76) 45%, rgba(248,239,224,.08) 62%, rgba(248,239,224,.02) 100%),
        url("assets/lam-hero-image.png") center right / cover no-repeat;
      background-size: 60%;
      background-position: right;
      clip-path: polygon(
        0 0, 100% 0, 100% 96%, 95% 98%, 89% 96%, 81% 99%,
        72% 96%, 64% 98%, 55% 95%, 47% 99%, 38% 96%, 27% 99%,
        17% 96%, 8% 99%, 0 96%
      );
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background:
        radial-gradient(circle at 15% 42%, rgba(129,168,188,.2), transparent 24rem),
        linear-gradient(180deg, transparent 65%, rgba(75,57,40,.1));
    }

    .hero-content {
      width: min(1160px, calc(100% - 40px));
      margin-inline: auto;
      display: flex;
      align-items: center;
    }

    .hero-copy {
      width: min(480px, 48%);
      padding: 75px 0 108px;
    }

    .hero h1 {
      margin: 8px 0 0;
      font-family: var(--serif);
      font-size: clamp(2.2rem, 4.5vw, 4.15rem);
      font-weight: 600;
      line-height: 0.95;
      letter-spacing: -0.015em;
      text-transform: uppercase;
    }

    .hero h1 span {
      display: block;
      margin-top: 13px;
      color: var(--rust);
      font-family: var(--script);
      font-size: 1.3em;
      font-weight: 400;
      text-transform: none;
    }

    .hero-copy p {
      max-width: 390px;
      margin: 0 0 28px;
      font-size: clamp(1.1rem, 2vw, 1.35rem);
      font-weight: 600;
      line-height: 1.35;
    }

    /* Welcome */
    .welcome {
      position: relative;
      padding: 76px 0 82px;
      text-align: center;
      background:
        radial-gradient(circle at 4% 60%, rgba(126,165,185,.16), transparent 17rem),
        radial-gradient(circle at 96% 24%, rgba(138,90,71,.12), transparent 16rem),
        var(--paper-light);
    }

    .welcome::before,
    .welcome::after {
      content: "";
      position: absolute;
      opacity: 0.33;
      pointer-events: none;
    }

    .welcome::before {
      left: -50px;
      bottom: -15px;
      width: 270px;
      height: 210px;
      background:
        linear-gradient(68deg, transparent 48%, var(--olive) 49% 51%, transparent 52%) 0 0 / 45px 110px,
        radial-gradient(ellipse at center, rgba(87,98,68,.75) 0 28%, transparent 31%) 14px 0 / 58px 85px;
      transform: rotate(-7deg);
    }

    .welcome::after {
      right: -80px;
      bottom: -10px;
      width: 330px;
      height: 250px;
      background:
        linear-gradient(78deg, transparent 48%, var(--rust) 49% 51%, transparent 52%) 0 0 / 50px 120px,
        radial-gradient(ellipse at center, rgba(126,165,185,.72) 0 28%, transparent 31%) 14px 0 / 62px 96px;
      transform: rotate(4deg);
    }

    .welcome-inner {
      position: relative;
      z-index: 2;
      max-width: 760px;
      margin-inline: auto;
    }

    .welcome p {
      margin: 18px auto 18px;
      max-width: 720px;
      font-size: clamp(1.08rem, 2vw, 1.32rem);
    }

    .seal {
      position: absolute;
      left: max(32px, 7vw);
      top: 50%;
      width: 150px;
      aspect-ratio: 1;
      display: grid;
      place-items: center;
      border: 2px solid rgba(89,99,74,.5);
      border-radius: 50%;
      color: var(--olive);
      font-family: var(--sans);
      font-size: 0.67rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-align: center;
      text-transform: uppercase;
      transform: translateY(-50%) rotate(-8deg);
      opacity: 0.74;
    }

    .seal::before {
      content: "✦";
      display: block;
      font-size: 2rem;
      margin-bottom: -20px;
    }

    /* Gallery */
    .featured {
      position: relative;
      padding: 48px 0 64px;
      color: var(--ink);
      background:
        radial-gradient(circle at 10% 15%, rgba(255,255,255,.16), transparent 20rem),
        radial-gradient(circle at 92% 80%, rgba(255,255,255,.14), transparent 18rem),
        linear-gradient(180deg, #b7a98d 0%, #aa9a7e 48%, #b9ac91 100%);
      clip-path: polygon(
        0 2%, 8% 0, 17% 2%, 27% 0, 38% 2%, 47% 0, 57% 2%, 67% 0,
        78% 2%, 88% 0, 100% 2%, 100% 98%, 91% 100%, 80% 98%,
        69% 100%, 58% 98%, 47% 100%, 36% 98%, 25% 100%, 13% 98%, 0 100%
      );
    }

    .featured::before {
      content: "";
      position: absolute;
      inset: 0;
      opacity: .25;
      background-image:
        radial-gradient(circle at 20px 18px, rgba(255,255,255,.6) 0 1px, transparent 2px),
        linear-gradient(115deg, transparent 40%, rgba(78,101,113,.18) 41% 43%, transparent 44%);
      background-size: 46px 38px, 120px 120px;
      mix-blend-mode: soft-light;
      pointer-events: none;
    }

    .featured-inner {
      position: relative;
      z-index: 2;
    }

    .section-heading {
      text-align: center;
    }

    .section-heading .script-title {
      color: var(--olive-dark);
      font-size: clamp(3.1rem, 6vw, 4.8rem);
    }

    .gallery-shell {
      position: relative;
      margin-top: 34px;
    }

    .artwork-track {
      display: flex;
      gap: 23px;
      overflow-x: auto;
      padding: 6px 4px 26px;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
    }

    .artwork-track::-webkit-scrollbar {
      display: none;
    }

    .artwork-track .art-card {
      flex: 0 0 min(285px, 78vw);
      scroll-snap-align: start;
    }

    .art-card {
      position: relative;
      overflow: hidden;
      background: var(--paper-light);
      border: 5px solid rgba(251,244,232,.8);
      box-shadow: var(--soft-shadow);
      transition:
        transform 180ms ease,
        box-shadow 180ms ease;
    }

    .art-card:hover {
      transform: translateY(-6px) rotate(-0.25deg);
      box-shadow: var(--shadow);
    }

    .art-image-wrap {
      position: relative;
      aspect-ratio: 4 / 3.45;
      overflow: hidden;
      background: #c8d4d8;
    }

    .art-image-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 420ms ease;
    }

    .art-card:hover img {
      transform: scale(1.035);
    }

    .sold-ribbon {
      position: absolute;
      inset: 23px -45px auto auto;
      width: 185px;
      padding: 9px 0;
      text-align: center;
      color: white;
      background: var(--rust);
      font-family: var(--sans);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      transform: rotate(39deg);
      box-shadow: 0 4px 12px rgba(64,43,33,.2);
    }

    .art-card-copy {
      min-height: 158px;
      padding: 17px 15px 20px;
      text-align: center;
    }

    .art-card h3 {
      margin: 0;
      font-size: 1.16rem;
      font-weight: 700;
      letter-spacing: 0.02em;
      text-transform: uppercase;
    }

    .art-meta {
      margin: 4px 0 11px;
      color: var(--muted-ink);
      font-size: 0.93rem;
    }

    .gallery-arrow {
      position: absolute;
      top: 42%;
      width: 44px;
      height: 54px;
      border: 0;
      color: white;
      background: rgba(70,78,54,.86);
      cursor: pointer;
      font-size: 1.4rem;
      transition: background 160ms ease;
      z-index: 4;
    }

    .gallery-arrow:hover {
      background: var(--sky-deep);
    }

    .gallery-arrow.previous {
      left: -58px;
    }

    .gallery-arrow.next {
      right: -58px;
    }

    .gallery-cta {
      margin-top: 34px;
      text-align: center;
    }

    /* Values */
    .values {
      position: relative;
      padding: 44px 0 46px;
      background: var(--paper-light);
    }

    .values-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }

    .value {
      display: grid;
      grid-template-columns: 56px 1fr;
      gap: 17px;
      padding: 5px 28px;
      border-right: 1px solid var(--line);
    }

    .value:last-child {
      border-right: 0;
    }

    .value-icon {
      width: 50px;
      height: 50px;
      display: grid;
      place-items: center;
      color: var(--sky-deep);
      background: rgba(126,165,185,.13);
      border-radius: 48% 52% 46% 54%;
      font-size: 1.6rem;
      transform: rotate(-3deg);
    }

    .value h3 {
      margin: 0 0 3px;
      font-family: var(--sans);
      font-size: 0.76rem;
      letter-spacing: 0.07em;
      text-transform: uppercase;
    }

    .value p {
      margin: 0;
      font-size: 0.96rem;
      line-height: 1.25;
    }

    /* About teaser and contact */
    .about {
      padding: 95px 0;
      background:
        linear-gradient(90deg, rgba(243,231,210,.95), rgba(243,231,210,.78)),
        url("assets/artwork-2.jpg") center / cover no-repeat;
    }

    .about-card {
      max-width: 630px;
      padding: 50px;
      background: rgba(251,244,232,.92);
      border: 1px solid rgba(122,96,71,.18);
      box-shadow: var(--shadow);
    }

    .about-card h2 {
      margin: 0;
      color: var(--rust);
      font-family: var(--script);
      font-size: clamp(3.3rem, 6vw, 5rem);
      font-weight: 400;
      line-height: .9;
    }

    .about-card p {
      font-size: 1.15rem;
    }

    .contact {
      padding: 85px 0;
      color: white;
      background:
        linear-gradient(120deg, rgba(55,70,47,.96), rgba(63,80,53,.9)),
        radial-gradient(circle at 80% 30%, rgba(131,169,188,.25), transparent 27rem);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 70px;
      align-items: start;
    }

    .contact h2 {
      margin: 0;
      font-family: var(--script);
      font-size: clamp(3.5rem, 7vw, 5.4rem);
      font-weight: 400;
      line-height: .9;
    }

    .contact p {
      max-width: 520px;
      font-size: 1.16rem;
    }

    .contact-form {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
    }

    .contact-form label {
      display: grid;
      gap: 7px;
      font-family: var(--sans);
      font-size: 0.72rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .contact-form .full {
      grid-column: 1 / -1;
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      border: 1px solid rgba(255,255,255,.28);
      border-radius: 0;
      padding: 13px 14px;
      color: white;
      background: rgba(255,255,255,.08);
      outline: none;
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
      border-color: var(--sky-light);
      background: rgba(255,255,255,.12);
    }

    .contact-form textarea {
      min-height: 135px;
      resize: vertical;
    }

    .site-footer {
      padding: 24px 0;
      color: rgba(255,255,255,.82);
      background: #303829;
      font-family: var(--sans);
      font-size: 0.72rem;
      letter-spacing: 0.04em;
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }

    /* Responsive */
    @media (max-width: 1100px) {
      .brand {
        min-width: auto;
      }

      .site-nav {
        gap: 18px;
      }

      .social-links {
        display: none;
      }

      .seal {
        display: none;
      }

      .gallery-arrow {
        display: none;
      }

      .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 34px 0;
      }

      .value:nth-child(2) {
        border-right: 0;
      }
    }

    @media (max-width: 860px) {
      .header-inner {
        min-height: 96px;
      }

      .brand img {
        width: 38px;
        height: 66px;
      }

      .brand-name {
        font-size: 2.2rem;
      }

      .brand-flourish {
        width: 150px;
      }

      .menu-button {
        display: block;
        position: relative;
        z-index: 31;
      }

      .site-nav {
        position: fixed;
        inset: 0 0 auto;
        min-height: 100vh;
        padding: 140px 32px 50px;
        display: grid;
        align-content: start;
        justify-items: center;
        gap: 28px;
        background: rgba(248,239,222,.98);
        transform: translateY(-110%);
        transition: transform 220ms ease;
        z-index: 30;
      }

      .site-nav.open {
        transform: translateY(0);
      }

      .site-nav a {
        font-size: 0.9rem;
      }

      .hero {
        min-height: 690px;
        background:
          linear-gradient(180deg, rgba(247,238,220,.98) 0%, rgba(247,238,220,.78) 47%, rgba(247,238,220,.05) 76%),
          url("assets/hero-marsh.jpg") 68% center / cover no-repeat;
      }

      .hero-content {
        align-items: flex-start;
      }

      .hero-copy {
        width: 100%;
        max-width: 560px;
        padding-top: 62px;
      }

      .artwork-track {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 18px;
        padding: 0 4px 24px;
      }

      .art-card {
        min-width: min(78vw, 330px);
        scroll-snap-align: center;
      }

      .contact-grid {
        grid-template-columns: 1fr;
        gap: 38px;
      }
    }

    @media (max-width: 620px) {
      body {
        font-size: 16px;
      }

      .container,
      .hero-content {
        width: min(100% - 28px, 1160px);
      }

      .brand-name {
        font-size: 1.75rem;
      }

      .brand-flourish {
        width: 118px;
      }

      .hero {
        min-height: 630px;
      }

      .hero-copy {
        padding-top: 50px;
      }

      .hero h1 {
        font-size: 2.35rem;
      }

      .hero h1 span {
        margin-top: 8px;
        font-size: 1.18em;
      }

      .welcome {
        padding: 60px 0 68px;
      }

      .welcome::before,
      .welcome::after {
        opacity: .16;
      }

      .featured {
        clip-path: none;
      }

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

      .value {
        border-right: 0;
        border-bottom: 1px solid var(--line);
        padding: 18px 8px;
      }

      .value:last-child {
        border-bottom: 0;
      }

      .about {
        padding: 55px 0;
      }

      .about-card {
        padding: 32px 24px;
      }

      .contact-form {
        grid-template-columns: 1fr;
      }

      .contact-form .full {
        grid-column: auto;
      }

      .footer-inner {
        display: grid;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
    }


    body.lightbox-open {
      overflow: hidden;
    }

    .art-image-button {
      display: block;
      width: 100%;
      padding: 0;
      border: 0;
      color: inherit;
      background: transparent;
      cursor: zoom-in;
    }

    button.text-link {
      padding: 0;
      border: 0;
      color: inherit;
      background: transparent;
      cursor: pointer;
    }

    /* Full gallery page */
    .gallery-page-hero {
      position: relative;
      padding: 86px 0 78px;
      text-align: center;
      overflow: hidden;
      background:
        radial-gradient(circle at 12% 20%, rgba(137, 144, 119, 0.24), transparent 18rem),
        radial-gradient(circle at 88% 74%, rgba(141, 91, 72, 0.16), transparent 20rem),
        var(--paper-light);
    }

    .gallery-page-hero::before,
    .gallery-page-hero::after {
      content: "";
      position: absolute;
      width: 280px;
      height: 230px;
      opacity: 0.18;
      pointer-events: none;
    }

    .gallery-page-hero::before {
      left: -85px;
      bottom: -85px;
      background:
        linear-gradient(68deg, transparent 48%, var(--olive) 49% 51%, transparent 52%) 0 0 / 45px 110px,
        radial-gradient(ellipse at center, rgba(87,98,68,.75) 0 28%, transparent 31%) 14px 0 / 58px 85px;
      transform: rotate(-8deg);
    }

    .gallery-page-hero::after {
      right: -80px;
      top: -70px;
      background:
        linear-gradient(78deg, transparent 48%, var(--rust) 49% 51%, transparent 52%) 0 0 / 50px 120px,
        radial-gradient(ellipse at center, rgba(141,91,72,.7) 0 28%, transparent 31%) 14px 0 / 62px 96px;
      transform: rotate(8deg);
    }

    .gallery-page-hero h1 {
      margin: 8px 0 12px;
      color: var(--rust);
      font-family: var(--script);
      font-size: clamp(4.2rem, 10vw, 7.6rem);
      font-weight: 400;
      line-height: .84;
    }

    .gallery-page-hero p:last-child {
      max-width: 690px;
      margin: 0 auto;
      font-size: 1.2rem;
    }

    .gallery-page-section {
      padding: 70px 0 90px;
      background:
        radial-gradient(circle at 8% 28%, rgba(137, 144, 119, 0.1), transparent 22rem),
        linear-gradient(180deg, var(--paper), var(--paper-light));
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 30px;
    }

    .gallery-grid .art-card-copy {
      min-height: 150px;
    }

    .gallery-note {
      max-width: 760px;
      margin: 50px auto 0;
      padding: 25px 30px;
      text-align: center;
      background: rgba(255,255,255,.34);
      border: 1px solid var(--line);
    }

    .gallery-note p {
      margin: 0;
    }

    /* Fullscreen painting viewer */
    .lightbox {
      position: fixed;
      inset: 0;
      z-index: 999;
      display: grid;
      place-items: center;
      padding: 26px;
      background: rgba(25, 27, 22, 0.94);
    }

    .lightbox[hidden] {
      display: none;
    }

    .lightbox-backdrop {
      position: absolute;
      inset: 0;
    }

    .lightbox-panel {
      position: relative;
      z-index: 2;
      width: min(1200px, 100%);
      max-height: calc(100vh - 52px);
      display: grid;
      grid-template-columns: minmax(0, 1fr) 320px;
      overflow: hidden;
      background: var(--paper-light);
      box-shadow: 0 30px 90px rgba(0,0,0,.5);
    }

    .lightbox-image-area {
      min-height: 70vh;
      display: grid;
      place-items: center;
      padding: 28px;
      background:
        radial-gradient(circle at center, rgba(255,255,255,.08), transparent 55%),
        #20241d;
    }

    .lightbox-image {
      width: auto;
      height: auto;
      max-width: 100%;
      max-height: calc(100vh - 108px);
      object-fit: contain;
      box-shadow: 0 16px 45px rgba(0,0,0,.28);
    }

    .lightbox-details {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 42px 34px;
    }

    .lightbox-details h2 {
      margin: 0 0 8px;
      color: var(--rust);
      font-family: var(--script);
      font-size: 3.4rem;
      font-weight: 400;
      line-height: .9;
    }

    .lightbox-meta {
      margin: 0 0 20px;
      color: var(--muted-ink);
    }

    .lightbox-description {
      margin: 0 0 22px;
    }

    .lightbox-status {
      width: fit-content;
      margin: 0 0 24px;
      padding: 7px 11px;
      color: white;
      background: var(--olive);
      font-family: var(--sans);
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .lightbox-status.sold {
      background: var(--rust);
    }

    .lightbox-close,
    .lightbox-navigation {
      position: absolute;
      z-index: 4;
      border: 0;
      color: white;
      background: rgba(44,49,38,.82);
      cursor: pointer;
    }

    .lightbox-close {
      top: 14px;
      right: 14px;
      width: 45px;
      height: 45px;
      border-radius: 50%;
      font-size: 1.6rem;
      line-height: 1;
    }

    .lightbox-navigation {
      top: 50%;
      width: 48px;
      height: 62px;
      transform: translateY(-50%);
      font-size: 1.7rem;
    }

    .lightbox-previous { left: 14px; }
    .lightbox-next { right: 334px; }

    .lightbox-close:hover,
    .lightbox-navigation:hover {
      background: var(--olive-dark);
    }

.about-image img {
  border-radius: 48% 52% 45% 55%;
 background-size: 104%!important;
background: url("assets/Clark-and-Leah.jpeg") no-repeat center center;
}

    @media (max-width: 1100px) {
      .lightbox-panel {
        grid-template-columns: minmax(0, 1fr) 285px;
      }
      .lightbox-next { right: 299px; }
    }

    @media (max-width: 900px) {
      .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .lightbox { padding: 16px; }
      .lightbox-panel {
        max-height: calc(100vh - 32px);
        display: block;
        overflow-y: auto;
      }
      .lightbox-image-area {
        min-height: 0;
        height: 62vh;
      }
      .lightbox-image { max-height: calc(62vh - 46px); }
      .lightbox-details { padding: 28px; }
      .lightbox-navigation { top: 31vh; }
      .lightbox-next { right: 14px; }
    }

    @media (max-width: 620px) {
      .gallery-grid { grid-template-columns: 1fr; }
      .gallery-page-hero { padding: 64px 0 56px; }
      .gallery-page-section { padding: 48px 0 65px; }
      .lightbox { padding: 0; }
      .lightbox-panel {
        min-height: 100vh;
        max-height: 100vh;
      }
      .lightbox-image-area {
        height: 55vh;
        padding: 18px;
      }
      .lightbox-image { max-height: calc(55vh - 36px); }
      .lightbox-details { padding: 24px 22px 34px; }
      .lightbox-details h2 { font-size: 2.8rem; }
      .lightbox-navigation { top: 27.5vh; }
    }

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content {
  padding: 45px;
  background: rgba(251, 244, 232, 0.92);
  border: 1px solid rgba(122, 96, 71, 0.18);
  box-shadow: var(--shadow);
}

.about-content h2 {
  margin: 0 0 20px;
  color: var(--rust);
  font-family: var(--script);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 0.9;
}

.about-content p {
  font-size: 1.15rem;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow);
}

@media (max-width: 800px) {

  .about-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-content {
    padding: 30px;
  }

  .about-image {
    order: -1;
  }

}
