/* ═══════════════════════════════════════════════════════
   Main & Salt — Stylesheet
   ═══════════════════════════════════════════════════════ */

/* ─── Reset & Base ─────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --sand:    #f5ede0;
  --dune:    #e8d5bc;
  --clay:    #c4956a;
  --tide:    #2e4a5a;
  --deep:    #1a2f3c;
  --salt:    #ffffff;
  --mist:    rgba(255, 255, 255, 0.08);
  --overlay: rgba(20, 35, 45, 0.52);
  --gold:    #c8a96e;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  background: var(--deep);
  color: var(--sand);
  overflow-x: hidden;
}

/* ─── Accessibility: font scale ─────────────────────── */
/* Scale :root font-size so ALL rem/em/clamp values inherit the change */
html.access-font-lg { font-size: 112% !important; }
html.access-font-xl { font-size: 124% !important; }
html.access-font-sm { font-size: 88%  !important; }

/* ─── Accessibility: high contrast ─────────────────── */
body.access-contrast {
  --sand:    #ffffff;
  --dune:    #ffffff;
  --clay:    #ffcc00;
  --tide:    #000000;
  --deep:    #000000;
  --salt:    #ffffff;
  --gold:    #ffcc00;
}
html.access-contrast {
  filter: contrast(1.35);
}
body.access-contrast .hero-overlay {
  background: rgba(0, 0, 0, 0.72) !important;
}

/* ─── Accessibility: grayscale ──────────────────────── */
html.access-grayscale {
  filter: grayscale(100%);
}
html.access-contrast.access-grayscale {
  filter: contrast(1.35) grayscale(100%);
}

/* ─── Accessibility: reduce motion ─────────────────── */
body.access-no-motion *,
body.access-no-motion *::before,
body.access-no-motion *::after {
  animation: none !important;
  transition: none !important;
}


/* ════════════════════════════════════════════════════
   ACCESSIBILITY WIDGET
   ════════════════════════════════════════════════════ */
#accessWidget {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 990;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  gap: 10px;
  transition: bottom 0.35s cubic-bezier(0.2, 0, 0.2, 1);
}

#accessToggle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--deep);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  flex-shrink: 0;
}
#accessToggle svg {
  width: 22px;
  height: 22px;
  pointer-events: none;
}
#accessToggle:hover {
  background: var(--clay);
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}
#accessToggle:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}
#accessToggle[aria-expanded="true"] {
  background: var(--clay);
}

/* Panel */
#accessPanel {
  background: #0e1f2a;
  border: 1px solid rgba(200, 169, 110, 0.25);
  border-radius: 10px;
  padding: 20px 18px 16px;
  width: 220px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  animation: slideUpPanel 0.22s cubic-bezier(0.2, 0, 0.2, 1);
}

#accessPanel[hidden] {
  display: none;
}

@keyframes slideUpPanel {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.access-panel-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(200, 169, 110, 0.2);
}

.access-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-bottom: 14px;
}

.access-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 10px 6px 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 7px;
  color: var(--sand);
  font-family: 'Jost', sans-serif;
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  text-align: center;
  line-height: 1.2;
}
.access-btn:hover {
  background: rgba(200, 169, 110, 0.15);
  border-color: rgba(200, 169, 110, 0.4);
  color: var(--gold);
}
.access-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.access-btn[aria-pressed="true"] {
  background: rgba(200, 169, 110, 0.22);
  border-color: var(--gold);
  color: var(--gold);
}

.access-btn-icon {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
}

.access-btn-reset {
  grid-column: span 2;
  flex-direction: row;
  gap: 7px;
  padding: 9px 12px;
  background: rgba(196, 149, 106, 0.1);
  border-color: rgba(196, 149, 106, 0.3);
  color: var(--clay);
}
.access-btn-reset:hover {
  background: rgba(196, 149, 106, 0.2);
  border-color: var(--clay);
  color: var(--clay);
}

.access-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 12px;
  border-top: 1px solid rgba(200, 169, 110, 0.12);
}

.access-policy-link {
  background: none;
  border: none;
  color: rgba(245, 237, 224, 0.75);
  font-family: 'Jost', sans-serif;
  font-size: 0.64rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  text-align: left;
  padding: 0;
  transition: color 0.2s;
}
.access-policy-link:hover {
  color: var(--gold);
}
.access-policy-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}


