:root {
  --gold: #D4A574;
  --amber: #E8B86D;
  --sand: #F5E6D3;
  --navy: #001f3f;
  --navy-mid: #002244;
  --navy-dark: #001a33;
  --text: #ffffff;
  --muted: rgb(255 255 255 / 0.68);
  --glass: linear-gradient(to bottom right, rgb(255 255 255 / 0.07), rgb(255 255 255 / 0.02));
  --line: rgb(212 165 116 / 0.28);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: var(--sans);
  color: var(--text);
  background: var(--navy);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

ul {
  list-style: none;
}

:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

.wrap {
  width: min(72rem, calc(100% - 2rem));
  margin-inline: auto;
}

.rule {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 0 auto 1.25rem;
}

/* ---------- Nav ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgb(0 31 63 / 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  width: min(72rem, calc(100% - 2rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.25rem;
}

.brand {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}

.brand span {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-top: 0.1rem;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.35rem;
}

.nav-links a {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgb(255 255 255 / 0.78);
}

.nav-links a:hover {
  color: var(--amber);
}

.nav-links .nav-book {
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: linear-gradient(to right, #D4A574, #E8B86D);
  color: var(--navy);
  font-weight: 600;
}

.nav-links .nav-book:hover {
  color: var(--navy);
  filter: brightness(1.05);
}

.nav-toggle {
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--line);
  border-radius: 0.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgb(255 255 255 / 0.04);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 1.1rem;
  height: 1.5px;
  background: var(--sand);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before { top: -5px; }
.nav-toggle span::after { top: 5px; }

@media (min-width: 860px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
}

.nav-drawer {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem 1rem 1rem;
  border-top: 1px solid var(--line);
}

.nav-drawer.is-open { display: flex; }

.nav-drawer a {
  padding: 0.75rem 0.25rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: rgb(255 255 255 / 0.85);
  border-bottom: 1px solid rgb(212 165 116 / 0.12);
}

.nav-drawer .nav-book {
  margin-top: 0.5rem;
  text-align: center;
  border: 0;
  border-radius: 0.7rem;
  background: linear-gradient(to right, #D4A574, #E8B86D);
  color: var(--navy);
  font-weight: 600;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: calc(100svh - 4.25rem);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  inset: 0;
  background: #001a33 center / cover no-repeat;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgb(0 31 63 / 0.92) 0%, rgb(0 31 63 / 0.45) 42%, rgb(0 31 63 / 0.25) 100%),
    linear-gradient(to right, rgb(0 31 63 / 0.45), transparent 55%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(72rem, calc(100% - 2rem));
  margin: 0 auto;
  padding: 4.5rem 0 3.5rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgb(212 165 116 / 0.4);
  background: rgb(0 0 0 / 0.28);
  color: var(--amber);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  cursor: default;
  pointer-events: none;
}

.eyebrow .dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 4px rgb(232 184 109 / 0.18);
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(3rem, 8vw, 5.6rem);
  letter-spacing: 0.01em;
  line-height: 1.02;
}

.hero .place {
  margin-top: 0.55rem;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 300;
  color: var(--amber);
  letter-spacing: 0.04em;
}

.hero .lede {
  max-width: 38rem;
  margin-top: 1.15rem;
  font-size: 1.08rem;
  font-weight: 300;
  color: rgb(255 255 255 / 0.82);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 0;
  row-gap: 0.4rem;
  margin: 1.6rem 0 1.7rem;
  max-width: 42rem;
  cursor: default;
}

.stat {
  display: inline-flex;
  align-items: baseline;
  gap: 0.3em;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  backdrop-filter: none;
  font-size: 0.95rem;
  color: rgb(255 255 255 / 0.82);
  cursor: default;
}

.stat:not(:last-child)::after {
  content: "·";
  margin: 0 0.72rem;
  color: rgb(232 184 109 / 0.7);
  font-weight: 400;
}

.stat strong {
  font-weight: 600;
  color: var(--sand);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 3rem;
  padding: 0.75rem 1.35rem;
  border-radius: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.18s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0) scale(0.99); }

.btn-gold {
  background: linear-gradient(to right, #D4A574, #E8B86D);
  color: var(--navy);
  box-shadow: 0 16px 36px -16px rgb(212 165 116 / 0.7);
}

.btn-ghost {
  border: 1px solid rgb(245 230 211 / 0.14);
  background: #14314d;
  color: var(--sand);
  box-shadow: 0 14px 28px -14px rgb(0 0 0 / 0.7), inset 0 1px 0 rgb(255 255 255 / 0.08);
}

.btn-ghost:hover {
  transform: translateY(-2px);
  background: #1a3d5c;
  color: #fff;
  border-color: rgb(245 230 211 / 0.22);
  box-shadow: 0 18px 34px -12px rgb(0 0 0 / 0.75), inset 0 1px 0 rgb(255 255 255 / 0.1);
}

/* ---------- Sections ---------- */
.section {
  padding: 4.5rem 0;
}

.section-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}

