/* ==========================================================================
   Naples Antiques and Estate Services — naplesantiquesllc.com
   All-serif · white/near-black · oxblood accent
   ========================================================================== */

:root {
  --paper: #FFFFFF;
  --mist:  #F5F3F0;
  --ink:   #161412;
  --ink-soft: #6B6560;
  --line:  #E7E3DE;
  --ox:    #6E2F2C;
  --ox-deep: #582320;
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', system-ui, -apple-system, sans-serif;
  --ease:  cubic-bezier(.22, .61, .21, 1);
  --hdr:   67px;   /* sticky header height — heroes pad themselves down by this */
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

::selection { background: var(--ox); color: #fff; }

/* ---------- shared bits ---------- */

.kicker {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ox);
  margin-bottom: 14px;
}
.kicker-light { color: rgba(255,255,255,.75); }

.sec-head h2 {
  font-size: clamp(40px, 7vw, 64px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -.005em;
}
.sec-head h2 em { font-style: italic; font-weight: 400; color: var(--ox); }
.sec-head p {
  margin-top: 18px;
  max-width: 560px;
  color: var(--ink-soft);
  font-size: clamp(18px, 2.2vw, 21px);
}
.sec-head p a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--ox); transition: color .3s; }
.sec-head p a:hover { color: var(--ox); }