/* ════════════════════════════════════════════════════
   POLICY MODALS
   ════════════════════════════════════════════════════ */
.policy-modal {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: rgba(10, 20, 28, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: modalFadeIn 0.25s ease;
}

.policy-modal[hidden] {
  display: none;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.policy-modal-inner {
  background: #0e1f2a;
  border: 1px solid rgba(200, 169, 110, 0.2);
  border-radius: 10px;
  width: 100%;
  max-width: 680px;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  animation: modalSlideIn 0.28s cubic-bezier(0.2, 0, 0.2, 1);
  overflow: hidden;
}

@keyframes modalSlideIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Close button lives in its own row — never overlaps the scrollable body */
.policy-modal-close {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  margin: 8px 8px 0 0;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
  /* SVG inside is sized by CSS, not by font metrics */
  padding: 0;
  line-height: 1;
}
.policy-modal-close:hover  { color: var(--gold); background: rgba(200,169,110,0.1); }
.policy-modal-close:active { background: rgba(200,169,110,0.2); }
.policy-modal-close:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.policy-modal-close svg { width: 18px; height: 18px; display: block; pointer-events: none; }

.policy-modal-body {
  overflow-y: auto;
  padding: 0 32px 36px;
  -webkit-overflow-scrolling: touch;
  flex: 1;
  min-height: 0;
}
.policy-modal-body::-webkit-scrollbar { width: 4px; }
.policy-modal-body::-webkit-scrollbar-thumb { background: rgba(200, 169, 110, 0.3); border-radius: 4px; }

.policy-modal-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: var(--salt);
  margin-bottom: 6px;
  padding-right: 36px;
}

.policy-modal-sub {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(200, 169, 110, 0.18);
}

.policy-modal-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--dune);
  margin: 22px 0 8px;
  letter-spacing: 0.02em;
}

.policy-modal-body p {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.88rem;
  line-height: 1.72;
  color: rgba(245, 237, 224, 0.75);
  margin-bottom: 10px;
}

.policy-modal-body ul {
  padding-left: 20px;
  margin-bottom: 10px;
}

.policy-modal-body li {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.87rem;
  line-height: 1.68;
  color: rgba(245, 237, 224, 0.72);
  margin-bottom: 5px;
}


.policy-inline-btn {
  background: none;
  border: none;
  color: var(--gold);
  font-family: 'Jost', sans-serif;
  font-size: inherit;
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
  vertical-align: baseline;
}
.policy-inline-btn:hover { color: var(--clay); }
.policy-inline-btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.policy-modal-body a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.policy-modal-body a:hover { color: var(--clay); }

.policy-modal-updated {
  font-size: 0.75rem !important;
  color: rgba(245, 237, 224, 0.35) !important;
  margin-top: 24px !important;
  padding-top: 16px;
  border-top: 1px solid rgba(200, 169, 110, 0.1);
}


/* ═══════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════ */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;        /* fallback for iOS 14 and older browsers */
  height: 100svh;       /* modern: excludes mobile browser chrome */
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-bottom: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/pier.jpg');
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 12s ease-out;
  will-change: transform;
}
.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14, 28, 38, 0.28) 0%,
    rgba(14, 28, 38, 0.38) 45%,
    rgba(14, 28, 38, 0.55) 100%
  );
  backdrop-filter: blur(6px) saturate(0.9);
  -webkit-backdrop-filter: blur(6px) saturate(0.9);
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 0 24px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s ease, transform 1.1s ease;
}
.hero-content.visible { opacity: 1; transform: translateY(0); }

.hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: clamp(0.65rem, 1.4vw, 0.78rem);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.hero-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(3.4rem, 10vw, 8.5rem);
  line-height: 0.88;
  letter-spacing: -0.01em;
  color: var(--salt);
  white-space: nowrap;
}
.hero-logo .amp {
  font-style: italic;
  font-weight: 300;
  color: var(--clay);
  font-size: 0.78em;
  display: inline-block;
  transform: translateY(0.04em);
}

.hero-rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 28px auto;
  opacity: 0.9;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.05rem, 2.5vw, 1.45rem);
  letter-spacing: 0.04em;
  color: var(--salt);
  margin-bottom: 44px;
  max-width: 420px;
  line-height: 1.6;
}