.section-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(2rem, 4vw, 2.7rem);
  margin-bottom: 0.65rem;
}

.section-head p {
  color: var(--muted);
  font-weight: 300;
  font-size: 1.05rem;
}

/* ---------- Photos ---------- */
#photos {
  background: linear-gradient(to bottom, var(--navy), #00182e 40%, var(--navy));
}

.gallery {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 720px) {
  .gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 12.5rem;
  }
  .gallery-item.featured {
    grid-column: span 2;
    grid-row: span 2;
  }
}

.gallery-item {
  position: relative;
  min-height: 12rem;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgb(212 165 116 / 0.12), rgb(0 0 0 / 0.25));
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item figcaption,
.photo-slot .slot-label {
  position: absolute;
  left: 0.8rem;
  bottom: 0.75rem;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  background: rgb(0 31 63 / 0.62);
  border: 1px solid rgb(212 165 116 / 0.28);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

.photo-slot {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1.25rem;
  color: rgb(255 255 255 / 0.55);
}

.photo-slot.has-photo {
  padding: 0;
  display: block;
}

.photo-slot .slot-kicker {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.4rem;
}

.photo-slot .slot-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--sand);
}

.photo-slot .slot-hint {
  margin-top: 0.45rem;
  font-size: 0.75rem;
  color: rgb(255 255 255 / 0.4);
}

/* ---------- Drone slideshow ---------- */
.slideshow {
  margin: 0 0 2rem;
}

.slideshow-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #00182e;
  box-shadow: 0 22px 40px -24px rgb(0 0 0 / 0.7);
}

.slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s ease, visibility 0.55s ease;
  pointer-events: none;
}

.slide.is-current {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slideshow-caption {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  z-index: 2;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: rgb(0 31 63 / 0.72);
  border: 1px solid rgb(212 165 116 / 0.28);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--sand);
  pointer-events: none;
}

.slideshow-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.7rem;
  border: 0;
  background: linear-gradient(to right, #D4A574, #E8B86D);
  color: var(--navy);
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 14px 28px -12px rgb(0 0 0 / 0.7);
  transform: translateY(-50%);
  transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.2s ease;
}

.slideshow-arrow.prev { left: 0.85rem; }
.slideshow-arrow.next { right: 0.85rem; }

.slideshow-arrow:hover {
  transform: translateY(calc(-50% - 1px));
  filter: brightness(1.05);
  box-shadow: 0 18px 32px -12px rgb(0 0 0 / 0.75);
}

.slideshow-arrow:active {
  transform: translateY(-50%) scale(0.98);
}

.slideshow-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.85rem;
}