.pill {
  display: inline-block;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 34px;
  border-radius: 999px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s;
  will-change: transform;
}
.pill:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(22,20,18,.16); }
.pill-ink   { background: var(--ink); color: #fff; }
.pill-ox    { background: var(--ox); color: #fff; }
.pill-ox:hover { background: var(--ox-deep); }
.pill-paper { background: #fff; color: var(--ox); }

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* image fade-in when loaded */
.lazyfade { opacity: 0; transition: opacity .8s ease; }
.lazyfade.loaded { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .lazyfade { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ==========================================================================
   MINI HEADER
   ========================================================================== */

.mini {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px clamp(18px, 4vw, 40px);
  margin-bottom: calc(var(--hdr) * -1);   /* let the hero run up underneath it */
  background: rgba(255,255,255,.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background .35s, border-color .35s;
}
/* desktop: the items float over the hero until the page scrolls */
@media (min-width: 760px) {
  .mini { background: transparent; border-bottom-color: transparent; -webkit-backdrop-filter: none; backdrop-filter: none; }
  body.scrolled .mini { background: rgba(255,255,255,.82); border-bottom-color: var(--line); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); }
}

.mini-wm {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1;
}
.mini-wm span {
  display: block;
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: .42em;
  color: var(--ink-soft);
  margin-top: 3px;
}
.mini-nav { display: none; gap: 22px; }
.mini-nav a {
  font-size: 16px;
  text-decoration: none;
  color: var(--ink-soft);
  transition: color .3s;
}
.mini-nav a:hover { color: var(--ox); }

/* dropdown groups in the desktop nav */
.nav-item { position: relative; display: flex; align-items: center; gap: 1px; }
.nav-item.has-sub::after { content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 18px; }   /* hover bridge to the panel */
.sub-toggle {
  background: none; border: 0; padding: 6px 4px; margin: 0; cursor: pointer;
  color: var(--ink-soft); display: inline-flex; align-items: center; transition: color .3s, transform .3s var(--ease);
}
.sub-toggle::before { content: ""; width: 6px; height: 6px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px); }
.nav-item:hover .sub-toggle, .nav-item.open .sub-toggle { color: var(--ox); }
.nav-item.open .sub-toggle { transform: rotate(180deg); }
.sub {
  position: absolute; top: calc(100% + 14px); left: -20px;
  min-width: 250px; padding: 12px 0;
  background: rgba(255,255,255,.97);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(22,20,18,.14);
  display: none; flex-direction: column;
  z-index: 60;
}
.nav-item:hover .sub, .nav-item:focus-within .sub, .nav-item.open .sub { display: flex; }
.mini-nav .sub a { display: block; padding: 8px 22px; font-size: 16px; color: var(--ink); border: 0; }
.mini-nav .sub a:hover { color: var(--ox); background: var(--mist); }
.mini-nav .sub a[aria-current="page"] { color: var(--ox); font-style: italic; }
.mini-cta { padding: 11px 22px; font-size: 13px; }
.mini-wm, .mini-nav .nav-item > a, .mini-cta { white-space: nowrap; }

/* phones: wordmark + CTA + Menu all have to share ~340px */
@media (max-width: 479px) {
  .mini { gap: 10px; }
  .mini-wm { font-size: 13px; letter-spacing: .14em; }
  .mini-wm span { font-size: 7px; letter-spacing: .3em; }
  .mini-cta { padding: 9px 13px; font-size: 11px; letter-spacing: .08em; }
}
@media (max-width: 349px) {
  .mini-cta { display: none; }
}

/* the two-word wordmark needs more room than the old one did: the full nav
   appears from 980px; 760–979px keeps the floating header + Menu button */
@media (min-width: 980px) {
  .mini-nav { display: flex; }
}

/* ==========================================================================
   HERO — “The Table”
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100svh;
  padding-top: var(--hdr);           /* the header floats over this band */
  display: flex;
  flex-direction: column;
  background: var(--mist);
  overflow: hidden;
}

/* watercolor botanical fills */
.flora { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.flora img {
  --fl-op: .5;               /* phones & tablets: more see-through, stays out of the way */
  position: absolute;
  height: auto;
  opacity: var(--fl-op);
  will-change: transform;
  animation: floraIn 1.6s var(--ease) .5s both;
}
@media (min-width: 1180px) {
  .flora img { --fl-op: .78; }   /* desktop: room to let them read fully */
}
@keyframes floraIn {
  from { opacity: 0; }
  to   { opacity: var(--fl-op); }
}
/* Flora layouts — tuned independently per viewport tier.
   Rotations live in data-rot (read by the parallax JS); only
   visibility, size, and position change between tiers. */

/* — phones (<600px): all four, small and ghosted — */
.fl-sprig { width: clamp(58px, 18vw, 78px); left: -12px; top: 36%; transform: rotate(-160deg); }
.fl-tulip { width: clamp(48px, 15vw, 64px); right: -10px; top: 4.5%; transform: rotate(150deg); }
.fl-rose  { width: clamp(84px, 26vw, 110px); left: -18px; top: 75%; transform: rotate(24deg); }
.fl-hyd   { width: clamp(88px, 26vw, 118px); right: -22px; top: 58%; transform: rotate(-22deg); }

/* — large phones / small tablets portrait (600–759px) — */
@media (min-width: 600px) {
  .fl-sprig { width: 86px; left: -14px; top: 33%; }
  .fl-tulip { width: 74px; right: -8px; top: 5%; }
  .fl-rose  { width: 134px; left: -16px; top: 58%; }
  .fl-hyd   { width: 142px; right: -26px; top: 55%; }
}

/* — tablets landscape / small laptops (760–1179px): tulip hangs on the right edge, below the wordmark — */
@media (min-width: 760px) {
  .fl-sprig { width: clamp(70px, 9vw, 110px); left: 0.5vw; top: -2vh; }
  .fl-tulip { width: clamp(64px, 8vw, 84px); right: -6px; top: 3%; }   /* above the S, clear of the stamp */
  .fl-rose  { width: clamp(95px, 12vw, 135px); left: -1.8vw; top: 52%; }
  .fl-hyd   { width: clamp(100px, 12.5vw, 150px); right: -1.5vw; top: 47%; }
}

/* — desktops (1180px+): larger, tulip still on the right edge below the E — */
@media (min-width: 1180px) {
  .fl-sprig { width: clamp(95px, 8vw, 125px); left: 1vw; top: -3vh; }
  .fl-tulip { width: 96px; right: -8px; top: 8%; }
  .fl-rose  { width: clamp(120px, 10.5vw, 160px); left: -1vw; top: 47%; }
  .fl-hyd   { width: clamp(130px, 11vw, 170px); right: -1.2vw; top: 45%; }
}

/* — wide desktops (1500px+): the tulip's top corner is finally clear of the wordmark — */
@media (min-width: 1500px) {
  .fl-tulip { width: 118px; right: 1.5vw; top: -1vh; }
}

/* — scatter set: smaller, fainter blooms sprinkled through the middle and
     bottom of the hero so no band of it sits empty at any size. Percent-based
     positions spread with the hero; visible at every tier. — */
.fl-scatter { --fl-op: .32; }
@media (min-width: 1180px) { .fl-scatter { --fl-op: .48; } }

.fl-s1 { width: clamp(52px, 6.5vw, 88px);  left: 26%; top: 64%; transform: rotate(12deg); }
.fl-s2 { width: clamp(48px, 6.5vw, 92px);  left: 8%;  top: 74%; transform: rotate(24deg) scaleX(-1); }
.fl-s3 { width: clamp(56px, 7vw, 100px);   left: 78%; top: 66%; transform: rotate(-12deg); }
.fl-s4 { width: clamp(64px, 8vw, 110px);   left: 45%; top: 80%; transform: rotate(8deg) scaleX(-1); }
.fl-s5 { width: clamp(46px, 5.5vw, 76px);  left: 62%; top: 66%; transform: rotate(15deg); }
/* phones are already full with the four primaries — drop the two scatter
   flowers that collide with the right-side cluster there */
@media (max-width: 599px) {
  .fl-s3, .fl-s5 { display: none; }
}

/* — very large screens (1680px+): scale the caps up so they don't get lost — */
@media (min-width: 1680px) {
  .fl-sprig { width: 150px; left: 2vw; }
  .fl-tulip { width: 138px; right: 2vw; }
  .fl-rose  { width: 200px; }
  .fl-hyd   { width: 212px; }
}

.hero-word {
  text-align: center;
  font-size: clamp(72px, 21vw, 264px);   /* six letters (NAPLES), sized to span what the old seven did */
  font-weight: 600;
  letter-spacing: .03em;
  line-height: .95;
  margin-top: clamp(30px, 6vh, 64px);
  user-select: none;
  z-index: 1;
  animation: wordIn 1.4s var(--ease) both;
}
/* Outline effect: stroke underneath, background-colored fill layered on top —
   hides the font's overlapping interior contours that raw text-stroke exposes. */
.hw-outline {
  display: inline-block;
  position: relative;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: clamp(2px, .36vw, 5px) var(--ink);
}
.hw-outline::after {
  content: attr(data-t);
  position: absolute;
  inset: 0;
  color: var(--mist);
  -webkit-text-stroke: 0;
  pointer-events: none;
}
.hw-sub {
  display: block;
  font-size: clamp(12px, 1.6vw, 17px);
  font-weight: 500;
  font-style: italic;
  letter-spacing: .3em;
  text-indent: .3em;
  line-height: 1.2;
  color: var(--ink-soft);
  margin-bottom: clamp(8px, 1.4vh, 16px);   /* sits above the wordmark, clear of the collage */
}
@media (min-width: 760px) {
  .hw-sub { letter-spacing: .58em; text-indent: .58em; }
}
@keyframes wordIn {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: none; }
}

/* collage */
.collage {
  position: relative;
  flex: 1;
  min-height: clamp(380px, 48svh, 580px);
  margin-top: 12px;
  z-index: 3;
}
@media (min-width: 760px) {
  .collage { margin-top: clamp(-44px, -3.5vw, -12px); }
}

.ph {
  position: absolute;
  width: clamp(150px, 40vw, 210px);
  will-change: transform;
}
@media (min-width: 760px) {
  .ph { width: clamp(180px, 24vw, 300px); }
}
.ph-in {
  background: #fff;
  padding: 8px 8px 32px;
  box-shadow: 0 16px 44px rgba(22,20,18,.18);
  position: relative;
  animation: phIn 1.1s var(--ease) both;
}
.ph-in img { aspect-ratio: 3 / 4; object-fit: cover; width: 100%; }
.cap {
  position: absolute;
  bottom: 7px; left: 12px;
  font-style: italic;
  font-size: clamp(12px, 1.5vw, 15px);
  color: #8b857f;
}

/* mobile: staggered down the page */
.ph1 { left: 4%; top: 0; transform: rotate(-5deg); }
.ph2 { right: 5%; top: 13%; z-index: 4; transform: rotate(2.5deg); }
.ph3 { left: 24%; top: 44%; transform: rotate(6deg); }

/* desktop: spread across the table */
@media (min-width: 760px) {
  .ph1 { left: clamp(4%, 8vw, 13%); top: 6%; }
  .ph2 { left: 50%; right: auto; margin-left: calc(clamp(180px, 24vw, 300px) / -2); top: 0; }
  .ph3 { left: auto; right: clamp(3%, 7vw, 12%); top: 10%; }
}

/* wide desktops: the percentage/vw-based spread above keeps growing with the
   viewport while the card size caps out, leaving oceans of blank space
   between cards — pin a bigger card size and a fixed gap instead so the
   trio stays a tight, centered cluster no matter how wide the screen gets */
@media (min-width: 1300px) {
  .collage { --ph-w: clamp(300px, 20vw, 360px); --ph-gap: 110px; }
  .ph { width: var(--ph-w); }
  .ph1 { left: calc(50% - var(--ph-w) * 1.5 - var(--ph-gap)); top: 6%; }
  .ph2 { left: 50%; margin-left: calc(var(--ph-w) / -2); top: 0; }
  .ph3 { left: auto; right: calc(50% - var(--ph-w) * 1.5 - var(--ph-gap)); top: 10%; }
}

.ph1 .ph-in { animation-delay: .15s; }
.ph2 .ph-in { animation-delay: .3s; }
.ph3 .ph-in { animation-delay: .45s; }

@keyframes phIn {
  from { opacity: 0; transform: translateY(34px) scale(.96); }
  to   { opacity: 1; transform: none; }
}

/* gentle float layered on the inner element so it never fights parallax */
@media (prefers-reduced-motion: no-preference) {
  .ph1 .ph-in { animation: phIn 1.1s var(--ease) .15s both, float 7s ease-in-out 1.3s infinite; }
  .ph2 .ph-in { animation: phIn 1.1s var(--ease) .3s  both, float 8.2s ease-in-out 1.6s infinite; }
  .ph3 .ph-in { animation: phIn 1.1s var(--ease) .45s both, float 7.6s ease-in-out 1.9s infinite; }
}
@keyframes float {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -10px; }
}

.stamp {
  position: absolute;
  right: 2%;
  top: -3%;
  z-index: 5;
  font-style: italic;
  font-size: clamp(16px, 2.2vw, 22px);
  color: var(--ox);
  transform: rotate(-8deg);
}
@media (min-width: 760px) {
  .stamp { right: 1%; top: -3%; }
}
@media (min-width: 1180px) {
  .stamp { right: clamp(4%, 8vw, 14%); top: -6%; }
}
@media (min-width: 1500px) {
  .stamp { right: 11vw; }
}

.hero-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 0 clamp(18px, 4vw, 40px) clamp(26px, 4vh, 44px);
  z-index: 6;
}
.hero-quote {
  font-style: italic;
  font-size: clamp(19px, 2.6vw, 25px);
  color: #59544f;
  max-width: 420px;
  line-height: 1.4;
}
@media (min-width: 760px) {
  .hero-bottom { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}

/* ==========================================================================
   MARQUEE
   ========================================================================== */

.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  white-space: nowrap;
  padding: 16px 0;
  background: var(--paper);
}
.mq-track { display: inline-flex; }
.mq-track span {
  font-style: italic;
  font-size: clamp(18px, 2.4vw, 24px);
  color: #98928c;
  padding-right: 4px;
}
.mq-track b { color: var(--ox); font-weight: 500; margin: 0 16px; }
@media (prefers-reduced-motion: no-preference) {
  .mq-track { animation: slide 26s linear infinite; }
}
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ==========================================================================
   COLLECTION
   ========================================================================== */

.collection { padding: clamp(72px, 12vw, 140px) clamp(18px, 4vw, 40px); max-width: 1280px; margin: 0 auto; }

.col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 3vw, 44px);
  margin-top: clamp(40px, 6vw, 72px);
}
.col-card { text-decoration: none; display: block; }
.col-card:nth-child(even) { transform: translateY(clamp(20px, 4vw, 56px)); }
.col-card:nth-child(even).reveal { transform: translateY(calc(clamp(20px, 4vw, 56px) + 30px)); }
.col-card:nth-child(even).reveal.in { transform: translateY(clamp(20px, 4vw, 56px)); }