.btn-book {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 18px 48px;
  background: var(--gold);
  border: 2px solid var(--gold);
  color: var(--deep);
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: clamp(0.75rem, 1.6vw, 0.88rem);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.32s ease, border-color 0.32s ease,
              color 0.32s ease, transform 0.18s ease;
}
.btn-book:hover {
  background: var(--salt);
  border-color: var(--salt);
  color: var(--deep);
  transform: translateY(-2px);
}
.btn-book:active { transform: translateY(0); }
.btn-book:focus-visible {
  outline: 3px solid var(--salt);
  outline-offset: 4px;
}

.btn-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.coming-soon-badge {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: clamp(0.72rem, 1.6vw, 0.85rem);
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--salt);
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
  background: rgba(20, 35, 45, 0.55);
  padding: 10px 22px;
  border: 1px solid rgba(200, 169, 110, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.coming-soon-badge::before,
.coming-soon-badge::after {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold);
  opacity: 0.8;
}

.scroll-cue {
  position: absolute;
  bottom: 56px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
  animation: fadeIn 1s ease 2.2s forwards;
}
.scroll-cue-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.1); }
}
@keyframes fadeIn { to { opacity: 1; } }


/* ═══════════════════════════════════════════════════════
   GALLERY SECTION
   ═══════════════════════════════════════════════════════ */
#gallery {
  background: var(--deep);
  padding: 100px 0 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-header {
  text-align: center;
  padding: 0 24px 64px;
}

.section-eyebrow {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.05;
  color: var(--salt);
  letter-spacing: -0.01em;
}
.section-title em { font-style: italic; color: var(--clay); }

.section-rule {
  width: 36px;
  height: 1px;
  background: var(--gold);
  margin: 22px auto 0;
  opacity: 0.6;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 12vw;
  gap: 6px;
  padding: 0 6px;
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  align-content: center;
  justify-content: center;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  background: var(--tide);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  cursor: pointer;
}
.gallery-item.visible { opacity: 1; transform: translateY(0); }

.gallery-item:nth-child(1)  { grid-column: span 5; grid-row: span 3; }
.gallery-item:nth-child(2)  { grid-column: span 4; grid-row: span 2; }
.gallery-item:nth-child(3)  { grid-column: span 3; grid-row: span 2; }
.gallery-item:nth-child(4)  { grid-column: span 3; grid-row: span 2; }
.gallery-item:nth-child(5)  { grid-column: span 4; grid-row: span 2; }
.gallery-item:nth-child(6)  { grid-column: span 5; grid-row: span 3; }
.gallery-item:nth-child(7)  { grid-column: span 4; grid-row: span 2; }
.gallery-item:nth-child(8)  { grid-column: span 3; grid-row: span 2; }
.gallery-item:nth-child(9)  { grid-column: span 5; grid-row: span 2; }
.gallery-item:nth-child(10) { grid-column: span 4; grid-row: span 2; }
.gallery-item:nth-child(11) { grid-column: span 3; grid-row: span 2; }
.gallery-item:nth-child(12) { grid-column: span 12; grid-row: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(0.2, 0, 0.2, 1), opacity 0.7s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 35, 45, 0.5) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-empty {
  grid-column: span 12;
  padding: 80px 24px;
  text-align: center;
  color: rgba(245, 237, 224, 0.3);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  display: none;
}

/* No stagger delays — items reveal immediately when scrolled into view */


/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
footer {
  background: var(--deep);
  border-top: 1px solid rgba(200, 169, 110, 0.15);
  padding: 52px 24px 40px;
  text-align: center;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: var(--salt);
  margin-bottom: 10px;
}
.footer-logo .amp { font-style: italic; color: var(--clay); }

.footer-location {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(245, 237, 224, 0.60);
  margin-bottom: 18px;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}
.footer-contact-link {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: rgba(245, 237, 224, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact-link:hover { color: var(--gold); }
.footer-contact-link:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.footer-contact-divider { color: rgba(245, 237, 224, 0.2); font-size: 0.7rem; }

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 18px;
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  color: rgba(245, 237, 224, 0.25);
}
.footer-legal-link {
  background: none;
  border: none;
  color: rgba(245, 237, 224, 0.65);
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}
.footer-legal-link:hover { color: var(--gold); }
.footer-legal-link:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.footer-copy {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  color: rgba(245, 237, 224, 0.55);
}


/* ═══════════════════════════════════════════════════════
   LIGHTBOX
   ═══════════════════════════════════════════════════════ */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 25, 32, 0.96);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
