:root {
  --ink: #111318;
  --ink-soft: #23262d;
  --paper: #f3efe7;
  --paper-bright: #fffdf8;
  --muted: #746f68;
  --line: #d7d0c5;
  --red: #d92f38;
  --red-dark: #ad1e28;
  --navy: #162434;
  --max: 1240px;
  --shadow: 0 24px 70px rgba(17, 19, 24, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
svg { width: 1.2em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
address { font-style: normal; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: white;
  background: var(--red);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  min-height: 86px;
  padding: 0 clamp(22px, 4vw, 70px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  background: var(--paper-bright);
  border-bottom: 1px solid rgba(17, 19, 24, 0.12);
  position: relative;
  z-index: 20;
}
.brand {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.brand-mark {
  width: 44px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  color: var(--paper-bright);
  background: var(--ink);
  border-radius: 50%;
}
.brand-mark span { z-index: 1; font: 800 21px/1 Georgia, serif; }
.brand-mark i { position: absolute; right: 0; inset-block: 0; width: 8px; background: var(--red); transform: skewX(-12deg); }
.brand-copy { display: grid; line-height: 0.95; text-transform: uppercase; letter-spacing: 0.1em; }
.brand-copy strong { font-size: 16px; }
.brand-copy small { color: var(--red); font-size: 10px; font-weight: 800; letter-spacing: 0.3em; margin-top: 5px; }
.desktop-nav { display: flex; align-items: center; gap: clamp(24px, 3vw, 44px); }
.desktop-nav a {
  position: relative;
  padding: 31px 0 27px;
  color: #46484e;
  text-decoration: none;
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 20px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 180ms ease;
}
.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after { transform: scaleX(1); }
.header-call { justify-self: end; display: inline-flex; align-items: center; gap: 9px; color: var(--ink); text-decoration: none; font-weight: 800; }
.header-call svg { color: var(--red); }
.mobile-nav { display: none; }

.section { width: min(var(--max), calc(100% - 44px)); margin-inline: auto; }
.eyebrow {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.24em;
}
.eyebrow.light { color: #ff8990; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid transparent;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
  font-weight: 850;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--red); }
.button-primary:hover { background: var(--red-dark); }
.button-glass { color: white; border-color: rgba(255,255,255,.45); background: rgba(20,22,26,.25); backdrop-filter: blur(10px); }
.button-glass:hover { background: white; color: var(--ink); }
.button-outline { color: white; border-color: rgba(255,255,255,.35); }
.button-dark { color: white; background: var(--ink); }
.button svg { width: 18px; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 800; text-underline-offset: 5px; }

.hero {
  min-height: min(790px, calc(100vh - 86px));
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
  background: var(--ink);
}
.hero-picture,
.hero-picture img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-picture img { object-fit: cover; object-position: center 55%; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,12,16,.94) 0%, rgba(10,12,16,.73) 42%, rgba(10,12,16,.16) 76%), linear-gradient(0deg, rgba(10,12,16,.55), transparent 50%); }
.hero-content { position: relative; z-index: 2; width: min(700px, calc(100% - 44px)); margin: 0 0 clamp(130px, 16vh, 180px) max(22px, calc((100vw - var(--max)) / 2)); }
.hero h1 {
  margin: 0;
  max-width: 660px;
  font: 800 clamp(68px, 9vw, 132px)/0.82 Georgia, "Times New Roman", serif;
  letter-spacing: -0.075em;
}
.hero h1 span { display: block; color: var(--paper-bright); }
.hero h1::after { content: "."; color: var(--red); }
.hero-lead { max-width: 590px; margin: 34px 0 32px; color: rgba(255,255,255,.82); font-size: clamp(16px, 1.5vw, 20px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-location {
  position: absolute;
  z-index: 3;
  right: max(22px, calc((100vw - var(--max)) / 2));
  bottom: 34px;
  min-width: 330px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  color: white;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(12,14,18,.64);
  backdrop-filter: blur(12px);
}
.hero-location > svg:first-child { color: #ff727c; width: 24px; }
.hero-location > svg:last-child { width: 18px; }
.hero-location span { font-weight: 800; line-height: 1.25; }
.hero-location small { display: block; margin-top: 3px; color: rgba(255,255,255,.65); font-size: 12px; font-weight: 600; }
.hero-index { position: absolute; z-index: 2; top: 28px; right: 34px; display: grid; color: rgba(255,255,255,.82); font: 700 15px/1 monospace; }
.hero-index span { color: rgba(255,255,255,.4); font-size: 10px; padding-top: 5px; border-top: 1px solid rgba(255,255,255,.4); }

.intro {
  padding-block: clamp(90px, 12vw, 160px);
  display: grid;
  grid-template-columns: .75fr 1.8fr .8fr;
  gap: clamp(32px, 6vw, 90px);
  align-items: start;
}
.section-kicker { display: flex; align-items: center; gap: 14px; }
.section-kicker > span { color: var(--muted); font: 700 11px/1 monospace; }
.section-kicker .eyebrow { margin: 0; }
.intro-copy h2,
.access h2,
.contact-details h2,
.gallery-cta h2 {
  margin: 0 0 28px;
  font: 750 clamp(40px, 5.5vw, 72px)/.98 Georgia, serif;
  letter-spacing: -.045em;
}
.intro-copy > p { max-width: 710px; color: #4c4a47; font-size: 18px; }
.intro-copy .text-link { margin-top: 18px; }
.intro-note { padding: 24px 0 0 24px; border-left: 3px solid var(--red); }
.intro-note strong { display: block; margin-bottom: 8px; text-transform: uppercase; letter-spacing: .12em; font-size: 12px; }
.intro-note span { color: var(--muted); font-size: 14px; }

.gallery-teaser { padding-block: 100px; color: white; background: var(--ink); overflow: hidden; }
.gallery-heading { display: flex; justify-content: space-between; align-items: end; margin-bottom: 48px; }
.gallery-heading h2 { margin: 0; font: 750 clamp(48px, 6vw, 82px)/.9 Georgia, serif; letter-spacing: -.05em; }
.teaser-grid { width: min(1480px, calc(100% - 44px)); margin-inline: auto; display: grid; grid-template-columns: 1.15fr .85fr 1fr 1.2fr; gap: 12px; align-items: stretch; }
.teaser-item { margin: 0; position: relative; min-height: 440px; overflow: hidden; background: var(--ink-soft); }
.teaser-item picture,
.teaser-item img { width: 100%; height: 100%; }
.teaser-item img { object-fit: cover; transition: transform 500ms ease; }
.teaser-item:hover img { transform: scale(1.035); }
.teaser-2,
.teaser-4 { margin-top: 70px; min-height: 370px; }
.teaser-item figcaption { position: absolute; left: 14px; bottom: 12px; width: 34px; height: 34px; display: grid; place-items: center; background: var(--red); font: 700 11px/1 monospace; }

.access { padding-block: clamp(80px, 10vw, 135px); display: grid; grid-template-columns: .9fr 1.35fr; gap: clamp(44px, 7vw, 100px); align-items: center; }
.access-copy > p:not(.eyebrow) { color: var(--muted); font-size: 17px; }
.contact-rows { margin: 34px 0; border-top: 1px solid var(--line); }
.contact-row { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 16px; padding: 20px 0; text-decoration: none; border-bottom: 1px solid var(--line); }
.row-icon { width: 42px; height: 42px; display: grid; place-items: center; color: white; background: var(--red); border-radius: 50%; }
.row-icon svg { width: 20px; }
.contact-row > svg { width: 18px; transition: transform 180ms ease; }
.contact-row:hover > svg { transform: translateX(5px); }
.contact-row small { display: block; color: var(--muted); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .16em; }
.contact-row strong { font-size: 15px; }
.map-frame { min-height: 560px; box-shadow: var(--shadow); overflow: hidden; background: #ddd5ca; }
.map-frame iframe { width: 100%; height: 100%; min-height: 560px; display: block; filter: saturate(.7) contrast(1.04); }

.page-hero { padding: clamp(80px, 11vw, 140px) max(22px, calc((100vw - var(--max)) / 2)); color: white; background: var(--ink); position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; top: -150px; right: -80px; width: 520px; height: 520px; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.02); }
.page-hero h1 { position: relative; z-index: 1; margin: 0; font: 800 clamp(76px, 11vw, 156px)/.8 Georgia, serif; letter-spacing: -.075em; }
.page-hero h1::after { content: "."; color: var(--red); }
.page-hero > p:last-child { max-width: 600px; margin: 38px 0 0; color: rgba(255,255,255,.68); font-size: 18px; }

.masonry-gallery { padding-block: 80px 120px; display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.gallery-card { grid-column: span 6; margin: 0; background: var(--paper-bright); box-shadow: 0 15px 38px rgba(17,19,24,.08); }
.gallery-card:nth-child(5n + 2),
.gallery-card:nth-child(5n + 5) { grid-column: span 5; }
.gallery-card:nth-child(5n + 3),
.gallery-card:nth-child(5n + 4) { grid-column: span 7; }
.gallery-card picture { display: block; aspect-ratio: 16/10; overflow: hidden; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 420ms ease; }
.gallery-card:hover img { transform: scale(1.025); }
.gallery-card figcaption { min-height: 66px; display: flex; align-items: center; gap: 15px; padding: 14px 18px; color: var(--muted); font-size: 13px; }
.gallery-card figcaption span { color: var(--red); font: 800 11px/1 monospace; }
.gallery-cta { margin-bottom: 110px; padding: clamp(40px, 6vw, 70px); display: flex; justify-content: space-between; align-items: center; gap: 30px; color: white; background: var(--navy); }
.gallery-cta h2 { max-width: 680px; margin-bottom: 0; }

.contact-hero { min-height: 590px; display: grid; grid-template-columns: .85fr 1.15fr; color: white; background: var(--ink); }
.contact-hero-copy { padding: clamp(70px, 8vw, 120px) clamp(22px, 7vw, 100px); display: flex; flex-direction: column; justify-content: center; }
.contact-hero h1 { margin: 0; font: 750 clamp(52px, 6.4vw, 92px)/.92 Georgia, serif; letter-spacing: -.055em; }
.contact-hero-copy > p:not(.eyebrow) { max-width: 560px; margin: 30px 0; color: rgba(255,255,255,.68); font-size: 17px; }
.contact-hero-copy .button { align-self: flex-start; }
.contact-hero-picture,
.contact-hero-picture img { width: 100%; height: 100%; min-height: 590px; }
.contact-hero-picture img { object-fit: cover; }
.contact-layout { padding-block: clamp(80px, 10vw, 130px); display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(45px, 7vw, 100px); align-items: start; }
.contact-details h2 { margin-top: 40px; }
.contact-map,
.contact-map iframe { min-height: 640px; }
.contact-help { margin-top: 28px; color: var(--muted); font-size: 13px; }

.not-found { min-height: 690px; display: grid; place-items: center; position: relative; overflow: hidden; background: var(--paper); }
.not-found-number { position: absolute; color: rgba(17,19,24,.055); font: 800 clamp(250px, 45vw, 680px)/.7 Georgia, serif; letter-spacing: -.1em; }
.not-found-card { position: relative; z-index: 1; width: min(580px, calc(100% - 44px)); padding: 55px; text-align: center; background: var(--paper-bright); box-shadow: var(--shadow); }
.not-found-card .brand-mark { margin: 0 auto 24px; }
.not-found-card h1 { margin: 0 0 18px; font: 750 clamp(44px, 7vw, 70px)/1 Georgia, serif; letter-spacing: -.05em; }
.not-found-card p:not(.eyebrow) { color: var(--muted); margin-bottom: 28px; }

.site-footer { padding: 60px max(22px, calc((100vw - var(--max)) / 2)) 24px; color: white; background: #0b0d11; }
.footer-top { display: flex; justify-content: space-between; align-items: center; padding-bottom: 38px; border-bottom: 1px solid rgba(255,255,255,.13); }
.footer-top p { color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .18em; font-size: 10px; }
.footer-brand .brand-mark { color: var(--ink); background: var(--paper-bright); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; padding-block: 46px; }
.footer-grid small { display: block; margin-bottom: 10px; color: #ff727c; font-size: 10px; text-transform: uppercase; letter-spacing: .18em; }
.footer-grid a { text-underline-offset: 5px; }
.footer-bottom { padding-top: 20px; border-top: 1px solid rgba(255,255,255,.13); display: flex; justify-content: space-between; color: rgba(255,255,255,.45); font-size: 12px; }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto auto; gap: 16px; }
  .desktop-nav { display: none; }
  .mobile-nav { display: block; position: relative; }
  .mobile-nav summary { width: 44px; height: 44px; display: grid; place-content: center; gap: 5px; cursor: pointer; list-style: none; }
  .mobile-nav summary::-webkit-details-marker { display: none; }
  .mobile-nav summary span { width: 22px; height: 2px; background: var(--ink); }
  .mobile-nav nav { position: absolute; top: 55px; right: -8px; width: min(310px, calc(100vw - 30px)); padding: 18px; display: grid; background: var(--paper-bright); box-shadow: var(--shadow); }
  .mobile-nav nav a { padding: 13px 10px; text-decoration: none; border-bottom: 1px solid var(--line); font-weight: 750; }
  .header-call { grid-column: 2; grid-row: 1; }
  .mobile-nav { grid-column: 3; grid-row: 1; }
  .hero-content { margin-left: 34px; }
  .intro { grid-template-columns: 1fr 2fr; }
  .intro-note { grid-column: 2; }
  .teaser-grid { grid-template-columns: repeat(2, 1fr); }
  .teaser-item { min-height: 380px; margin: 0; }
  .access,
  .contact-layout { grid-template-columns: 1fr; }
  .contact-hero { grid-template-columns: 1fr; }
  .contact-hero-picture,
  .contact-hero-picture img { min-height: 440px; }
  .contact-hero-picture { order: -1; }
}

@media (max-width: 700px) {
  .site-header { min-height: 74px; padding-inline: 16px; }
  .brand-mark { width: 40px; }
  .brand-copy strong { font-size: 14px; }
  .header-call span { display: none; }
  .hero { min-height: calc(100svh - 74px); }
  .hero-overlay { background: linear-gradient(0deg, rgba(9,11,15,.95) 0%, rgba(9,11,15,.55) 70%, rgba(9,11,15,.15)); }
  .hero-content { width: calc(100% - 36px); margin: 0 18px 188px; }
  .hero h1 { font-size: clamp(60px, 20vw, 92px); }
  .hero-lead { margin-block: 24px; font-size: 15px; }
  .hero-actions { display: grid; }
  .hero-location { inset: auto 18px 22px; min-width: 0; }
  .hero-index { display: none; }
  .section { width: min(100% - 36px, var(--max)); }
  .intro { padding-block: 75px; grid-template-columns: 1fr; }
  .intro-note { grid-column: auto; }
  .intro-copy h2,
  .access h2,
  .contact-details h2,
  .gallery-cta h2 { font-size: clamp(38px, 12vw, 56px); }
  .gallery-teaser { padding-block: 75px; }
  .gallery-heading { align-items: start; gap: 26px; flex-direction: column; }
  .teaser-grid { width: calc(100% - 24px); grid-template-columns: 1fr; }
  .teaser-item { min-height: 320px; }
  .teaser-2,
  .teaser-4 { margin-left: 34px; }
  .access { padding-block: 75px; }
  .map-frame,
  .map-frame iframe { min-height: 440px; }
  .page-hero { padding-block: 75px; }
  .page-hero h1 { font-size: clamp(70px, 25vw, 105px); }
  .masonry-gallery { padding-block: 50px 75px; grid-template-columns: 1fr; }
  .gallery-card,
  .gallery-card:nth-child(n) { grid-column: 1; }
  .gallery-card figcaption { font-size: 12px; }
  .gallery-cta { margin-bottom: 70px; align-items: stretch; flex-direction: column; }
  .contact-hero-picture,
  .contact-hero-picture img { min-height: 320px; }
  .contact-hero-copy { padding: 60px 18px; }
  .contact-hero h1 { font-size: clamp(48px, 14vw, 70px); }
  .contact-layout { padding-block: 70px; }
  .contact-map,
  .contact-map iframe { min-height: 480px; }
  .footer-top { align-items: start; gap: 28px; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { gap: 15px; flex-direction: column; }
  .not-found-card { padding: 42px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}

:focus-visible { outline: 3px solid #ff7a83; outline-offset: 4px; }
