 :root {
     --paper: #f4efe3;
     --paper-deep: #ebe1cf;
     --ink: #2b2721;
     --muted: #51483d;
     --line: #d7cbb7;
     --green: #284733;
     --green-soft: #e3eadf;
     --red: #7f2f24;
     --white: #fffaf0;
     --shadow: 0 22px 55px rgba(55, 43, 28, 0.12);
     --radius: 24px;
 }

 * {
     box-sizing: border-box;
 }

 html {
     scroll-behavior: smooth;
 }

 body {
     margin: 0;
     color: var(--ink);
     font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
     background:
         radial-gradient(circle at top left, rgba(127, 47, 36, 0.12), transparent 30rem),
         linear-gradient(180deg, var(--paper), #faf6ec 48%, var(--paper));
     line-height: 1.65;
     font-weight: 450;
     -webkit-font-smoothing: antialiased;
     text-rendering: optimizeLegibility;
 }

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

 a {
     color: var(--red);
 }

 .site-wrap {
     max-width: 1120px;
     margin: 0 auto;
     padding: 38px 20px 60px;
     counter-reset: photo;
 }

 .hero {
     display: grid;
     grid-template-columns: minmax(0, 1.02fr) minmax(280px, 0.78fr);
     gap: clamp(24px, 4vw, 58px);
     align-items: center;
     padding: clamp(28px, 5vw, 68px);
     border: 1px solid var(--line);
     border-radius: calc(var(--radius) + 12px);
     background: rgba(255, 250, 240, 0.82);
     box-shadow: var(--shadow);
 }

 .kicker {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     margin-bottom: 20px;
     padding: 6px 12px;
     border: 1px solid rgba(40, 71, 51, 0.20);
     border-radius: 999px;
     background: var(--green-soft);
     color: var(--green);
     font-size: 0.9rem;
     font-weight: 700;
     letter-spacing: 0.025em;
 }

 .kicker::before {
     content: "";
     width: 8px;
     height: 8px;
     border-radius: 50%;
     background: var(--green);
 }

 h1,
 h2,
 h3 {
     font-family: Georgia, "Times New Roman", serif;
     line-height: 1.05;
     font-weight: 500;
 }

 h1 {
     margin: 0;
     font-size: clamp(3.2rem, 8vw, 6.8rem);
     letter-spacing: -0.065em;
 }

 .subtitle {
     margin: 22px 0 0;
     max-width: 650px;
     font-size: clamp(1.18rem, 2vw, 1.48rem);
     color: var(--muted);
 }

 .intro {
     margin-top: 24px;
     max-width: 690px;
     font-size: 1.08rem;
 }

 .hero-card {
     padding: 14px;
     border: 1px solid var(--line);
     border-radius: 18px;
     background: var(--white);
     transform: rotate(1deg);
     box-shadow: 0 18px 30px rgba(55, 43, 28, 0.10);
 }

 .hero-card img {
     border-radius: 10px;
 }

 figcaption {
     margin-top: 10px;
     color: #51483d;
     font-size: 0.86rem;
     line-height: 1.4;
 }

 section {
     margin-top: clamp(46px, 7vw, 92px);
 }

 .section-head {
     display: grid;
     grid-template-columns: 165px minmax(0, 1fr);
     gap: 28px;
     align-items: start;
     margin-bottom: 26px;
     padding-top: 24px;
     border-top: 1px solid var(--line);
 }

 .date-note {
     color: var(--red);
     font-weight: 750;
     letter-spacing: 0.08em;
     text-transform: uppercase;
     font-size: 0.78rem;
 }

 h2 {
     margin: 0 0 14px;
     font-size: clamp(2.1rem, 4vw, 3.4rem);
     letter-spacing: -0.035em;
 }

 .section-head p {
     margin: 0;
     max-width: 760px;
     font-size: 1.05rem;
 }

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

 .gallery.two {
     grid-template-columns: repeat(2, minmax(0, 1fr));
 }

 .photo {
     position: relative;
     margin: 0;
     padding: 12px;
     border: 1px solid var(--line);
     border-radius: 18px;
     background: rgba(255, 250, 240, 0.95);
     box-shadow: 0 12px 24px rgba(55, 43, 28, 0.08);
 }

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

 .photo img {
     width: 100%;
     aspect-ratio: 4 / 3;
     object-fit: cover;
     border-radius: 10px;
     background: var(--paper-deep);
     filter: sepia(0.12) saturate(0.92) contrast(0.98);
     transition: filter 260ms ease, transform 260ms ease;
 }

 .photo a:hover img,
 .photo a:focus-visible img {
     filter: sepia(0) saturate(1.05) contrast(1.02);
     transform: scale(1.012);
 }

 .photo.tall img {
     aspect-ratio: 3 / 3.2;
 }

 .photo.wide img {
     aspect-ratio: 16 / 9;
 }

 .note-panel {
     margin-top: 40px;
     padding: clamp(28px, 5vw, 52px);
     border: 1px solid rgba(40, 71, 51, 0.22);
     border-radius: calc(var(--radius) + 6px);
     background: linear-gradient(135deg, var(--green-soft), rgba(255, 250, 240, 0.92));
 }

 .note-panel h2 {
     color: var(--green);
 }

 .contact-box {
     margin-top: 24px;
     padding: 20px;
     border-radius: 18px;
     background: var(--white);
     border: 1px solid var(--line);
     display: inline-block;
     font-size: 1.12rem;
 }


 .contact-box a {
     font-weight: 400;
     text-decoration-thickness: 0.08em;
     text-underline-offset: 0.14em;
 }

 .contact-role {
     display: inline-block;
     margin-top: 0.35rem;
     font-size: 0.92rem;
     color: var(--muted);
 }

 .contact-name {
     display: inline-block;
     margin-top: 0.15rem;
     font-weight: 500;
 }

 .contact-email {
     display: inline-block;
     margin-top: 0.35rem;
     font-weight: 400;
 }

 .final-gallery {
     margin-top: 28px;
     display: grid;
     grid-template-columns: 0.9fr 1.1fr;
     gap: 18px;
     align-items: stretch;
 }

 .footer {
     margin-top: 60px;
     padding-top: 30px;
     border-top: 1px solid var(--line);
     display: grid;
     gap: 8px;
     color: var(--muted);
     text-align: center;
     font-size: 0.95rem;
 }

 .footer-title {
     font-family: Georgia, "Times New Roman", serif;
     color: var(--ink);
     font-size: 1.28rem;
     line-height: 1.2;
 }


 .footer-entity {
     margin: -2px 0 0;
     font-size: 0.86rem;
     line-height: 1.35;
 }

 .footer-note {
     margin: 0;
     font-style: italic;
 }

 .footer-meta {
     margin: 8px 0 0;
     font-size: 0.82rem;
     letter-spacing: 0.04em;
 }

 .small-caps {
     font-weight: 750;
     letter-spacing: 0.08em;
     text-transform: uppercase;
     font-size: 0.78rem;
 }


 .photo a[data-lightbox] {
     position: relative;
     cursor: zoom-in;
 }

 .photo a[data-lightbox]::after {
     content: "Click to enlarge";
     position: absolute;
     right: 10px;
     bottom: 10px;
     padding: 4px 8px;
     border-radius: 999px;
     background: rgba(43, 39, 33, 0.72);
     color: #fffaf0;
     font-size: 0.72rem;
     letter-spacing: 0.02em;
     opacity: 0;
     transform: translateY(4px);
     transition: opacity 180ms ease, transform 180ms ease;
     pointer-events: none;
 }

 .photo a[data-lightbox]:hover::after,
 .photo a[data-lightbox]:focus-visible::after {
     opacity: 1;
     transform: translateY(0);
 }

 .lightbox {
     position: fixed;
     inset: 0;
     z-index: 999;
     display: grid;
     place-items: center;
     padding: 22px;
     background: rgba(27, 22, 18, 0.82);
     backdrop-filter: blur(4px);
     opacity: 0;
     pointer-events: none;
     transition: opacity 180ms ease;
 }

 .lightbox.is-open {
     opacity: 1;
     pointer-events: auto;
 }

 .lightbox-panel {
     width: min(1040px, 100%);
     max-height: calc(100vh - 44px);
     display: grid;
     gap: 12px;
     padding: clamp(12px, 2vw, 20px);
     border: 1px solid rgba(244, 239, 227, 0.28);
     border-radius: 22px;
     background: var(--white);
     box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
     transform: scale(0.985);
     transition: transform 180ms ease;
 }

 .lightbox.is-open .lightbox-panel {
     transform: scale(1);
 }

 .lightbox img {
     width: 100%;
     max-height: calc(100vh - 190px);
     object-fit: contain;
     border-radius: 12px;
     background: var(--paper-deep);
 }

 .lightbox-caption {
     margin: 0;
     color: #51483d;
     font-size: 0.98rem;
     line-height: 1.45;
 }

 .lightbox-close {
     justify-self: end;
     appearance: none;
     border: 1px solid var(--line);
     border-radius: 999px;
     padding: 8px 13px;
     background: var(--paper);
     color: var(--ink);
     font: inherit;
     font-weight: 700;
     cursor: pointer;
 }

 .lightbox-close:hover,
 .lightbox-close:focus-visible {
     outline: none;
     border-color: rgba(127, 47, 36, 0.45);
     color: var(--red);
 }


 @media (max-width: 860px) {

     .hero,
     .section-head,
     .final-gallery {
         grid-template-columns: 1fr;
     }

     .gallery,
     .gallery.two {
         grid-template-columns: repeat(2, minmax(0, 1fr));
     }

     .hero-card {
         transform: none;
     }
 }

 @media (max-width: 560px) {
     .site-wrap {
         padding: 16px 12px 36px;
     }

     .hero {
         padding: 26px 18px;
     }

     .gallery,
     .gallery.two {
         grid-template-columns: 1fr;
     }

     .photo img {
         aspect-ratio: auto;
     }

     h1 {
         font-size: 3.05rem;
     }

     body {
         font-size: 1.04rem;
         line-height: 1.7;
     }

     .subtitle {
         color: #443c33;
     }

     .intro,
     .section-head p {
         font-size: 1.1rem;
     }

     figcaption {
         color: #4b4237;
         font-size: 0.92rem;
     }

     .contact-box {
         font-size: 1.08rem;
     }
 }