#lightbox.open { opacity: 1; pointer-events: all; }

#lightbox img {
  max-width: min(90vw, 1200px);
  max-height: 88vh;
  object-fit: contain;
  border: 1px solid rgba(200, 169, 110, 0.2);
}

.lb-close {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.6rem;
  font-weight: 100;
  transition: color 0.2s;
  line-height: 1;
  border-radius: 50%;
}
.lb-close:hover { color: var(--gold); }
.lb-close:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.4rem;
  transition: color 0.2s, transform 0.2s;
  user-select: none;
}
.lb-nav:hover { color: var(--gold); }
.lb-nav:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-prev:hover { transform: translateY(-50%) translateX(-3px); }
.lb-next:hover { transform: translateY(-50%) translateX(3px); }


/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 22vw;
    gap: 4px;
    padding: 0 4px;
  }
  .gallery-item:nth-child(1)  { grid-column: span 4; grid-row: span 2; }
  .gallery-item:nth-child(2)  { grid-column: span 2; grid-row: span 2; }
  .gallery-item:nth-child(3)  { grid-column: span 3; grid-row: span 2; }
  .gallery-item:nth-child(4)  { grid-column: span 3; grid-row: span 2; }
  .gallery-item:nth-child(5)  { grid-column: span 2; grid-row: span 2; }
  .gallery-item:nth-child(6)  { grid-column: span 4; grid-row: span 2; }
  .gallery-item:nth-child(7)  { grid-column: span 3; grid-row: span 2; }
  .gallery-item:nth-child(8)  { grid-column: span 3; grid-row: span 2; }
  .gallery-item:nth-child(9)  { grid-column: span 6; grid-row: span 2; }
  .gallery-item:nth-child(10) { grid-column: span 3; grid-row: span 2; }
  .gallery-item:nth-child(11) { grid-column: span 3; grid-row: span 2; }
  .gallery-item:nth-child(12) { grid-column: span 6; grid-row: span 2; }
}

@media (max-width: 580px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 48vw;   /* slightly taller rows on portrait mobile */
    gap: 3px;
    padding: 0 3px;
  }
  .gallery-item,
  .gallery-item:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
  }
  .gallery-item:nth-child(3n+1) {
    grid-column: span 2;
    grid-row: span 1;
  }
  #gallery { padding: 70px 0 80px; }
  .section-header { padding-bottom: 44px; }

  #accessWidget { bottom: 16px; left: 16px; }
  #accessPanel { width: 195px; }

  .policy-modal { padding: 10px; }
  /* Keep top padding large enough so close button is never overlapped */
  .policy-modal-body { padding: 52px 18px 22px; }
}

@media (max-width: 420px) {
  .hero-rule { margin: 20px auto; }
  .hero-tagline { margin-bottom: 32px; }
  .btn-book { padding: 13px 28px; font-size: 0.7rem; }
  /* Scale logo down further on very narrow screens to prevent overflow */
  .hero-logo { font-size: clamp(2.6rem, 12vw, 3.4rem); }
  .lb-nav { display: none; }

  .footer-contact { flex-direction: column; gap: 6px; }
  .footer-contact-divider { display: none; }
}


/* ═══════════════════════════════════════════════════════
   COOKIE CONSENT BANNER
   ═══════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 980;
  background: #0a141c;
  border-top: 1px solid rgba(200, 169, 110, 0.2);
  box-shadow: 0 -6px 40px rgba(0, 0, 0, 0.45);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.2, 0, 0.2, 1);
}

.cookie-banner:not([hidden]) {
  transform: translateY(0);
}

/* Animate in after a short delay on first visit */
.cookie-banner.cookie-visible {
  transform: translateY(0);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1;
  min-width: 260px;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.82rem;
  line-height: 1.65;
  color: rgba(245, 237, 224, 0.88);
}