.slideshow-dot {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgb(245 230 211 / 0.32);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.slideshow-dot:hover {
  background: rgb(232 184 109 / 0.7);
}

.slideshow-dot.is-current {
  width: 1.15rem;
  background: var(--gold);
}

@media (max-width: 640px) {
  .slideshow-arrow {
    width: 2.4rem;
    height: 2.4rem;
    font-size: 1.45rem;
  }
  .slideshow-arrow.prev { left: 0.55rem; }
  .slideshow-arrow.next { right: 0.55rem; }
}

/* ---------- Amenities ---------- */
.amenity-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .amenity-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 960px) {
  .amenity-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.glass {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 1rem;
  backdrop-filter: blur(12px);
}

.glass,
.amenity,
.facts-card,
.rules-card,
.calendar-card,
.book-card,
.footer-card {
  cursor: default;
}

.amenity {
  padding: 1.4rem 1.3rem 1.5rem;
}

.amenity .icon {
  width: 2.6rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  border-radius: 0.7rem;
  margin-bottom: 0.9rem;
  background: linear-gradient(to bottom right, rgb(212 165 116 / 0.22), rgb(232 184 109 / 0.08));
  color: var(--amber);
}

.amenity .icon svg {
  width: 1.3rem;
  height: 1.3rem;
}

.amenity h3 {
  font-weight: 500;
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.amenity p {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 300;
}

.facts {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

@media (min-width: 800px) {
  .facts { grid-template-columns: 1.2fr 0.8fr; }
}

.facts-card,
.rules-card {
  padding: 1.6rem;
}

.facts-card h3,
.rules-card h3 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.kv-list {
  display: grid;
  gap: 0.55rem;
}

.kv-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgb(212 165 116 / 0.12);
  color: var(--muted);
  font-size: 0.95rem;
}

.kv-list strong { color: var(--sand); font-weight: 500; }

.rules-card li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: var(--muted);
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.rules-card li:last-child { margin-bottom: 0; }

.tick {
  color: var(--amber);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.tick svg { width: 1.05rem; height: 1.05rem; }

/* ---------- Availability ---------- */
#availability {
  background:
    radial-gradient(ellipse at top, rgb(212 165 116 / 0.08), transparent 50%),
    var(--navy);
}

.avail-layout {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 880px) {
  .avail-layout { grid-template-columns: 1.15fr 0.85fr; align-items: start; }
}

.calendar-card,
.book-card {
  padding: 1.5rem;
}

.cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.cal-head h3 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.45rem;
}

.cal-nav {
  display: flex;
  gap: 0.4rem;
}

.cal-nav button {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.6rem;
  border: 1px solid rgb(245 230 211 / 0.16);
  background: #14314d;
  color: var(--sand);
  cursor: pointer;
  box-shadow: 0 10px 20px -12px rgb(0 0 0 / 0.65), inset 0 1px 0 rgb(255 255 255 / 0.08);
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.2s ease;
}

.cal-nav button:hover {
  transform: translateY(-1px);
  background: #1a3d5c;
  border-color: rgb(232 184 109 / 0.45);
  box-shadow: 0 14px 24px -12px rgb(0 0 0 / 0.7);
}

.cal-nav button:active { transform: translateY(0) scale(0.98); }

.cal-week {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.25rem;
  margin-bottom: 0.4rem;
}

.cal-week span {
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgb(232 184 109 / 0.75);
  padding: 0.25rem 0;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.3rem;
}

.cal-day {
  aspect-ratio: 1;
  min-height: 2.4rem;
  border-radius: 0.5rem;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  color: rgb(255 255 255 / 0.82);
  border: 1px solid transparent;
  cursor: default;
  user-select: none;
}

.cal-day.muted { color: rgb(255 255 255 / 0.22); }
.cal-day.past {
  color: rgb(255 255 255 / 0.28);
  background: rgb(255 255 255 / 0.04);
}
.cal-day.past.busy {
  background: rgb(255 255 255 / 0.04);
  color: rgb(255 255 255 / 0.28);
  text-decoration: none;
}
.cal-day.today {
  border-color: rgb(232 184 109 / 0.55);
  color: var(--sand);
}
.cal-day.busy {
  background: rgb(212 165 116 / 0.18);
  color: rgb(255 255 255 / 0.38);
  text-decoration: line-through;
}

.cal-note {
  margin-top: 1rem;
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 300;
}

.cal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.85rem;
  font-size: 0.78rem;
  color: rgb(255 255 255 / 0.55);
}

.cal-legend i {
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 0.2rem;
  margin-right: 0.35rem;
  vertical-align: -1px;
}