.archive-note {
  margin-top: 16px;
  font-style: italic;
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 520px;
}
.archive-note .ast { color: var(--ox); font-style: normal; }

.col-card figure { position: relative; overflow: hidden; background: var(--mist); }
.cc-tag {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  font-style: italic;
  font-size: 13px;
  color: var(--ink);
  background: rgba(255,255,255,.88);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  padding: 5px 13px;
  border-radius: 999px;
  pointer-events: none;
}
.col-card img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  width: 100%;
  transition: transform 1.1s var(--ease);
}
.col-card:hover img { transform: scale(1.045); }

.cc-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
  transition: border-color .4s;
}
.col-card:hover .cc-row { border-color: var(--ox); }
.col-card h3 { font-size: clamp(20px, 2.6vw, 28px); font-weight: 500; }
.cc-n { font-style: italic; font-size: 15px; color: var(--ox); }
.col-card > p { margin-top: 10px; font-size: clamp(15px, 1.8vw, 17px); color: var(--ink-soft); max-width: 400px; }

.col-closer {
  margin-top: clamp(64px, 10vw, 120px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  text-align: center;
}
.col-closer figure { position: relative; width: clamp(180px, 30vw, 300px); overflow: hidden; box-shadow: 0 18px 48px rgba(22,20,18,.16); transform: rotate(-2.5deg); background:#fff; padding: 8px 8px 30px; }
.col-closer .cc-tag { top: 16px; left: 16px; }
.col-closer img { aspect-ratio: 3/4; object-fit: cover; }
.col-closer p { font-size: clamp(22px, 3.4vw, 34px); max-width: 560px; line-height: 1.3; }
.col-closer em { font-style: italic; color: var(--ox); }

/* ==========================================================================
   THE SPACE
   ========================================================================== */

.space { background: var(--mist); padding: clamp(72px, 12vw, 140px) clamp(18px, 4vw, 40px); }
.space .sec-head, .space-grid { max-width: 1280px; margin-left: auto; margin-right: auto; }

.space-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 2.4vw, 32px);
  margin-top: clamp(40px, 6vw, 72px);
}
.sp { position: relative; overflow: hidden; }
.sp img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 1.2s var(--ease); }
.sp:hover img { transform: scale(1.035); }
.sp-wide { grid-column: 1 / -1; }
.sp-wide img { aspect-ratio: 16 / 8.5; }
.sp figcaption {
  position: absolute;
  left: 14px; bottom: 12px;
  background: rgba(255,255,255,.88);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  font-style: italic;
  font-size: 14px;
  color: var(--ink);
  padding: 6px 14px;
  border-radius: 999px;
}