.cookie-inline-link {
  background: none;
  border: none;
  color: var(--gold);
  font-family: 'Jost', sans-serif;
  font-size: inherit;
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}
.cookie-inline-link:hover { color: var(--clay); }
.cookie-inline-link:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}
.cookie-btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* "Do Not Sell" — subtle ghost */
.cookie-btn-ghost {
  background: none;
  border: none;
  color: rgba(245, 237, 224, 0.38);
  padding: 8px 0;
  text-decoration: underline;
  text-underline-offset: 3px;
  letter-spacing: 0.06em;
  font-size: 0.68rem;
  text-transform: none;
}
.cookie-btn-ghost:hover { color: rgba(245, 237, 224, 0.7); }

/* "Reject All" — outlined */
.cookie-btn-outline {
  background: transparent;
  border: 1px solid rgba(245, 237, 224, 0.25);
  color: rgba(245, 237, 224, 0.6);
  padding: 9px 20px;
}
.cookie-btn-outline:hover {
  border-color: rgba(245, 237, 224, 0.55);
  color: var(--sand);
}

/* "Accept Cookies" — filled gold */
.cookie-btn-accept {
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--deep);
  padding: 9px 24px;
}
.cookie-btn-accept:hover {
  background: var(--clay);
  border-color: var(--clay);
  color: var(--salt);
}

/* Slide banner up when dismissed */
.cookie-banner.cookie-hiding {
  transform: translateY(100%);
}

@media (max-width: 680px) {
  .cookie-banner-inner {
    padding: 16px 18px 20px;
    gap: 16px;
  }
  .cookie-banner-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-btn {
    text-align: center;
  }
  .cookie-btn-ghost {
    text-align: center;
    padding: 6px 0;
  }
}


/* ═══════════════════════════════════════════════════════
   COOKIE MANAGEMENT WIDGET
   ═══════════════════════════════════════════════════════ */

#cookieWidget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 990;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: 10px;
  transition: bottom 0.35s cubic-bezier(0.2, 0, 0.2, 1);
}

#cookieWidgetToggle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--tide);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--salt);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  flex-shrink: 0;
}
#cookieWidgetToggle svg {
  width: 22px;
  height: 22px;
  pointer-events: none;
}
#cookieWidgetToggle:hover {
  background: var(--deep);
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}
#cookieWidgetToggle:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}
#cookieWidgetToggle[aria-expanded="true"] {
  background: var(--deep);
}

/* Panel */
#cookieWidgetPanel {
  background: #0e1f2a;
  border: 1px solid rgba(200, 169, 110, 0.25);
  border-radius: 10px;
  padding: 20px 18px 16px;
  width: 272px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  animation: slideUpPanel 0.22s cubic-bezier(0.2, 0, 0.2, 1);
}
#cookieWidgetPanel[hidden] { display: none; }

.cookie-widget-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(200, 169, 110, 0.2);
}

.cookie-widget-desc {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(245, 237, 224, 0.55);
  line-height: 1.5;
  margin-bottom: 14px;
}
.cookie-widget-desc strong {
  color: var(--gold);
  font-weight: 400;
}

/* Toggle rows */
.cookie-widget-options {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 14px;
}

.cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.18s ease;
}
.cookie-toggle-row:hover {
  background: rgba(255, 255, 255, 0.04);
}

.cookie-toggle-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.cookie-toggle-name {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--sand);
  letter-spacing: 0.04em;
}

.cookie-toggle-desc {
  font-family: 'Jost', sans-serif;
  font-size: 0.63rem;
  font-weight: 300;
  color: rgba(245, 237, 224, 0.65);
  line-height: 1.4;
}

/* Hide native checkbox */
.cookie-toggle-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

/* Custom toggle switch */
.cookie-toggle-switch {
  position: relative;
  width: 36px;
  height: 20px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  flex-shrink: 0;
  transition: background 0.22s ease;
  cursor: pointer;
}

.cookie-toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transition: transform 0.22s ease, background 0.22s ease;
}

/* Checked state — driven by JS adding .is-on to the switch */
.cookie-toggle-switch.is-on {
  background: var(--gold);
}
.cookie-toggle-switch.is-on .cookie-toggle-knob {
  transform: translateX(16px);
  background: var(--deep);
}

/* Locked (always-on) state */
.cookie-toggle-locked {
  background: rgba(200, 169, 110, 0.3);
  cursor: not-allowed;
}
.cookie-toggle-locked .cookie-toggle-knob {
  transform: translateX(16px);
  background: var(--gold);
}
.cookie-toggle-row:has(.cookie-toggle-locked) {
  cursor: default;
  opacity: 0.7;
}