.cal-legend .swatch-past { background: rgb(255 255 255 / 0.12); }
.cal-legend .swatch-busy { background: rgb(212 165 116 / 0.35); }
.cal-legend .swatch-today { border: 1px solid var(--amber); }

.book-card h3 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.7rem;
  margin-bottom: 0.5rem;
}

.book-card .lead {
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 1.2rem;
}

.book-card .btn { width: 100%; margin-bottom: 0.65rem; }

.book-meta {
  margin-top: 1.1rem;
  font-size: 0.88rem;
  color: rgb(255 255 255 / 0.6);
}

.book-meta div { margin-bottom: 0.35rem; }

/* ---------- Footer ---------- */
.site-footer {
  padding: 3.5rem 0 2rem;
  border-top: 1px solid var(--line);
  background: #00182e;
}

.footer-grid {
  display: grid;
  gap: 1.1rem;
  margin-bottom: 2rem;
}

@media (min-width: 760px) {
  .footer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.footer-card {
  padding: 1.5rem;
}

.footer-card h3,
.footer-card h4 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.35rem;
  margin-bottom: 0.7rem;
}

.footer-card p,
.footer-card a.quiet {
  color: var(--muted);
  font-weight: 300;
  font-size: 0.95rem;
}

.footer-card .mail {
  color: var(--sand);
  display: inline-block;
  margin: 0.4rem 0 0.75rem;
  border-bottom: 1px solid rgb(212 165 116 / 0.3);
}

.footer-card .mail:hover { color: var(--amber); }

.guest-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.82rem;
  color: rgb(232 184 109 / 0.85);
  border-bottom: 1px solid transparent;
}

.guest-link:hover { border-bottom-color: rgb(232 184 109 / 0.4); }

.legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgb(212 165 116 / 0.16);
  color: rgb(255 255 255 / 0.42);
  font-size: 0.82rem;
  text-align: center;
}

@media (min-width: 720px) {
  .legal {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .cal-nav button, .nav-links a, .slideshow-arrow, .slideshow-dot, .slide { transition: none; }
}

/* ---------- Area / FAQ ---------- */
.area-copy {
  padding: 1.4rem 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
}
.area-copy p + p { margin-top: 0.85rem; color: var(--muted); }
.faq-list { display: grid; gap: 0.7rem; }
.faq {
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 0.15rem 0;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 0.95rem 1.2rem;
  font-weight: 600;
  color: var(--sand);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-weight: 500;
}
.faq[open] summary::after { content: "–"; }
.faq p {
  padding: 0 1.2rem 1.05rem;
  color: var(--muted);
}

/* ---------- Landing pages ---------- */
.page-hero {
  min-height: min(72vh, 34rem);
}
.page-hero h1 {
  font-size: clamp(2.15rem, 5.6vw, 3.9rem);
  max-width: 18ch;
}
.page-copy {
  max-width: 44rem;
  margin: 0 auto 1.25rem;
  padding: 1.55rem 1.65rem;
}
.page-copy p + p {
  margin-top: 0.95rem;
  color: var(--muted);
}
.page-copy a,
.area-copy a,
.also a,
.explore a,
.faq a {
  color: var(--amber);
  border-bottom: 1px solid rgb(232 184 109 / 0.35);
}
.page-copy a:hover,
.area-copy a:hover,
.also a:hover,
.explore a:hover,
.faq a:hover {
  color: var(--sand);
  border-bottom-color: var(--gold);
}
.also {
  margin-top: 1.15rem;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 300;
}
.page-copy + .section-head {
  margin-top: 2.75rem;
}
.page-gallery {
  display: grid;
  gap: 0.85rem;
  margin: 0 auto 2rem;
}
@media (min-width: 720px) {
  .page-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 13rem;
  }
}
.page-book {
  max-width: 32rem;
  margin: 1.5rem auto 0;
  padding: 1.5rem;
}
.explore {
  margin: 0 0 1.6rem;
  color: rgb(255 255 255 / 0.5);
  font-size: 0.88rem;
  text-align: center;
  line-height: 1.75;
  font-weight: 300;
}