/* ==========================================================================
   ACQUIRE (oxblood strip)
   ========================================================================== */

.acquire { background: var(--ox); color: #fff; padding: clamp(80px, 13vw, 150px) clamp(18px, 4vw, 40px); }
.acq-in { max-width: 860px; margin: 0 auto; text-align: center; }
.acq-in h2 { font-size: clamp(38px, 6.5vw, 62px); font-weight: 500; line-height: 1.08; }
.acq-in h2 em { font-style: italic; font-weight: 400; }
.acq-in p { margin: 22px auto 0; max-width: 560px; color: rgba(255,255,255,.82); font-size: clamp(18px, 2.2vw, 21px); }
.acq-ctas { margin-top: 36px; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.ghost-light { font-style: italic; font-size: 17px; color: rgba(255,255,255,.85); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.4); padding-bottom: 2px; transition: color .3s, border-color .3s; }
.ghost-light:hover { color: #fff; border-color: #fff; }
@media (min-width: 640px) { .acq-ctas { flex-direction: row; justify-content: center; } }

/* ==========================================================================
   JEWELRY BRANCH — Naples Estate Jewelry
   .nej = the big ink band on the home page (partials/nej-band.html)
   .nej-ribbon = the one-line strip on sell / estate pages (partials/nej-ribbon.html)
   ========================================================================== */

.nej { position: relative; overflow: hidden; background: var(--ink); color: #fff; padding: clamp(120px, 19vw, 280px) clamp(18px, 4vw, 40px) clamp(80px, 11vw, 140px); }
/* outlined word, same stroke-under / fill-over trick as the hero and footer wordmarks */
.nej-word {
  position: absolute; left: 0; right: 0; top: 0;
  text-align: center;
  font-size: clamp(72px, 19.5vw, 300px);
  font-weight: 600;
  letter-spacing: .03em;
  line-height: 1;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,.3);
  transform: translateY(-24%);
  user-select: none;
}
.nej-word::after { content: attr(data-t); position: absolute; inset: 0; color: var(--ink); -webkit-text-stroke: 0; pointer-events: none; }
.nej-in { position: relative; max-width: 1180px; margin: 0 auto; display: grid; gap: clamp(36px, 6vw, 80px); align-items: center; }
@media (min-width: 900px) { .nej-in { grid-template-columns: 1.15fr .85fr; } }
.nej h2 { font-size: clamp(38px, 6vw, 64px); font-weight: 500; line-height: 1.06; margin-top: 14px; }
.nej h2 em { font-style: italic; font-weight: 400; }
.nej-lede { margin-top: 22px; max-width: 560px; font-size: clamp(18px, 2.1vw, 21px); color: rgba(255,255,255,.8); }
.nej-ctas { margin-top: 36px; display: flex; flex-wrap: wrap; align-items: center; gap: 18px 26px; }
.nej .pill-paper, .nej-ribbon .pill-paper { color: var(--ink); }
/* the photo: same white polaroid card + italic caption as the hero collage */
.nej-photo { position: relative; justify-self: center; width: min(100%, 400px); background: #fff; padding: 10px 10px 40px; box-shadow: 0 26px 70px rgba(0,0,0,.55); rotate: 2.5deg; }
.nej-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.nej-photo .cap { bottom: 10px; left: 16px; font-size: 16px; }
@media (min-width: 900px) { .nej-photo { justify-self: end; margin-right: 18px; } }   /* keeps the tilted corner off the page edge */
/* what the branch handles: one wrapped row under both columns */
.nej-list { position: relative; max-width: 1180px; margin: clamp(48px, 7vw, 84px) auto 0; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.18); }
.nej-list ul { list-style: none; margin-top: 16px; display: flex; flex-wrap: wrap; gap: 12px 38px; }
.nej-list li { font-size: clamp(19px, 2.1vw, 22px); line-height: 1.3; padding-left: 28px; position: relative; }
.nej-list li::before { content: "✳"; position: absolute; left: 0; top: 0; color: #C58E89; }   /* oxblood, lifted for contrast on ink */
.nej-same { margin-top: 22px; font-style: italic; font-size: 17px; color: rgba(255,255,255,.7); }

.nej-ribbon { background: var(--ink); color: #fff; padding: 26px clamp(18px, 4vw, 40px); }
.nej-ribbon-in { max-width: 1180px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
@media (min-width: 860px) { .nej-ribbon-in { flex-direction: row; align-items: center; justify-content: space-between; gap: 40px; } }
.nej-ribbon p { font-size: clamp(19px, 2.1vw, 22px); line-height: 1.35; color: rgba(255,255,255,.86); }
.nej-ribbon p b { font-weight: 600; color: #fff; }
.nej-ribbon .pill { white-space: nowrap; }

/* ==========================================================================
   VISIT
   ========================================================================== */

.visit { padding: clamp(72px, 12vw, 140px) clamp(18px, 4vw, 40px); }
.visit-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
}
@media (min-width: 900px) { .visit-grid { grid-template-columns: 1.1fr 1fr; } }

.visit-photo { position: relative; overflow: hidden; }
.visit-photo img { aspect-ratio: 4 / 3.4; object-fit: cover; width: 100%; }
.visit-photo figcaption {
  position: absolute;
  left: 14px; bottom: 12px;
  background: rgba(255,255,255,.88);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  font-style: italic;
  font-size: 14px;
  padding: 6px 14px;
  border-radius: 999px;
}

.vi-list { margin-top: clamp(28px, 4vw, 44px); }
.vi-list > div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.vi-list dt {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--ox);
  padding-top: 6px;
}
.vi-list dd { font-size: clamp(18px, 2.1vw, 21px); line-height: 1.5; }
.vi-list dd em { color: var(--ink-soft); font-size: .9em; }
.vi-list dd a { text-decoration: none; border-bottom: 1px solid var(--ox); transition: color .3s; }
.vi-list dd a:hover { color: var(--ox); }
.vi-ctas { margin-top: 30px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */

.foot { background: var(--ink); color: #B5AFA9; overflow: hidden; padding-bottom: 34px; }
.foot-word {
  position: relative;
  text-align: center;
  font-size: clamp(80px, 23vw, 320px);
  font-weight: 600;
  letter-spacing: .03em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,.14);
  transform: translateY(18%);
  user-select: none;
}
.foot-word::after {
  content: attr(data-t);
  position: absolute;
  inset: 0;
  color: var(--ink);
  -webkit-text-stroke: 0;
  pointer-events: none;
}
.foot-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  text-align: center;
  padding: 10px clamp(18px, 4vw, 40px) 0;
  font-size: 15px;
}
.foot-brand { color: #fff; font-size: 17px; }
.foot-nav { display: flex; gap: 24px; }
.foot-nav a, .foot-sis a { color: #B5AFA9; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.18); transition: color .3s; }
.foot-nav a:hover, .foot-sis a:hover { color: #fff; }
.foot-legal {
  text-align: center;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .06em;
  color: #7A746E;
  margin-top: 34px;
}
@media (min-width: 900px) {
  .foot-row { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* footer link columns (above the wordmark) */
.foot-cols {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 80px) clamp(18px, 4vw, 40px) 8px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px 28px;
}
.foot-col { display: flex; flex-direction: column; gap: 9px; }
.foot-h {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #7A746E;
  margin-bottom: 6px;
}
.foot-col a { color: #B5AFA9; text-decoration: none; font-size: 16px; line-height: 1.35; transition: color .3s; }
.foot-col a:hover { color: #fff; }
.foot-visit address { font-style: normal; color: #B5AFA9; font-size: 16px; line-height: 1.45; }
.foot-hours { color: #7A746E; font-size: 14px; font-style: italic; margin-top: 4px; }
.foot-cols + .foot-word { margin-top: 24px; }

/* ==========================================================================
   INTERIOR PAGES — shared shell for every page that isn't the home hero
   ========================================================================== */

a[href^="tel:"] { white-space: nowrap; }
.mini-nav > .nav-item > a[aria-current="page"] { color: var(--ink); border-bottom: 1px solid var(--ox); }

/* mobile menu toggle (in the header) */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: none;
  border: 0;
  padding: 6px 2px;
  margin-left: 2px;
  cursor: pointer;
}
.nt-bar { display: block; width: 22px; height: 1.5px; background: var(--ink); transition: transform .3s var(--ease); }
.nt-label {
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 2px;
}
body.nav-open .nt-bar:nth-child(1) { transform: translateY(2.75px) rotate(45deg); }
body.nav-open .nt-bar:nth-child(2) { transform: translateY(-2.75px) rotate(-45deg); }
@media (min-width: 980px) { .nav-toggle { display: none; } }

/* mobile menu sheet */
.sheet {
  position: fixed;
  inset: 0;
  z-index: 49;
  background: var(--mist);
  overflow-y: auto;
  padding: 88px clamp(18px, 6vw, 40px) 40px;
}
.sheet[hidden] { display: none; }
.sheet-in { display: flex; flex-direction: column; gap: 28px; max-width: 520px; margin: 0 auto; }
.sheet-group { display: flex; flex-direction: column; }
.sheet-group .kicker { margin-bottom: 8px; }
.sheet-group a {
  font-size: clamp(24px, 6vw, 30px);
  font-weight: 500;
  line-height: 1.35;
  text-decoration: none;
  color: var(--ink);
}
.sheet-group a[aria-current="page"] { color: var(--ox); font-style: italic; }
.sheet-cta { align-self: flex-start; }
.sheet-close {
  display: none;
  position: absolute;
  top: 26px; right: clamp(18px, 4vw, 40px);
  background: none;
  border: 0;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 8px 0;
  transition: color .3s;
}
.sheet-close:hover { color: var(--ox); }
.sheet-close span { font-size: 14px; margin-left: 4px; }
body.nav-open { overflow: hidden; }
/* the sticky header sits above the sheet, so on phones its ✕ closes the menu;
   on desktop the sheet carries its own close button */

/* small layout utilities (keep markup free of inline styles) */
.mt0 { margin-top: 0 !important; }
.mt-sm { margin-top: 8px !important; }
.mt-md { margin-top: 28px !important; }
.flush { margin-top: 0 !important; border-top: 0 !important; padding-top: 0 !important; }
.related .area-list { display: grid; }
@media (min-width: 760px) {
  .sheet { padding: 110px clamp(40px, 8vw, 120px) 64px; }
  .sheet-close { display: block; }
  .sheet-in { max-width: 1180px; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 44px 48px; align-items: start; }
  .sheet-group a { font-size: clamp(24px, 2.4vw, 32px); line-height: 1.3; }
  .sheet-cta { grid-column: 1 / -1; justify-self: start; }
}

/* breadcrumbs */
.crumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: clamp(20px, 3vw, 36px);
}
.crumbs li + li::before { content: "›"; margin-right: 10px; color: #b5afa9; }
.crumbs a { text-decoration: none; color: var(--ink-soft); transition: color .3s; }
.crumbs a:hover { color: var(--ox); }
.crumbs li[aria-current] { color: var(--ox); }

/* page hero: text-led, one framed photo — no collage, no flora */
.page-hero {
  background: var(--mist);
  padding: calc(var(--hdr) + clamp(28px, 5vw, 56px)) clamp(18px, 4vw, 40px) clamp(48px, 8vw, 96px);
}
.page-hero-in {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.page-hero .crumbs { grid-column: 1 / -1; }
.page-hero h1 {
  font-size: clamp(40px, 6.5vw, 72px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.005em;
}
.page-hero h1 em { font-style: italic; font-weight: 400; color: var(--ox); }
.lede { margin-top: 20px; max-width: 600px; color: var(--ink-soft); font-size: clamp(18px, 2.2vw, 22px); line-height: 1.5; }
.page-hero-ctas { margin-top: 30px; display: flex; flex-wrap: wrap; align-items: center; gap: 18px 26px; }
.ghost {
  font-style: italic;
  font-size: 17px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ox);
  padding-bottom: 2px;
  transition: color .3s;
}
.ghost:hover { color: var(--ox); }
.page-hero-art {
  position: relative;
  justify-self: center;
  width: clamp(220px, 34vw, 380px);
  background: #fff;
  padding: 8px 8px 34px;
  box-shadow: 0 18px 48px rgba(22,20,18,.18);
  transform: rotate(-2.5deg);
  animation: phIn 1.1s var(--ease) .2s both;
}
.page-hero-art img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.page-hero-art .cap { bottom: 9px; left: 12px; }
@media (min-width: 900px) {
  .page-hero-in { grid-template-columns: 1.3fr 1fr; }
  .page-hero-plain .page-hero-in { grid-template-columns: 1fr; }
}
@media (max-width: 899px) {
  .page-hero .crumbs { order: -2; }
  .page-hero-art { order: -1; width: clamp(160px, 42vw, 240px); justify-self: start; margin-left: 6px; }
}

/* services sub-navigation strip */
.subnav { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); }
.subnav-in {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px clamp(18px, 4vw, 40px);
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.subnav-in::-webkit-scrollbar { display: none; }
.subnav a {
  flex: 0 0 auto;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px;
  transition: color .3s, border-color .3s, background .3s;
}
.subnav a:hover { color: var(--ox); border-color: var(--ox); }
.subnav a[aria-current="page"] { background: var(--ink); border-color: var(--ink); color: #fff; }

/* generic sections */
.sec { padding: clamp(56px, 9vw, 110px) clamp(18px, 4vw, 40px); }
.sec-mist { background: var(--mist); }
.sec-tight { padding-top: clamp(40px, 6vw, 72px); }
.sec-in { max-width: 1280px; margin: 0 auto; }
.sec-narrow { max-width: 860px; margin: 0 auto; }
.two-col { display: grid; gap: clamp(32px, 6vw, 90px); align-items: start; }
@media (min-width: 900px) {
  .two-col { grid-template-columns: 1fr 1fr; }
  .two-col-wide { grid-template-columns: 1.15fr .85fr; }
  .two-col-narrow { grid-template-columns: .85fr 1.15fr; }
  .two-col .sticky { position: sticky; top: 90px; }
}

/* long-form body copy */
.prose { max-width: 68ch; }
.prose > * + * { margin-top: 1.1em; }
.prose h2 { font-size: clamp(30px, 4.2vw, 44px); font-weight: 500; line-height: 1.1; margin-top: 1.6em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: clamp(22px, 2.8vw, 28px); font-weight: 500; line-height: 1.2; margin-top: 1.5em; }
.prose h2 em, .prose h3 em { font-style: italic; font-weight: 400; color: var(--ox); }
.prose p, .prose li { font-size: clamp(18px, 2vw, 20px); line-height: 1.6; }
.prose .soft { color: var(--ink-soft); }
.prose ul { list-style: none; padding: 0; }
.prose ul li { position: relative; padding-left: 26px; }
.prose ul li + li, .prose ol li + li { margin-top: .5em; }
.prose ul li::before { content: "✳"; position: absolute; left: 0; top: .12em; color: var(--ox); font-size: .85em; }
.prose ol { padding-left: 1.3em; }
.prose a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--ox); transition: color .3s; }
.prose a:hover { color: var(--ox); }
.prose strong { font-weight: 600; }
.prose blockquote {
  font-style: italic;
  font-size: clamp(21px, 2.6vw, 26px);
  color: #59544f;
  border-left: 2px solid var(--ox);
  padding-left: 22px;
  line-height: 1.4;
}
.prose figure { margin-top: 2em; margin-bottom: 2em; }
.prose figcaption { font-style: italic; font-size: 15px; color: #8b857f; margin-top: 10px; }
.callout { border-left: 2px solid var(--ox); background: var(--mist); padding: 18px 22px; font-size: 17px; line-height: 1.55; color: var(--ink-soft); }
.callout b { color: var(--ink); font-weight: 600; }

/* guide byline + table-of-contents */
.byline { margin-top: 22px; font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft); }
.byline b { color: var(--ox); font-weight: 600; }
.toc { border-top: 1px solid var(--line); padding-top: 18px; }
.toc .kicker { margin-bottom: 10px; }
.toc ol { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.toc a { font-size: 17px; text-decoration: none; color: var(--ink); border-bottom: 1px solid transparent; transition: color .3s, border-color .3s; }
.toc a:hover { color: var(--ox); border-color: var(--ox); }
.aside-cta { margin-top: 28px; border-top: 1px solid var(--line); padding-top: 22px; }
.aside-cta p { font-style: italic; font-size: 18px; color: var(--ink-soft); line-height: 1.5; margin-bottom: 16px; }
.prose table { width: 100%; border-collapse: collapse; font-size: clamp(15px, 1.8vw, 17px); }
.prose th, .prose td { text-align: left; vertical-align: top; padding: 10px 12px 10px 0; border-bottom: 1px solid var(--line); }
.prose th { font-family: var(--sans); font-size: 10.5px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--ox); }
.prose .tbl { overflow-x: auto; }

/* trust marks row */
.marks { display: flex; flex-wrap: wrap; gap: 12px 36px; margin-top: clamp(28px, 4vw, 44px); padding-top: 22px; border-top: 1px solid var(--line); }
.marks span { font-style: italic; font-size: 17px; color: var(--ink-soft); }
.marks b { color: var(--ox); font-weight: 500; margin-right: 8px; font-style: normal; }

/* numbered process */
.steps { list-style: none; display: grid; gap: clamp(20px, 3vw, 32px); margin-top: clamp(36px, 5vw, 56px); }
@media (min-width: 640px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .steps-4 { grid-template-columns: repeat(4, 1fr); } .steps-3 { grid-template-columns: repeat(3, 1fr); } }
.step { border-top: 1px solid var(--line); padding-top: 18px; }
.step-n { display: block; font-style: italic; font-size: 15px; color: var(--ox); margin-bottom: 10px; }
.step h3 { font-size: clamp(21px, 2.6vw, 26px); font-weight: 500; line-height: 1.2; }
.step p { margin-top: 10px; font-size: clamp(16px, 1.9vw, 18px); color: var(--ink-soft); line-height: 1.55; }

/* service cards (home + services hub) */
.services-home { padding: clamp(72px, 12vw, 140px) clamp(18px, 4vw, 40px); max-width: 1280px; margin: 0 auto; }
.svc-grid { display: grid; gap: clamp(18px, 3vw, 36px); margin-top: clamp(40px, 6vw, 72px); }
@media (min-width: 640px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .svc-grid { grid-template-columns: repeat(3, 1fr); } }
.svc-card { display: flex; flex-direction: column; text-decoration: none; border-top: 1px solid var(--line); padding-top: 18px; transition: border-color .4s; }
.svc-card:hover { border-color: var(--ox); }
.svc-n { font-style: italic; font-size: 15px; color: var(--ox); }
.svc-card h3 { margin-top: 10px; font-size: clamp(22px, 2.6vw, 28px); font-weight: 500; line-height: 1.15; }
.svc-card p { margin-top: 10px; font-size: clamp(15px, 1.8vw, 17px); color: var(--ink-soft); flex: 1; }
.svc-more { margin-top: 16px; align-self: flex-start; font-style: italic; font-size: 16px; color: var(--ink); border-bottom: 1px solid var(--ox); padding-bottom: 1px; transition: color .3s; }
.svc-card:hover .svc-more { color: var(--ox); }

/* FAQ (details/summary — build.mjs turns these into FAQPage schema) */
.faq { max-width: 860px; }
.faq h2 { font-size: clamp(32px, 5vw, 52px); font-weight: 500; line-height: 1.08; margin-bottom: clamp(20px, 3vw, 32px); }
.faq h2 em { font-style: italic; font-weight: 400; color: var(--ox); }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-of-type { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 18px 0;
  font-size: clamp(19px, 2.3vw, 24px);
  font-weight: 500;
  line-height: 1.3;
  transition: color .3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; flex: 0 0 auto; font-style: italic; color: var(--ox); font-size: 1.15em; line-height: 1; }
.faq-item[open] summary::after { content: "—"; font-size: .85em; }
.faq-item summary:hover { color: var(--ox); }
.faq-item > div { padding: 0 0 22px; max-width: 68ch; }
.faq-item > div p { font-size: clamp(17px, 1.9vw, 19px); color: var(--ink-soft); line-height: 1.6; }
.faq-item > div p + p { margin-top: .8em; }
.faq-item > div a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--ox); }

/* service-area link grid + related links */
.area-list { list-style: none; display: grid; gap: 10px 24px; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); margin-top: 24px; }
.area-list a { display: block; font-size: 19px; text-decoration: none; color: var(--ink); border-bottom: 1px solid var(--line); padding-bottom: 6px; transition: border-color .3s, color .3s; }
.area-list a:hover { color: var(--ox); border-color: var(--ox); }
.related { border-top: 1px solid var(--line); padding-top: 28px; margin-top: clamp(40px, 6vw, 64px); }
.related .kicker { margin-bottom: 14px; }
.related ul { list-style: none; display: flex; flex-wrap: wrap; gap: 12px 28px; }
.related a { font-style: italic; font-size: 19px; text-decoration: none; color: var(--ink); border-bottom: 1px solid var(--ox); transition: color .3s; }
.related a:hover { color: var(--ox); }

/* photo crops so the same real photo can be reused without looking repeated */
.ar-1x1 img  { aspect-ratio: 1 / 1; }
.ar-4x3 img  { aspect-ratio: 4 / 3; }
.ar-3x4 img  { aspect-ratio: 3 / 4; }
.ar-16x9 img { aspect-ratio: 16 / 9; }
.ar-21x9 img { aspect-ratio: 21 / 9; }
.op-t img { object-position: top; }
.op-b img { object-position: bottom; }
.op-l img { object-position: left; }
.op-r img { object-position: right; }
.photo-stack { display: grid; gap: clamp(14px, 2.4vw, 24px); }
.photo-stack .sp { margin: 0; }

/* placeholder badge — main.js adds this on localhost only */
.placeholder-badge {
  position: absolute;
  top: 10px; right: 10px;
  z-index: 3;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  background: var(--ox);
  color: #fff;
  padding: 5px 9px;
  border-radius: 999px;
  pointer-events: none;
}

/* contact form (Netlify Forms) */
.form { display: grid; gap: 22px; position: relative; }
.form label {
  display: block;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--ox);
  margin-bottom: 8px;
}
.form input, .form textarea, .form select {
  width: 100%;
  font-family: var(--serif);
  font-size: 19px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 10px 0;
  transition: border-color .3s;
}
.form input:focus, .form textarea:focus, .form select:focus { outline: none; border-color: var(--ox); }
.form textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; gap: 22px; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form button.pill { border: 0; cursor: pointer; justify-self: start; font-family: var(--serif); }
.form .hp { position: absolute; left: -9999px; top: 0; }
.form-note { font-size: 15px; color: var(--ink-soft); font-style: italic; }