/* Action buttons */
.cookie-widget-actions {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.cookie-widget-btn {
  flex: 1;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 9px 10px;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}
.cookie-widget-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.cookie-widget-btn-save {
  background: transparent;
  border-color: rgba(200, 169, 110, 0.4);
  color: rgba(245, 237, 224, 0.88);
}
.cookie-widget-btn-save:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.cookie-widget-btn-all {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--deep);
}
.cookie-widget-btn-all:hover {
  background: var(--clay);
  border-color: var(--clay);
  color: var(--salt);
}

/* Links row */
.cookie-widget-links {
  display: flex;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(200, 169, 110, 0.12);
}

/* Badge dot on toggle button when consent is set */
#cookieWidgetToggle .cookie-badge {
  position: absolute;
  top: 1px;
  right: 1px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--deep);
  display: none;
}
#cookieWidgetToggle {
  position: relative;
}
#cookieWidgetToggle.has-consent .cookie-badge {
  display: block;
}

/* Mobile */
@media (max-width: 580px) {
  #cookieWidget { bottom: 16px; right: 16px; }
  #cookieWidgetPanel { width: 240px; }
}


/* ═══════════════════════════════════════════════════════
   LOCATION SECTION
   ═══════════════════════════════════════════════════════ */
#location {
  background: #0e1a22;
  padding: 100px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.location-address {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  color: rgba(245, 237, 224, 0.6);
  margin-top: 18px;
}

.location-pin {
  width: 14px;
  height: 14px;
  color: var(--gold);
  flex-shrink: 0;
}

/* Map */
.map-container {
  width: 100%;
  height: 480px;
  margin-top: 48px;
  position: relative;
}

.map-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Location label */
.location-address {
  margin-top: 18px;
  text-align: center;
}

.location-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  letter-spacing: 0.06em;
  color: var(--salt);
  margin-bottom: 8px;
}

.location-street {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  color: rgba(245, 237, 224, 0.6);
}

/* Get Directions button */
.location-cta {
  padding: 36px 24px 72px;
  display: flex;
  justify-content: center;
}

.location-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: transparent;
  border: 1px solid rgba(200, 169, 110, 0.45);
  color: var(--dune);
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.28s ease, border-color 0.28s ease, color 0.28s ease;
}
.location-directions-btn svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  opacity: 0.8;
}
.location-directions-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--deep);
}
.location-directions-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

@media (max-width: 580px) {
  #location { padding-top: 70px; }
  .map-container { height: 340px; }
  .location-cta { padding: 28px 24px 56px; }
}


/* ═══════════════════════════════════════════════════════
   HERO STATS BAR
   ═══════════════════════════════════════════════════════ */

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 10px;
  gap: 0;
  margin-top: 24px;
  width: 100%;
  padding: 14px 20px;
  background: rgba(14, 28, 38, 0.52);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(200, 169, 110, 0.25);
  border-radius: 2px;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: clamp(0.65rem, 1.4vw, 0.75rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--salt);
  white-space: nowrap;
}

.hero-stat-icon {
  font-size: 1rem;
  line-height: 1;
  filter: none;
}

.hero-stat-svg {
  display: block;
  flex-shrink: 0;
  color: var(--gold);
}

.hero-stat-divider {
  width: 1px;
  height: 24px;
  background: rgba(200, 169, 110, 0.3);
  flex-shrink: 0;
}

@media (max-width: 520px) {
  .hero-stats {
    flex-direction: column;
    gap: 10px;
    padding: 14px 20px;
  }
  .hero-stat-divider { display: none; }
  .hero-stat { padding: 0; }
}


/* ═══════════════════════════════════════════════════════
   ADVENTURES / HIGHLIGHTS SECTION
   ═══════════════════════════════════════════════════════ */

#adventures {
  background: var(--deep);
  padding: 100px 0 110px;
}

.adventures-intro {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  color: rgba(245, 237, 224, 0.6);
  margin-top: 20px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  text-align: center;
}

.adventures-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1400px;
  margin: 56px auto 0;
  padding: 0 24px;
}

.adv-card {
  background: #0e1f2a;
  border: 1px solid rgba(200, 169, 110, 0.15);
  border-radius: 4px;
  padding: 36px 28px 32px;
  position: relative;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.adv-card:hover {
  background: #0a1820;
  border-color: rgba(200, 169, 110, 0.35);
}

.adv-card-num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 2.8rem;
  line-height: 1;
  color: rgba(200, 169, 110, 0.18);
  position: absolute;
  top: 24px;
  right: 24px;
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}
.adv-card:hover .adv-card-num {
  color: rgba(200, 169, 110, 0.35);
}

.adv-card-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  margin-bottom: 18px;
  color: var(--gold);
  overflow: hidden;
  flex-shrink: 0;
}
.adv-card-icon svg {
  display: block;
  width: 36px;
  height: 36px;
  max-width: 36px;
  max-height: 36px;
}

.adv-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.3;
  color: var(--salt);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
  padding-right: 32px;
}

.adv-card-hook {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 10px;
  line-height: 1.4;
}

.adv-card-body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.82rem;
  line-height: 1.72;
  color: rgba(245, 237, 224, 0.55);
}

/* Responsive grid */
@media (max-width: 1100px) {
  .adventures-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  #adventures { padding: 70px 0 80px; }
  .adventures-grid {
    grid-template-columns: 1fr;
  }
  .adv-card { padding: 28px 24px; }
  .adv-card-title { padding-right: 44px; }
}

/* ─── Extra-small phones (320–360px) ───────────────── */
@media (max-width: 360px) {
  .hero-content { padding: 28px 16px 32px; }
  .hero-stats { padding: 12px 14px; }
  .hero-stat { font-size: 0.6rem; letter-spacing: 0.14em; }
  .hero-logo { font-size: clamp(2.2rem, 14vw, 3rem); }
  .hero-tagline { font-size: 0.95rem; }
  .hero-rule { margin: 16px auto; }
  .adv-card { padding: 24px 18px; }
}

/* ─── Tablet portrait (600–900px) — tighten adventures ─ */
@media (min-width: 581px) and (max-width: 900px) {
  .adventures-grid { grid-template-columns: 1fr; gap: 10px; padding: 0 16px; }
}


/* ═══════════════════════════════════════════════════════
   AWARD BANNER
   ═══════════════════════════════════════════════════════ */
#award {
  background: linear-gradient(135deg, #0a1820 0%, #0e2230 50%, #0a1820 100%);
  border-top: 1px solid rgba(200, 169, 110, 0.2);
  border-bottom: 1px solid rgba(200, 169, 110, 0.2);
  padding: 64px 24px;
}

.award-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 56px;
}

/* Seal badge — pure CSS, no SVG, no rendering surprises */
.award-badge {
  flex-shrink: 0;
  width: 140px;
  height: 140px;
}

.award-seal {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 110, 0.5);
  box-shadow:
    0 0 0 6px rgba(200, 169, 110, 0.08),
    0 0 0 12px rgba(200, 169, 110, 0.05),
    0 0 28px rgba(200, 169, 110, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(14, 28, 38, 0.7);
}

.award-seal-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  color: var(--gold);
  text-align: center;
  padding: 16px;
}

.award-seal-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
  color: var(--gold);
}

.award-seal-line1,
.award-seal-line2 {
  font-family: 'Jost', sans-serif;
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--gold);
}

.award-seal-line3 {
  font-family: 'Jost', sans-serif;
  font-size: 0.44rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
  color: rgba(200, 169, 110, 0.65);
  margin-top: 2px;
  white-space: nowrap;
}

/* Text content */
.award-content {
  flex: 1;
  min-width: 0;
}

.award-source {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.award-source svg {
  flex-shrink: 0;
  color: var(--gold);
}

.award-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  line-height: 1.1;
  color: var(--salt);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.award-headline em {
  font-style: italic;
  color: var(--clay);
}

.award-subline {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.75;
  margin-bottom: 16px;
}

.award-body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.72;
  color: rgba(245, 237, 224, 0.72);
  margin-bottom: 22px;
  max-width: 580px;
}

.award-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 169, 110, 0.35);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.award-link:hover {
  color: var(--clay);
  border-color: var(--clay);
}
.award-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

@media (max-width: 680px) {
  .award-inner {
    flex-direction: column;
    align-items: center;
    gap: 28px;
    text-align: center;
  }
  .award-source { justify-content: center; }
  .award-body { max-width: 100%; }
  .award-link { margin: 0 auto; }
  #award { padding: 48px 24px; }
}
