/* ============================================================
   ARCADIA — SCOPED STYLES (everything under .arc-site)
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300;0,400;1,300;1,400&family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;1,9..144,300;1,9..144,400&family=Montserrat:wght@300;400;500;600&family=Plus+Jakarta+Sans:wght@400;500&display=swap');

/* Wrapper isolates from Ghost theme. Break out of any container width. */
.arc-site {
  --teal-deep:   #1F4E4A;
  --teal-shade:  #163C39;
  --sage-shadow: #6E807A;
  --gold-aged:   #B8935A;
  --gold-soft:   #D8C39A;
  --bone:        #F4EFE6;
  --bone-deep:   #EDE6D6;
  --ivory:       #FBF8F2;
  --ink:         #1A1F1E;
  --ink-soft:    #3D4543;

  --font-display: 'Cormorant', Georgia, serif;
  --font-body:    'Fraunces', Georgia, serif;
  --font-ui:      'Montserrat', -apple-system, sans-serif;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-glass: cubic-bezier(0.32, 0.72, 0, 1);

  /* Take over the viewport regardless of theme container */
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: var(--bone);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.arc-site *,
.arc-site *::before,
.arc-site *::after {
  box-sizing: border-box;
}

.arc-site h1, .arc-site h2, .arc-site h3, .arc-site h4 {
  font-family: var(--font-display);
  font-weight: 300;
  margin: 0;
  line-height: 1.1;
}

.arc-site p { margin: 0; }
.arc-site a { color: inherit; text-decoration: none; }
.arc-site button {
  font: inherit; border: none; background: none; cursor: pointer; color: inherit;
}
.arc-site img { max-width: 100%; display: block; }

.arc-site .shell { max-width: 1320px; margin: 0 auto; padding: 0 32px; }

/* Subtle global grain */
.arc-site::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.25;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.1, 0 0 0 0 0.12, 0 0 0 0 0.11, 0 0 0 0.05 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ----- NAV (fixed, over hero) ----- */
.arc-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: var(--ivory);
  isolation: isolate;
  transition: padding 0.45s var(--ease-out),
              color 0.85s var(--ease-out),
              box-shadow 0.5s var(--ease-out);
}

/* The bone-white "paint" coat. Starts fully off-screen above the nav,
   slides down as the user scrolls. Solid bone, no blur, crisp bottom edge. */
.arc-nav::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--bone);
  transform: translateY(-100%);
  transition: transform 0.95s cubic-bezier(0.22, 0.8, 0.28, 1);
  pointer-events: none;
  border-bottom: 1px solid rgba(26, 31, 30, 0.1);
}

.arc-nav.scrolled {
  color: var(--ink);
  padding: 14px 32px;
}
.arc-nav.scrolled::before {
  transform: translateY(0);
}

/* Logo cell — left column, anchored start */
.arc-mark {
  display: flex; align-items: center;
  justify-self: start;
}
.arc-mark img {
  display: block;
  height: 18.03px;
  width: auto;
  transition: filter 0.85s var(--ease-out);
}
/* When scrolled, nav bg becomes bone — invert the white logo to black */
.arc-nav.scrolled .arc-mark img {
  filter: brightness(0);
}

/* Links cell — center column, naturally centered by grid */
.arc-nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
  justify-self: center;
}

/* Book Now cell — right column, anchored end */
.arc-nav-right {
  justify-self: end;
  display: flex;
  align-items: center;
}

.arc-nav-link {
  position: relative;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: currentColor;
  opacity: 0.8;
  padding: 6px 0;
  transition: opacity 0.3s ease, color 0.3s ease;
  cursor: pointer;
}
.arc-nav-link:hover { opacity: 1; }
.arc-nav-link.active { opacity: 1; }

/* ====================================================================
   NAV BOOK NOW BUTTON

   Two visual states:
   1. Over video (nav NOT scrolled) — a thin animated luminescent border
      that rotates slowly. "Made of light" treatment with the neomorphic
      shadows turned off and a dark glass fill so text reads against
      bright moments in the video.
   2. Over light page content (nav scrolled) — canonical .arc-btn-neo
      ceramic style identical to the Reserve CTA on the page.

   Sized smaller than the page-body .arc-btn-neo via overrides on this
   class so the nav stays compact while page CTAs are 50% larger.
   ==================================================================== */

/* ====================================================================
   NAV BOOK NOW BUTTON
   Two visual states:
   1. Over video (nav NOT scrolled) — luxury glass treatment: a soft
      white-tint translucent fill with backdrop blur, hairline white
      border, drop shadow + inset top sheen. Hover triggers a slow
      light sweep across the surface and a subtle radial glow. No
      transform on hover (button stays put).
   2. Over light page content (nav scrolled) — canonical .arc-btn-neo
      ceramic bone neumorphic style identical to the Reserve CTA.
   Compact sizing: 6.5px font, 3×7 padding, 4×4 SVG.
   ==================================================================== */

.arc-nav-book {
  font-size: 7px !important;
  letter-spacing: 0.32em;
  padding: 0 2px;
  gap: 1px;
  line-height: 1;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  /* Padding nearly zeroed so the rim traces tightly around the text.
     transform: scale(0.7) shrinks the rendered button to 70% of its
     native size — a mechanical scale that bypasses the font/padding
     floor. transform-origin keeps it anchored to the right edge so
     the nav layout doesn't shift. */
  transform: scale(0.77);
  transform-origin: right center;
}
.arc-nav-book svg {
  width: 3px;
  height: 3px;
}

/* OVER-VIDEO state — luxury glass */
.arc-nav:not(.scrolled) .arc-nav-book {
  background: rgba(255, 255, 255, 0.05) !important;
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  border: 1.5px solid rgba(255, 255, 255, 0.22) !important;
  color: var(--ivory);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.18) !important;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

/* Light sweep across surface (animates on hover) */
.arc-nav:not(.scrolled) .arc-nav-book::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.12),
    transparent
  );
  transform: skewX(-20deg);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

/* Subtle radial glow on hover */
.arc-nav:not(.scrolled) .arc-nav-book::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.06),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 0;
}

/* Keep text + icon above the sweep/glow layers */
.arc-nav:not(.scrolled) .arc-nav-book > * {
  position: relative;
  z-index: 1;
}

/* HOVER — no transform, only surface and glow shifts */
.arc-nav:not(.scrolled) .arc-nav-book:hover {
  background: rgba(244, 239, 230, 0.08) !important;
  border-color: rgba(244, 239, 230, 0.55) !important;
  box-shadow:
    0 6px 16px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(244, 239, 230, 0.22) !important;
  color: var(--bone);
}
.arc-nav:not(.scrolled) .arc-nav-book:hover::before {
  opacity: 1;
  animation: arc-nav-glass-sweep 1.4s ease forwards;
}
.arc-nav:not(.scrolled) .arc-nav-book:hover::after {
  opacity: 1;
}
.arc-nav:not(.scrolled) .arc-nav-book:active {
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.6) !important;
}

@keyframes arc-nav-glass-sweep {
  from { left: -120%; }
  to   { left: 130%; }
}

/* SCROLLED state — canonical .arc-btn-neo ceramic neumorphic, no overrides */
.arc-nav.scrolled .arc-nav-book {
  color: var(--ink);
  border-width: 1.5px !important;
}
.arc-nav.scrolled .arc-nav-book:hover {
  color: var(--teal-deep);
}

.arc-nav-toggle {
  display: none;
  width: 34px; height: 34px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.arc-nav-toggle span {
  width: 22px; height: 1px;
  background: currentColor;
  transition: transform 0.4s var(--ease-out);
}

/* Mobile menu drawer */
.arc-nav-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 86%; max-width: 380px;
  background: var(--bone);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out);
  padding: 100px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.arc-nav-drawer.open { transform: translateX(0); }
.arc-nav-drawer a {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--ink);
}
.arc-nav-drawer a em { font-style: italic; color: var(--teal-deep); }
.arc-nav-drawer-close {
  position: absolute;
  top: 22px; right: 22px;
  width: 36px; height: 36px;
  font-size: 22px;
}

/* ----- VIDEO STAGE (top of page, with nav overlay) ----- */
.arc-video-stage {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  background: #1a1a1a;
}

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

/* Charcoal black fallback when video can't render */
.arc-video-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 30% 25%, rgba(60, 60, 60, 0.5) 0%, transparent 60%),
    radial-gradient(ellipse at 75% 75%, rgba(20, 20, 20, 0.8) 0%, transparent 70%),
    linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 50%, #141414 100%);
}
.arc-video-fallback::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='300' height='300'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.05, 0 0 0 0 0.05, 0 0 0 0 0.05, 0 0 0 0.4 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.4;
  mix-blend-mode: overlay;
  animation: arcGrain 0.7s steps(4) infinite;
}

.arc-video-vignette {
  position: absolute; inset: 0; z-index: 3;
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.5) 90%),
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, transparent 22%, transparent 60%, rgba(0,0,0,0.5) 100%);
  pointer-events: none;
}

.arc-video-grain {
  position: absolute; inset: 0; z-index: 4;
  pointer-events: none;
  opacity: 0.4; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='300' height='300'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.1, 0 0 0 0 0.1, 0 0 0 0 0.08, 0 0 0 0.4 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  animation: arcGrain 0.7s steps(4) infinite;
}

@keyframes arcGrain {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-2%, 1%); }
  50%  { transform: translate(1%, -1%); }
  75%  { transform: translate(-1%, 2%); }
  100% { transform: translate(0, 0); }
}

/* ----- TRUST STRIP (single quote rotation, continuous) ----- */
.arc-trust {
  background: var(--bone);
  padding: 24px 0 64px;
  position: relative;
  border-top: 1px solid rgba(26, 31, 30, 0.06);
}

.arc-trust-stage {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
}

.arc-trust-track {
  position: relative;
  min-height: 72px;
  padding-bottom: 108px;
}

.arc-trust-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 32px;
  gap: 18px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.47s var(--ease-out), transform 0.6s var(--ease-out);
  pointer-events: none;
}
.arc-trust-card.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition-delay: 0.07s;
}
.arc-trust-card.exiting {
  opacity: 0;
  transform: translateY(-16px);
  transition-duration: 0.4s;
}

.arc-trust-primary {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.8vw, 34px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  max-width: 800px;
}

/* Full-width progress line at the bottom — segments matched to card count */
.arc-trust-progress {
  position: relative;
  height: 1px;
  background: rgba(26, 31, 30, 0.1);
  display: flex;
}
.arc-trust-dot {
  flex: 1;
  height: 1px;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  padding: 0;
}
.arc-trust-dot::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 1px;
  width: 0;
  background: var(--teal-deep);
  transition: width 0.3s ease;
}
.arc-trust-dot.active::after {
  width: 100%;
  background: var(--teal-deep);
  animation: arcTrustFill 5s linear forwards;
}
.arc-trust-dot.complete::after {
  width: 100%;
  background: var(--gold-aged);
  animation: none;
}
.arc-trust-dot::before {
  content: '';
  position: absolute;
  top: -12px; bottom: -12px;
  left: 0; right: 0;
}

@keyframes arcTrustFill {
  from { width: 0; }
  to   { width: 100%; }
}

@media (max-width: 768px) {
  .arc-trust { padding: 18px 0 0; }
  .arc-trust-track { min-height: 86px; padding-bottom: 32px; }
  .arc-trust-card { gap: 14px; padding: 0 22px; }
  .arc-trust-primary { font-size: 22px; }
}

/* ----- HERO ARRIVAL section (was the old hero copy) ----- */
.arc-hero {
  position: relative;
  background: var(--bone);
  padding: 128px 0 96px;
  overflow: hidden;
}

.arc-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 32px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.arc-hero-content > * {
  /* Every direct child of the hero content gets centered both as a block
     and at its text level — bulletproofs against any inherited or default
     alignment from elsewhere in the cascade. */
  text-align: center;
  align-self: center;
}

.arc-hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-aged);
  margin-bottom: 28px;
}

.arc-hero h1 {
  font-size: clamp(36px, 6vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 28px;
  margin-left: auto;
  margin-right: auto;
}
.arc-hero h1 em { font-style: italic; color: var(--teal-deep); }

.arc-hero-tagline {
  display: block;
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(17px, 1.6vw, 22px);
  color: var(--ink-soft);
  max-width: 640px;
  line-height: 1.55;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
  text-align: center;
}

.arc-hero-ctas {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 50px !important;
  margin-top: 0 !important;
}

/* ============================================================
   BUTTONS — refined neomorphism, luminescent at edges
   ============================================================ */

@property --beam-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
@property --halo-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

/* ----- 1 · BARE BUTTON ----- */
.arc-btn-bare {
  padding: 21px 6px;
  background: transparent;
  border: none;
  border-radius: 0;
  color: var(--ink);
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 21px;
  overflow: visible;
  cursor: pointer;
  transition: color 0.35s var(--ease-soft);
}
.arc-btn-bare::after {
  content: '';
  position: absolute;
  left: 6px; bottom: 9px;
  height: 1px; width: 0;
  background: linear-gradient(90deg, var(--gold-aged) 0%, var(--gold-soft) 55%, transparent 100%);
  transition: width 0.6s var(--ease-out);
}
.arc-btn-bare:hover { color: var(--teal-deep); }
.arc-btn-bare:hover::after { width: calc(100% - 54px); }

.arc-btn-bare svg {
  width: 18px; height: 18px;
  stroke: currentColor; fill: none; stroke-width: 1.5;
  transition: transform 0.5s var(--ease-out), filter 0.4s ease;
}
.arc-btn-bare:hover svg {
  transform: translateX(12px);
  filter: drop-shadow(0 0 4px rgba(184, 147, 90, 0.45));
}

/* Light variant for use on dark surfaces */
.arc-btn-bare-light { color: var(--ivory); }
.arc-btn-bare-light:hover { color: var(--gold-soft); }
.arc-btn-bare-light::after {
  background: linear-gradient(90deg, var(--gold-soft) 0%, rgba(216, 195, 154, 0.4) 60%, transparent 100%);
}

/* ----- 2 · NEUMORPHIC BUTTON ----- */
.arc-btn-neo {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
  font-weight: 500 !important;
  font-size: 13.5px !important;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 27px 54px;
  border-radius: 999px;
  background: linear-gradient(140deg, var(--ivory) 0%, var(--bone) 100%);
  color: var(--ink);
  border: 1px solid rgba(184, 147, 90, 0);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 24px;
  position: relative;
  transition:
    box-shadow 0.45s var(--ease-soft),
    color 0.3s ease,
    border-color 0.45s ease;
  box-shadow:
    7px 7px 18px rgba(166, 145, 110, 0.36),
    -7px -7px 18px rgba(255, 251, 244, 0.95),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.arc-btn-neo svg {
  width: 21px; height: 21px;
  stroke: currentColor; fill: none; stroke-width: 1.5;
  transition: transform 0.45s var(--ease-out);
  flex-shrink: 0;
}
.arc-btn-neo:hover {
  color: var(--teal-deep);
  border-color: rgba(184, 147, 90, 0.32);
  box-shadow:
    inset 5px 5px 13px rgba(166, 145, 110, 0.42),
    inset -5px -5px 13px rgba(255, 251, 244, 0.95),
    0 10px 28px -12px rgba(184, 147, 90, 0.42);
}
.arc-btn-neo:hover svg { transform: translateX(3px); }
.arc-btn-neo:active {
  box-shadow:
    inset 8px 8px 18px rgba(166, 145, 110, 0.5),
    inset -5px -5px 13px rgba(255, 251, 244, 0.9),
    0 4px 16px -10px rgba(184, 147, 90, 0.32);
}

/* Smaller variant — for inline placements */
.arc-btn-neo-sm {
  font-size: 12px !important;
  padding: 21px 42px;
  letter-spacing: 0.22em;
  gap: 20px;
  box-shadow:
    5px 5px 13px rgba(166, 145, 110, 0.3),
    -5px -5px 13px rgba(255, 251, 244, 0.9),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}
.arc-btn-neo-sm svg { width: 18px; height: 18px; }
.arc-btn-neo-sm:hover {
  box-shadow:
    inset 4px 4px 10px rgba(166, 145, 110, 0.36),
    inset -4px -4px 10px rgba(255, 251, 244, 0.9),
    0 8px 20px -12px rgba(184, 147, 90, 0.38);
}
.arc-btn-neo-sm:active {
  box-shadow:
    inset 6px 6px 15px rgba(166, 145, 110, 0.44),
    inset -4px -4px 10px rgba(255, 251, 244, 0.85);
}

/* Charcoal variant — one-tone neumorphism on dark surfaces */
.arc-btn-neo-charcoal {
  background: #1B1A18;
  color: rgba(244, 239, 230, 0.85);
  border-color: transparent;
  box-shadow:
    8px 8px 20px rgba(0, 0, 0, 0.7),
    -6px -6px 16px rgba(255, 255, 255, 0.022),
    inset 0 1px 0 rgba(255, 255, 255, 0.025);
}
.arc-btn-neo-charcoal:hover {
  color: rgba(244, 239, 230, 0.96);
  border-color: transparent;
  box-shadow:
    inset 6px 6px 14px rgba(0, 0, 0, 0.7),
    inset -5px -5px 12px rgba(255, 255, 255, 0.022);
}
.arc-btn-neo-charcoal:active {
  border-color: transparent;
  box-shadow:
    inset 8px 8px 18px rgba(0, 0, 0, 0.8),
    inset -5px -5px 12px rgba(255, 255, 255, 0.022);
}

/* ----- 3 · STANDARD PILL BUTTONS ----- */
.arc-btn {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 16.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  padding: 25px 48px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  transition: all 0.32s var(--ease-soft);
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.arc-btn svg {
  width: 21px; height: 21px;
  stroke: currentColor; fill: none; stroke-width: 1.5;
  position: relative; z-index: 2;
  transition: transform 0.4s var(--ease-out);
}
.arc-btn > * { position: relative; z-index: 2; }

.arc-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(216, 195, 154, 0.45) 50%, transparent 70%);
  transform: translateX(-110%);
  transition: transform 0.7s var(--ease-glass);
  z-index: 1;
  pointer-events: none;
}
.arc-btn:hover::before { transform: translateX(110%); }

/* Primary — special: orbiting halo + shimmering ring */
.arc-btn-primary {
  background: linear-gradient(140deg, var(--ivory) 0%, var(--bone) 100%);
  color: var(--ink);
  overflow: visible;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 8px 22px -10px rgba(166, 145, 110, 0.5);
}
.arc-btn-primary::before {
  display: block;
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  background: conic-gradient(
    from var(--halo-angle),
    rgba(255, 247, 220, 0.4)    0deg,
    rgba(255, 252, 232, 0.62)  45deg,
    rgba(255, 247, 220, 0.4)   90deg,
    rgba(255, 252, 232, 0.62) 135deg,
    rgba(255, 247, 220, 0.4)  180deg,
    rgba(255, 252, 232, 0.62) 225deg,
    rgba(255, 247, 220, 0.4)  270deg,
    rgba(255, 252, 232, 0.62) 315deg,
    rgba(255, 247, 220, 0.4)  360deg
  );
  filter: blur(9px);
  opacity: 0;
  transform: none;
  transition: opacity 0.55s var(--ease-soft);
  pointer-events: none;
  z-index: -1;
}
.arc-btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: conic-gradient(
    from var(--beam-angle),
    rgba(255, 248, 220, 0.25)  0deg,
    rgba(255, 250, 228, 0.4)   20deg,
    #FFF9DC                    55deg,
    #FBE7B5                    70deg,
    rgba(255, 250, 228, 0.42)  100deg,
    rgba(255, 248, 220, 0.28)  150deg,
    rgba(255, 250, 228, 0.4)   200deg,
    #FFF6D2                    235deg,
    #F4DDA0                    250deg,
    rgba(255, 250, 228, 0.42)  280deg,
    rgba(255, 248, 220, 0.28)  330deg,
    rgba(255, 248, 220, 0.25)  360deg
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.55s var(--ease-soft);
  pointer-events: none;
  z-index: 3;
}
.arc-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 12px 30px -10px rgba(255, 235, 200, 0.5);
}
.arc-btn-primary:hover::after {
  opacity: 1;
  animation: arc-beam-orbit 2.2s linear infinite;
}
.arc-btn-primary:hover::before {
  opacity: 0.9;
  animation: arc-halo-drift 3.5s linear infinite reverse;
}
.arc-btn-primary:hover svg { transform: translateX(2px); }

.arc-btn-primary:active {
  transform: translateY(0);
  border-color: #E8CC8C;
  box-shadow:
    0 0 0 1px #E8CC8C,
    0 0 0 4px rgba(255, 248, 220, 0.32),
    0 0 32px -4px rgba(255, 235, 195, 0.6),
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 6px 18px -10px rgba(166, 145, 110, 0.5);
}
.arc-btn-primary:active::after,
.arc-btn-primary:active::before {
  opacity: 0;
  animation: none;
}

@keyframes arc-beam-orbit {
  to { --beam-angle: 360deg; }
}
@keyframes arc-halo-drift {
  to { --halo-angle: 360deg; }
}

@media (prefers-reduced-motion: reduce) {
  .arc-btn-primary:hover::after,
  .arc-btn-primary:hover::before {
    animation: none;
    background: conic-gradient(
      from 0deg,
      var(--gold-aged),
      var(--gold-soft),
      var(--gold-aged),
      var(--gold-soft),
      var(--gold-aged)
    );
  }
}

.arc-btn-ghost {
  color: var(--ivory);
  border-color: rgba(251, 248, 242, 0.4);
  background: transparent;
}
.arc-btn-ghost:hover {
  background: rgba(251, 248, 242, 0.08);
  border-color: var(--ivory);
  box-shadow: 0 0 0 1px rgba(216, 195, 154, 0.18);
}

.arc-btn-outline {
  color: var(--ink);
  border-color: rgba(26, 31, 30, 0.25);
  background: transparent;
}
.arc-btn-outline:hover {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
  box-shadow: 0 10px 26px -12px rgba(26, 31, 30, 0.55);
}
.arc-btn-outline:hover svg { transform: translateX(2px); }

.arc-btn-dark {
  background: linear-gradient(140deg, #245854 0%, var(--teal-deep) 100%);
  color: var(--ivory);
  box-shadow:
    inset 0 1px 0 rgba(216, 195, 154, 0.14),
    0 8px 22px -12px rgba(11, 36, 33, 0.55);
}
.arc-btn-dark:hover {
  background: linear-gradient(140deg, var(--teal-deep) 0%, var(--teal-shade) 100%);
  transform: translateY(-1px);
  color: var(--gold-soft);
  box-shadow:
    inset 0 1px 0 rgba(216, 195, 154, 0.22),
    inset 0 0 26px rgba(216, 195, 154, 0.08),
    0 14px 32px -10px rgba(11, 36, 33, 0.7);
}
.arc-btn-dark:hover svg { transform: translateX(2px); }

.arc-btn-gold {
  background: var(--gold-aged);
  color: var(--ivory);
}
.arc-btn-gold:hover { background: #a07f47; }

.arc-scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(251,248,242,0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  animation: arcPulse 2.4s ease-in-out infinite;
}
.arc-scroll-cue::after {
  content: '';
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, rgba(251,248,242,0.6), transparent);
}
@keyframes arcPulse {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) translateY(0); }
  50%      { opacity: 1; transform: translateX(-50%) translateY(6px); }
}

/* ----- AVAILABILITY ----- */
.arc-availability {
  background: var(--ivory);
  padding: 0 0 64px;
  position: relative;
  z-index: 10;
  margin-top: -60px;
}
.arc-avail-card {
  max-width: 1120px;
  margin: 0 auto;
  background: var(--ivory);
  border-radius: 24px;
  padding: 32px 40px;
  box-shadow: 0 2px 4px rgba(26,31,30,0.06), 0 24px 48px rgba(26,31,30,0.08);
  border: 1px solid rgba(26,31,30,0.06);
}
.arc-avail-form {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr auto;
  gap: 24px;
  align-items: end;
}
.arc-field { display: flex; flex-direction: column; gap: 6px; }
.arc-field label {
  font-family: var(--font-ui);
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sage-shadow);
}
.arc-field select,
.arc-field input {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  padding: 8px 0 10px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(26,31,30,0.2);
  color: var(--ink);
  outline: none;
  width: 100%;
  transition: border-color 0.3s ease;
}
.arc-field input:focus,
.arc-field select:focus { border-bottom-color: var(--teal-deep); }

/* ----- SECTION INTROS ----- */
.arc-section-intro {
  padding: 128px 0 64px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}
.arc-section-intro .num {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-aged);
  margin-bottom: 16px;
}
.arc-section-intro h2 {
  font-size: clamp(40px, 6vw, 80px);
  line-height: 0.96;
  letter-spacing: -0.02em;
}
.arc-section-intro h2 em { font-style: italic; color: var(--teal-deep); }
.arc-section-intro .right p {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 720px;
}

/* Forces a line break only on desktop. Hidden on mobile so paragraphs
   with hard breaks don't create awkward orphan lines on small screens. */
.arc-desktop-break { display: inline; }
@media (max-width: 768px) {
  .arc-desktop-break { display: none; }
}

/* ----- STAY (spaces preview) ----- */
.arc-stay { background: var(--bone); padding-bottom: 128px; }
.arc-stay-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.arc-stay-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  color: var(--ivory);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  min-height: 540px;
  transition: transform 0.6s var(--ease-out);
}
.arc-stay-card:hover { transform: translateY(-3px); }
.arc-stay-card .bg {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.94) saturate(1.0);
  transition:
    transform 1.4s var(--ease-out),
    filter 0.55s var(--ease-soft);
}
.arc-stay-card:hover .bg {
  transform: scale(1.05);
  filter: brightness(1.12) saturate(1.05);
}

/* Dark gradient overlay so headline + meta stay legible against the photo.
   Lightens on hover so the photo reads brighter underneath the text. */
.arc-stay-card::before {
  content: '';
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 30%, rgba(0,0,0,0.62) 100%);
  pointer-events: none;
  transition: opacity 0.55s var(--ease-soft);
  opacity: 1;
}
.arc-stay-card:hover::before {
  opacity: 0.7;
}

/* Subtle film-grain noise overlay on top of the photo */
.arc-stay-card::after {
  content: '';
  position: absolute; inset: 0;
  z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='2'/><feColorMatrix values='0 0 0 0 0, 0 0 0 0 0, 0 0 0 0 0, 0 0 0 0.35 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.18;
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* small note above the grid — "two sanctuaries to start" */
.arc-stay-note {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 14px;
  color: var(--sage-shadow);
  text-align: right;
  margin-bottom: 18px;
}
.arc-stay-note::before {
  content: '— ';
  color: var(--gold-aged);
}

/* ----- HORIZONTAL PHOTO GALLERY ----- */
.arc-gallery {
  margin-top: 96px;
  position: relative;
}

.arc-gallery-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.arc-gallery-head .left .num {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-aged);
  margin-bottom: 12px;
}

.arc-gallery-head h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.015em;
}
.arc-gallery-head h3 em { font-style: italic; color: var(--teal-deep); }

/* Filter dropdown — sits inline with the h3 text, looks identical to the
   inline italic <em> at rest, reveals a small chevron and an opening menu */
.arc-gallery-filter {
  display: inline-block;
  position: relative;
  vertical-align: baseline;
}
.arc-gallery-filter-trigger {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  line-height: 1;
}
.arc-gallery-filter-label {
  /* Inherits h3 size + display family from the parent <h3>; we just
     re-state the italic + teal-deep coloring so it matches the previous
     static <em> exactly. */
  font-style: italic;
  color: var(--teal-deep);
  transition: color 0.3s var(--ease-soft);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.4s var(--ease-soft), color 0.3s var(--ease-soft);
}
.arc-gallery-filter-trigger:hover .arc-gallery-filter-label {
  border-bottom-color: rgba(184, 147, 90, 0.5);
}
.arc-gallery-filter-chev {
  width: 0.6em;
  height: 0.6em;
  stroke: var(--ink);
  stroke-width: 1;
  flex: 0 0 auto;
  align-self: center;
  display: block;
  transform-origin: center;
  transition: transform 0.35s var(--ease-soft);
  z-index: 2;
}

/* Water-ripple circles around the chevron — two rings stagger-traveling
   outward, capped at chevron-icon footprint so the rings never exceed
   what a solid version of the icon would be. */
.arc-gallery-filter-trigger {
  overflow: visible;
}
.arc-gallery-filter-chev-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* Vertical nudge to align with the italic baseline; chevron itself
     no longer offsets so both ripple rings stay perfectly centered on it */
  top: 0.08em;
  margin-left: 0.18em;
  width: 0.6em;
  height: 0.6em;
}

/* Common shared styles for both ripple rings */
.arc-gallery-filter-chev-wrap::before,
.arc-gallery-filter-chev-wrap::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.6em;
  height: 0.6em;
  border-radius: 50%;
  border: 1px solid var(--gold-aged);
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
  pointer-events: none;
  animation: arc-chev-ripple 2s var(--ease-out) infinite;
  z-index: 1;
  font-size: inherit;
  box-sizing: border-box;
}

/* Second ring: delayed half a cycle so it overlaps the first continuously */
.arc-gallery-filter-chev-wrap::after {
  animation-delay: 1s;
}

@keyframes arc-chev-ripple {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
    border-width: 1px;
  }
  15% {
    opacity: 0.7;
  }
  90% {
    transform: translate(-50%, -50%) scale(1.87);
    opacity: 0;
    border-width: 0.5px;
  }
  100% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
  }
}

/* Third outer ring — larger peak, 50% the transparency of the inner rings.
   Lives on an extra <span class="arc-gallery-filter-chev-outer"> inside
   the wrap so it can have its own ::before pseudo with a separate animation. */
.arc-gallery-filter-chev-outer {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.6em;
  height: 0.6em;
  transform: translate(-50%, -50%);
  pointer-events: none;
  font-size: inherit;
}
.arc-gallery-filter-chev-outer::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid var(--gold-aged);
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
  animation: arc-chev-ripple-outer 2s var(--ease-out) infinite;
  animation-delay: 0.5s;
}

@keyframes arc-chev-ripple-outer {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
    border-width: 1px;
  }
  15% {
    /* 50% the transparency of the inner rings — their peak was 0.7,
       this one peaks at 0.35 */
    opacity: 0.35;
  }
  90% {
    transform: translate(-50%, -50%) scale(2.64);
    opacity: 0;
    border-width: 0.5px;
  }
  100% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
  }
}

/* Pause the outer ring on hover/open along with the inner rings */
.arc-gallery-filter-trigger:hover .arc-gallery-filter-chev-outer::before,
.arc-gallery-filter.is-open .arc-gallery-filter-chev-outer::before {
  animation-play-state: paused;
  opacity: 0;
}

/* Pause both ripple rings when user is interacting (hover or menu open) */
.arc-gallery-filter-trigger:hover .arc-gallery-filter-chev-wrap::before,
.arc-gallery-filter-trigger:hover .arc-gallery-filter-chev-wrap::after,
.arc-gallery-filter.is-open .arc-gallery-filter-chev-wrap::before,
.arc-gallery-filter.is-open .arc-gallery-filter-chev-wrap::after {
  animation-play-state: paused;
  opacity: 0;
}

.arc-gallery-filter.is-open .arc-gallery-filter-chev {
  transform: rotate(-180deg);
}

/* The menu — appears below the trigger, italic Cormorant items in
   the same display family but smaller for a cleaner picker feel */
.arc-gallery-filter-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin: 12px 0 0;
  padding: 8px 0;
  list-style: none;
  background: var(--ivory);
  border: 1px solid rgba(26, 31, 30, 0.08);
  border-radius: 10px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 18px 40px -16px rgba(26, 31, 30, 0.22),
    0 4px 12px -6px rgba(26, 31, 30, 0.08);
  min-width: max(160px, 100%);
  z-index: 30;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition:
    opacity 0.32s var(--ease-soft),
    transform 0.32s var(--ease-soft);
}
.arc-gallery-filter.is-open .arc-gallery-filter-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.arc-gallery-filter-menu li {
  padding: 10px 22px;
  cursor: pointer;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink-soft);
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.arc-gallery-filter-menu li em {
  font-style: italic;
  color: inherit;
}
.arc-gallery-filter-menu li:hover,
.arc-gallery-filter-menu li:focus-visible {
  background: rgba(184, 147, 90, 0.06);
  color: var(--teal-deep);
  outline: none;
}
.arc-gallery-filter-menu li.is-active {
  color: var(--teal-deep);
}

/* Filtered cards — display: none keeps the rail layout clean
   without orphan gaps. The rail handles its scroll naturally. */
.arc-gallery-card.is-filtered-out {
  display: none;
}

/* Empty state — shown when the active filter has no matching cards */
.arc-gallery-empty {
  text-align: center;
  padding: 64px 32px;
  margin-top: 16px;
}
.arc-gallery-empty p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--sage-shadow);
  line-height: 1.55;
  max-width: 460px;
  margin: 0 auto;
}

.arc-gallery-controls {
  display: flex;
  gap: 8px;
}
.arc-gallery-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(26, 31, 30, 0.15);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.arc-gallery-btn:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--ivory);
}
.arc-gallery-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.arc-gallery-btn svg {
  width: 14px; height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.arc-gallery-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 3);
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-behavior: smooth;
  padding-bottom: 8px;
}
.arc-gallery-track::-webkit-scrollbar { display: none; }

.arc-gallery-card {
  position: relative;
  scroll-snap-align: start;
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: var(--ivory);
}
.arc-gallery-card .bg {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.94) saturate(1.0);
  transition:
    transform 1.2s var(--ease-out),
    filter 0.55s var(--ease-soft);
}
.arc-gallery-card:hover .bg {
  transform: scale(1.05);
  filter: brightness(1.08) saturate(1.05);
}

/* Dark gradient overlay so the title and quote stay legible against the photo */
.arc-gallery-card::before {
  content: '';
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 30%, rgba(0,0,0,0.7) 100%);
  pointer-events: none;
  transition: opacity 0.55s var(--ease-soft);
}
.arc-gallery-card:hover::before {
  opacity: 0.78;
}

/* Subtle film-grain noise overlay */
.arc-gallery-card::after {
  content: '';
  position: absolute; inset: 0;
  z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='2'/><feColorMatrix values='0 0 0 0 0, 0 0 0 0 0, 0 0 0 0 0, 0 0 0 0.35 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.16;
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* Color treatments retained as fallback if image fails to load.
   When the .bg <img> is present, it covers these gradients entirely.
   .g1–.g5 use Oasis-leaning palettes (warm earth/gold) since all
   current photos are from Mexico. */
.arc-gallery-card.g1 {
  background: linear-gradient(140deg, #1F4E4A 0%, #4A6B5B 50%, #6E807A 100%);
}
.arc-gallery-card.g2 {
  background: linear-gradient(140deg, #6B5132 0%, #B8935A 60%, #D8C39A 100%);
}
.arc-gallery-card.g3 {
  background: linear-gradient(140deg, #3E5258 0%, #7E97A8 70%, #B8C4D0 100%);
}
.arc-gallery-card.g4 {
  background: linear-gradient(140deg, #2A4F47 0%, #547062 50%, #8E9C8E 100%);
}
.arc-gallery-card.g5 {
  background: linear-gradient(140deg, #5E4830 0%, #9D7E48 50%, #C4A57A 100%);
}

.arc-gallery-card .content {
  position: relative;
  z-index: 2;
}
.arc-gallery-card .ey {
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 6px;
}
.arc-gallery-card h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.1;
  color: var(--ivory);
  margin-bottom: 14px;
}
.arc-gallery-card .quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(251, 248, 242, 0.85);
  border-top: 1px solid rgba(251, 248, 242, 0.25);
  padding-top: 12px;
  margin-top: 6px;
}

.arc-gallery-cta {
  margin-top: 56px;
  display: flex;
  justify-content: center;
}

.arc-exp-cta {
  margin-top: 56px;
  display: flex;
  justify-content: center;
}
/* Color treatments retained as fallback if image fails to load.
   When the .bg <img> is present, it covers these gradients entirely. */
.arc-stay-card.solace {
  background:
    linear-gradient(135deg, #1F4E4A 0%, #3F5A4D 35%, #547062 70%, #6E807A 100%);
}
.arc-stay-card.vesper {
  background:
    linear-gradient(135deg, #6B5132 0%, #9D7E48 30%, #B8935A 60%, #D8C39A 100%);
}
.arc-stay-card.creek {
  background:
    linear-gradient(135deg, #3E5258 0%, #5E7682 40%, #7E97A8 70%, #B8C4D0 100%);
}
.arc-stay-card .content { position: relative; z-index: 2; }
.arc-stay-card .ey {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 8px;
}
.arc-stay-card h3 {
  font-size: clamp(24px, 2.6vw, 40px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  color: var(--ivory);
}
.arc-stay-card h3 em { font-style: italic; color: var(--gold-soft); }
.arc-stay-card .meta {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 14px;
  color: rgba(251,248,242,0.85);
  margin-top: 6px;
}
.arc-stay-card .price-row {
  margin-top: 16px; padding-top: 16px;
  border-top: 1px solid rgba(251,248,242,0.2);
  display: flex; justify-content: space-between; align-items: baseline;
}
.arc-stay-card .price { font-family: var(--font-display); font-size: 18px; }
.arc-stay-card .price em {
  font-family: var(--font-ui); font-style: normal;
  font-size: 9px; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(251,248,242,0.6); margin-right: 6px;
}
.arc-stay-card .arrow {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  width: 48px;
  height: 14px;
  position: relative;
  overflow: visible;
}
.arc-stay-card .arrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-soft) 30%, var(--gold-aged) 100%);
  transform: translateY(-50%);
  transition: width 0.55s var(--ease-out), box-shadow 0.4s ease;
}
.arc-stay-card .arrow svg {
  width: 14px; height: 14px;
  stroke: var(--gold-soft);
  fill: none;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  position: relative;
  z-index: 2;
  transition: transform 0.55s var(--ease-out), stroke 0.3s ease, filter 0.4s ease;
}
.arc-stay-card:hover .arrow::before {
  width: 36px;
  box-shadow: 0 0 6px rgba(184, 147, 90, 0.45);
}
.arc-stay-card:hover .arrow svg {
  stroke: var(--gold-aged);
  transform: translateX(2px);
  filter: drop-shadow(0 0 4px rgba(184, 147, 90, 0.45));
}

/* ----- EXPERIENCES ----- */
.arc-experiences { background: var(--ivory); padding-bottom: 128px; }
/* Horizontal scroll rail wrapper. The shell padding is bypassed so cards
   can hint into the right edge ("more available", scroll right). */
.arc-exp-rail {
  position: relative;
  margin: 0 -32px;
  padding: 8px 32px 12px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  /* Hide scrollbar — Firefox + Edge */
  scrollbar-width: none;
  -ms-overflow-style: none;
}
/* Hide scrollbar — Chrome / Safari / Webkit */
.arc-exp-rail::-webkit-scrollbar {
  display: none;
  height: 0;
  width: 0;
}

/* Right-edge fade hint to suggest more cards live off-screen */
.arc-exp-rail::after {
  content: '';
  position: sticky;
  right: 0; top: 0; bottom: 0;
  width: 64px;
  pointer-events: none;
  background: linear-gradient(to right, transparent, var(--bone));
}

.arc-exp-services {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  padding-right: 64px; /* breathing room past last card before fade */
}

.arc-experiences .arc-exp-card {
  background: var(--ivory);
  border: 1px solid rgba(26,31,30,0.08);
  border-radius: 24px;
  padding: 32px;
  display: flex; flex-direction: column;
  gap: 12px;
  flex: 0 0 280px;
  scroll-snap-align: start;
  transition: all 0.3s ease;
}
.arc-experiences .arc-exp-card:hover {
  border-color: var(--teal-deep);
  transform: translateY(-2px);
  box-shadow: 0 1px 2px rgba(26,31,30,0.04), 0 8px 24px rgba(26,31,30,0.06);
}
.arc-experiences .arc-exp-card .ico {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bone);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 8px;
}
.arc-experiences .arc-exp-card .ico svg {
  width: 20px; height: 20px;
  stroke: var(--teal-deep); fill: none; stroke-width: 1.3;
}
.arc-experiences .arc-exp-card h4 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 400;
  letter-spacing: -0.005em;
}
.arc-experiences .arc-exp-card .meta-text {
  font-size: 13px; line-height: 1.55;
  color: var(--ink-soft); flex: 1;
}
.arc-experiences .arc-exp-card .price {
  font-family: var(--font-ui);
  font-size: 10px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--sage-shadow);
  margin-top: 8px; padding-top: 12px;
  border-top: 1px solid rgba(26,31,30,0.08);
}

/* ----- REVIEWS ----- */
.arc-reviews {
  background: #1c1f1e;
  color: var(--ivory);
  padding-bottom: 128px;
  position: relative;
  overflow: hidden;
}
.arc-reviews::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(216,195,154,0.06), transparent 60%);
  bottom: -200px; right: -200px;
  pointer-events: none;
}
.arc-reviews .arc-section-intro .num { color: var(--gold-soft); }
.arc-reviews .arc-section-intro h2 { color: var(--ivory); }
.arc-reviews .arc-section-intro h2 em { color: var(--gold-soft); }
.arc-reviews .arc-section-intro .right p { color: rgba(251,248,242,0.6); }

/* Force the reviews subhead onto a single line on desktop. The default
   .arc-section-intro .right p has max-width: 720px which wraps this
   particular sentence onto two lines. We grant it more room here.
   On narrow viewports (<900px), let it wrap naturally so it doesn't
   overflow horizontally. */
.arc-reviews .arc-section-intro .right .arc-reviews-sub {
  max-width: none;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .arc-reviews .arc-section-intro .right .arc-reviews-sub {
    white-space: normal;
    max-width: 720px;
  }
}

.arc-reviews-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(360px, calc((100% - 48px) / 3));
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-behavior: smooth;
  padding: 24px 32px 32px;
  margin: -24px -32px 0;
}
.arc-reviews-grid::-webkit-scrollbar { display: none; }

.arc-reviews-cta {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.arc-reviews-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.4;
  letter-spacing: 0.005em;
  color: rgba(251, 248, 242, 0.78);
  max-width: 640px;
  margin: 0;
}
.arc-reviews-cta .arc-btn-bare {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
  font-weight: 500 !important;
  font-size: 15px !important;
  letter-spacing: 0.42em;
  gap: 27px;
}
.arc-reviews-cta .arc-btn-bare svg {
  width: 24px;
  height: 24px;
}
.arc-review {
  background: rgba(251,248,242,0.025);
  border: 1px solid rgba(251,248,242,0.08);
  border-radius: 12px;
  padding: 32px;
  display: flex; flex-direction: column;
  gap: 18px;
  position: relative;
  scroll-snap-align: start;
  transition:
    background 0.4s var(--ease-out),
    border-color 0.4s var(--ease-out),
    transform 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out);
}
.arc-review:hover {
  background: rgba(251,248,242,0.05);
  border-color: rgba(216, 195, 154, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}
.arc-review .stars {
  display: flex;
  gap: 4px;
}
.arc-review .stars svg {
  width: 14px;
  height: 14px;
  fill: var(--gold-aged);
  stroke: var(--gold-aged);
  stroke-width: 0.5;
  stroke-linejoin: round;
  filter: drop-shadow(0 1px 2px rgba(184, 147, 90, 0.3));
}
.arc-review:hover .stars svg {
  fill: var(--gold-soft);
  stroke: var(--gold-soft);
}
.arc-review blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.3;
  color: rgba(251,248,242,0.92);
  flex: 1; margin: 0;
}
.arc-review .who {
  margin-top: 8px; padding-top: 18px;
  border-top: 1px solid rgba(251,248,242,0.1);
  transition: border-color 0.4s var(--ease-out);
}
.arc-review:hover .who {
  border-color: rgba(216, 195, 154, 0.25);
}
.arc-review .name {
  font-family: var(--font-ui);
  font-size: 11px; letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-bottom: 4px;
}
.arc-review .where {
  font-family: var(--font-body); font-style: italic;
  font-size: 13px;
  color: rgba(251,248,242,0.5);
}

/* ----- FAQ ----- */
.arc-faq { background: var(--bone); padding-bottom: 128px; }
.arc-faq-list { max-width: 880px; margin: 0 auto; }
.arc-faq-item { border-bottom: 1px solid rgba(26,31,30,0.12); }
.arc-faq-item:first-child { border-top: 1px solid rgba(26,31,30,0.12); }
.arc-faq-q {
  width: 100%;
  text-align: left;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  transition: color 0.3s ease;
}
.arc-faq-q:hover { color: var(--teal-deep); }
.arc-faq-q .text {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.2;
}
.arc-faq-q .icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(26,31,30,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s var(--ease-soft);
  position: relative;
}
.arc-faq-q .icon::before,
.arc-faq-q .icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform 0.4s var(--ease-soft);
}
.arc-faq-q .icon::before { width: 12px; height: 1px; }
.arc-faq-q .icon::after { width: 1px; height: 12px; }
.arc-faq-item.open .arc-faq-q .icon {
  background: var(--teal-deep);
  border-color: var(--teal-deep);
  color: var(--ivory);
}
.arc-faq-item.open .arc-faq-q .icon::after { transform: scaleY(0); }
.arc-faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s var(--ease-out);
}
.arc-faq-a-inner { padding: 0 0 32px; max-width: 720px; }
.arc-faq-a-inner p {
  font-family: var(--font-body);
  font-size: 16px; line-height: 1.65;
  color: var(--ink-soft);
}
.arc-faq-a-inner em { font-style: italic; color: var(--teal-deep); }

/* ----- BOOK NOW (final CTA — modern minimal) ----- */
.arc-book-cta {
  background: var(--ivory);
  color: var(--ink);
  padding: 192px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.arc-book-cta::before {
  /* subtle warm halo, almost invisible — adds depth without color */
  content: '';
  position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(216,195,154,0.08), transparent 60%);
  top: -300px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.arc-book-cta-inner {
  position: relative; z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 32px;
}
.arc-book-cta .ey {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--sage-shadow);
  margin-bottom: 28px;
}
.arc-book-cta h2 {
  font-size: clamp(36px, 6vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
  color: var(--ink);
}
.arc-book-cta h2 em { font-style: italic; color: var(--teal-deep); }
.arc-book-cta p {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 19px;
  color: var(--ink-soft);
  margin: 0 auto 56px;
  max-width: 560px;
  line-height: 1.55;
  font-weight: 300;
}
.arc-book-cta .ctas {
  display: flex; gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ----- FOOTER ----- */
.arc-footer {
  background: var(--ink);
  color: rgba(251,248,242,0.78);
  padding: 96px 0 32px;
}
.arc-footer-top {
  display: grid;
  grid-template-columns: minmax(360px, 2fr) auto minmax(260px, 1.2fr);
  gap: 56px;
  margin-bottom: 48px;
  align-items: start;
}

/* Asymmetric horizontal shift on the second + third columns.
   Visit moves left, Reach Us moves right — pulling them away from the
   brand toward the viewport edges for a more open footer composition. */
.arc-footer-top > .arc-footer-col:nth-of-type(2) {
  transform: translateX(-6vw);
}
.arc-footer-top > .arc-footer-col.arc-footer-reach {
  transform: translateX(6vw);
}
@media (max-width: 1100px) {
  /* Disable the asymmetric shift at smaller widths to avoid overlap */
  .arc-footer-top > .arc-footer-col:nth-of-type(2),
  .arc-footer-top > .arc-footer-col.arc-footer-reach {
    transform: none;
  }
}
.arc-footer-brand .mark {
  display: flex; align-items: center; gap: 14px; margin-bottom: 24px;
}
.arc-footer-brand svg {
  width: 36px; height: 36px;
  stroke: var(--ivory); stroke-width: 1.1; fill: none;
}
.arc-footer-brand .word {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 300;
  letter-spacing: 0.42em;
  color: var(--ivory);
}
.arc-footer-brand p {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 21px;
  color: rgba(251,248,242,0.6);
  line-height: 1.55;
  max-width: 440px;
}
.arc-footer-col .label {
  font-family: var(--font-ui);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(251,248,242,0.5);
  margin-bottom: 18px;
}
.arc-footer-col a, .arc-footer-col .item {
  display: block;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(251,248,242,0.78);
  line-height: 2.4;
  transition: color 0.3s ease;
  cursor: pointer;
}
.arc-footer-col a:hover { color: #fff; }

/* ============================================================
   REACH US column — sleek vertical, no panel/box treatment.
   Sits as the third column alongside Brand and Visit.
   ============================================================ */

.arc-footer-reach {
  /* No background, no border, no padding — sits flush like Visit column */
}

/* "Connect with your Host" — sleek italic eyebrow line */
.arc-site .arc-footer-host-intro {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 1.4vw, 22px);
  color: var(--ivory);
  margin: 0 0 22px;
  line-height: 1.25;
  letter-spacing: -0.005em;
}

/* Each contact (email / phone) — icon left of value, horizontal row */
.arc-footer-contact {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 14px !important;
  padding: 0 !important;
  margin-bottom: 12px;
  border: none !important;
  text-decoration: none;
  line-height: 1.3 !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  font-family: inherit !important;
  position: relative;
}
.arc-footer-contact:first-of-type,
.arc-footer-contact:last-of-type {
  padding: 0 !important;
  border: none !important;
  margin-bottom: 12px;
}
.arc-footer-contact::before { display: none; }

/* The "key" span is now an icon container instead of an eyebrow label */
.arc-footer-contact .key {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(216, 195, 154, 0.24);
  color: var(--gold-soft);
  flex: 0 0 auto;
  transition: all 0.32s var(--ease-soft);
  /* Reset typography rules from prior eyebrow-text treatment */
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: normal;
  text-transform: none;
  opacity: 1;
}
.arc-footer-contact .key svg {
  width: 14px;
  height: 14px;
  display: block;
}
.arc-footer-contact:hover .key {
  border-color: var(--gold-soft);
  background: rgba(216, 195, 154, 0.06);
}

.arc-footer-contact .val {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  color: rgba(251, 248, 242, 0.92);
  letter-spacing: 0;
  transition: color 0.3s ease;
}
.arc-footer-contact:hover .val {
  color: var(--gold-soft);
}

/* Locations subtitle — quieter italic line beneath contacts */
.arc-footer-locations {
  display: block !important;
  margin-top: 4px !important;
  padding-top: 0 !important;
  border-top: none !important;
  font-family: var(--font-body) !important;
  font-style: italic !important;
  font-size: 12px !important;
  font-weight: normal !important;
  letter-spacing: normal !important;
  text-transform: none !important;
  color: rgba(251, 248, 242, 0.5) !important;
  line-height: 1.55 !important;
}

/* Social icons — compact horizontal row at the bottom of the column */
.arc-social {
  display: flex;
  gap: 14px;
  margin-top: 22px;
  padding-top: 0;
  border-top: none;
}
.arc-social-link {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 54px !important;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(216, 195, 154, 0.24);
  color: rgba(251, 248, 242, 0.78);
  background: transparent;
  transition: all 0.32s var(--ease-soft);
  text-decoration: none;
  line-height: 0 !important;
}
.arc-social-link svg {
  width: 22px;
  height: 22px;
  display: block;
}
.arc-social-link:hover {
  border-color: var(--gold-soft);
  color: var(--gold-soft) !important;
  background: rgba(216, 195, 154, 0.06);
}

/* ============================================================
   FOOTER NEWSLETTER — Discover New Experiences
   One-tone neumorphic indented input, hyper-realistic.
   The input surface matches the footer background exactly so only
   shadows define its form (deep inset shadow above, ivory highlight
   below — gives the impression of being pressed into the surface).
   ============================================================ */

.arc-footer-signup {
  margin-bottom: 80px;
  padding: 56px 32px;
  border-bottom: 1px solid rgba(216, 195, 154, 0.1);
  text-align: center;
}
.arc-footer-signup-inner {
  max-width: 580px;
  margin: 0 auto;
}
.arc-site .arc-footer-signup-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ivory);
  margin: 0 0 25px;
}
.arc-footer-signup-title em {
  font-style: italic;
  color: var(--gold-soft);
}
.arc-footer-signup-sub {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(251, 248, 242, 0.55);
  max-width: 440px;
  margin: 0 auto 36px;
}

/* Neumorphic indented input.
   - Surface color = footer background (var(--ink)) so it's one-tone.
   - Inset shadows: dark on upper-left (deeper), highlight on lower-right.
   - The input field has no border or background — it floats in the indentation. */
.arc-neo-input {
  display: flex;
  align-items: center;
  background: var(--ink);
  border-radius: 999px;
  padding: 6px 6px 6px 28px;
  box-shadow:
    inset 5px 5px 12px rgba(0, 0, 0, 0.55),
    inset -4px -4px 10px rgba(255, 255, 255, 0.04),
    0 1px 0 rgba(255, 255, 255, 0.04);
  transition: box-shadow 0.4s var(--ease-soft);
  position: relative;
  overflow: hidden;
}
.arc-neo-input:focus-within {
  box-shadow:
    inset 6px 6px 14px rgba(0, 0, 0, 0.65),
    inset -4px -4px 10px rgba(255, 255, 255, 0.05),
    0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 0 1px rgba(216, 195, 154, 0.16);
}

.arc-neo-input input {
  flex: 1 1 auto;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ivory);
  padding: 14px 0;
  letter-spacing: 0;
  min-width: 0;
}
.arc-neo-input input::placeholder {
  color: rgba(251, 248, 242, 0.32);
  font-style: italic;
}
.arc-neo-input input:-webkit-autofill {
  -webkit-text-fill-color: var(--ivory);
  -webkit-box-shadow: 0 0 0 1000px var(--ink) inset;
  box-shadow: 0 0 0 1000px var(--ink) inset;
  caret-color: var(--ivory);
}

/* Submit button — raised above the depression, one-tone dark.
   Shadows mirror the canonical .arc-btn-neo but in the dark palette. */
.arc-neo-input-submit {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--ink);
  color: var(--gold-soft);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    -3px -3px 8px rgba(255, 255, 255, 0.05),
    3px 3px 10px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: all 0.3s var(--ease-soft);
}
.arc-neo-input-submit svg {
  width: 16px;
  height: 16px;
}
.arc-neo-input-submit:hover {
  color: var(--ivory);
  box-shadow:
    -2px -2px 6px rgba(255, 255, 255, 0.06),
    2px 2px 8px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: translateX(2px);
}
.arc-neo-input-submit:active {
  box-shadow:
    inset 3px 3px 8px rgba(0, 0, 0, 0.6),
    inset -2px -2px 6px rgba(255, 255, 255, 0.04);
  transform: translateX(0);
}

.arc-footer-signup-confirm {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--gold-soft);
  margin: 20px 0 0;
}

@media (max-width: 600px) {
  .arc-footer-signup { padding: 40px 24px; margin-bottom: 56px; }
  .arc-neo-input { padding: 4px 4px 4px 22px; }
  .arc-neo-input input { font-size: 15px; padding: 12px 0; }
  .arc-neo-input-submit { width: 40px; height: 40px; }
}

.arc-footer-bar {
  border-top: 1px solid rgba(251,248,242,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(251,248,242,0.4);
}

/* ----- AVAILABILITY MODAL ----- */
.arc-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}
.arc-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.arc-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(22, 60, 57, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.arc-modal-card {
  position: relative;
  background: var(--ivory);
  border-radius: 24px;
  padding: 44px 44px 36px;
  max-width: 560px;
  width: 100%;
  box-shadow: 0 30px 80px rgba(22, 60, 57, 0.4),
              0 8px 16px rgba(22, 60, 57, 0.15);
  transform: scale(0.95) translateY(12px);
  opacity: 0;
  transition: transform 0.5s var(--ease-out), opacity 0.4s var(--ease-out);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
}
.arc-modal.open .arc-modal-card {
  transform: scale(1) translateY(0);
  opacity: 1;
  transition-delay: 0.05s;
}
.arc-modal-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(26,31,30,0.12);
  font-size: 18px;
  line-height: 1;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.arc-modal-close:hover {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
}
.arc-modal-eyebrow {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-aged);
  margin-bottom: 12px;
}
.arc-modal h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.arc-modal h3 em { font-style: italic; color: var(--teal-deep); }
.arc-modal .subtitle {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 32px;
  line-height: 1.5;
}
.arc-modal-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.arc-modal-form .arc-field { gap: 8px; }
.arc-modal-form .arc-field input,
.arc-modal-form .arc-field select {
  font-size: 17px;
  padding: 10px 0 12px;
}

/* Ritual selector — pill-style toggle chips for multi-select */
.arc-field-hint {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--sage-shadow);
  margin-left: 6px;
  font-weight: 300;
}
.arc-rituals-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.arc-ritual-chip {
  display: inline-flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  user-select: none;
}
.arc-ritual-chip input {
  /* Visually hidden but still accessible */
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
}
.arc-ritual-chip span {
  display: inline-block;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(26, 31, 30, 0.18);
  background: transparent;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: all 0.32s var(--ease-soft);
}
.arc-ritual-chip:hover span {
  border-color: rgba(184, 147, 90, 0.5);
  color: var(--ink);
}
.arc-ritual-chip input:checked + span {
  background: var(--teal-deep);
  border-color: var(--teal-deep);
  color: var(--ivory);
  box-shadow: 0 4px 12px -4px rgba(31, 78, 74, 0.42);
}
.arc-ritual-chip input:focus-visible + span {
  outline: 2px solid var(--gold-aged);
  outline-offset: 2px;
}

.arc-modal-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.arc-modal-submit {
  margin: 0 auto 6px;
  align-self: center;
}
.arc-modal-submit-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 0;
  position: relative;
  min-height: 60px;
}
.arc-modal-submit-wrap .arc-modal-submit {
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.arc-modal-submit-wrap.sent .arc-modal-submit {
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
}
.arc-modal-success {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
  pointer-events: none;
}
.arc-modal-submit-wrap.sent .arc-modal-success {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition-delay: 0.2s;
}
.arc-modal-success svg {
  width: 36px;
  height: 36px;
  stroke: var(--gold-aged);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  padding: 8px;
  border-radius: 50%;
  background: var(--bone);
  box-shadow:
    4px 4px 10px rgba(166, 145, 110, 0.3),
    -4px -4px 10px rgba(255, 251, 244, 0.9);
}
.arc-modal-success .msg {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: var(--ink);
  max-width: 320px;
}
.arc-modal-foot {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(26,31,30,0.08);
  font-family: var(--font-body);
  font-style: italic;
  font-size: 13px;
  color: var(--sage-shadow);
  text-align: center;
  line-height: 1.5;
}
.arc-modal-foot a {
  color: var(--teal-deep);
  font-style: normal;
  font-weight: 400;
  transition: color 0.3s ease;
}
.arc-modal-foot a:hover { color: var(--gold-aged); }

@media (max-width: 600px) {
  .arc-modal { padding: 16px; }
  .arc-modal-card { padding: 36px 24px 28px; border-radius: 16px; }
  .arc-modal-row { grid-template-columns: 1fr; gap: 22px; }
}


@media (max-width: 1024px) {
  .arc-nav-links { gap: 24px; }
  .arc-stay-grid { grid-template-columns: 1fr; }
  .arc-stay-card { min-height: 440px; }
  .arc-reviews-grid {
    grid-auto-columns: minmax(320px, calc((100% - 24px) / 2));
    gap: 16px;
  }
  .arc-gallery-track { grid-auto-columns: calc((100% - 24px) / 2); gap: 16px; }
}

@media (max-width: 768px) {
  .arc-gallery-track { grid-auto-columns: 80%; }
  .arc-gallery-controls { display: none; }
}

@media (max-width: 768px) {
  .arc-site .shell { padding: 0 22px; }
  .arc-nav { padding: 16px 22px; }
  .arc-nav.scrolled { padding: 12px 22px; }
  .arc-nav-links { display: none; }
  .arc-nav-right { display: none; }
  .arc-nav-toggle { display: flex; justify-self: end; }
  /* Mobile nav reverts to two-cell layout: logo left, toggle right */
  .arc-nav { grid-template-columns: 1fr auto; }
  .arc-hero { min-height: 560px; }
  .arc-avail-card { padding: 22px; margin: -50px 22px 0; border-radius: 12px; }
  .arc-avail-form { grid-template-columns: 1fr; gap: 18px; }
  .arc-section-intro {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 96px 0 48px;
  }
  .arc-stay-grid { grid-template-columns: 1fr; }
  .arc-stay-card { min-height: 380px; padding: 28px; }
  .arc-reviews-grid {
    grid-auto-columns: 86%;
    padding: 24px 22px 32px;
    margin: -24px -22px 0;
  }
  .arc-footer-top { grid-template-columns: 1fr; gap: 32px; }
  .arc-footer-bar { flex-direction: column; gap: 12px; text-align: center; }
  .arc-book-cta { padding: 96px 0; }
}

/* Disable smooth scroll on click-snap (we control it via JS) */
.arc-site html, .arc-site body { scroll-behavior: auto; }

/* ============================================================
   KOENIG EDITOR (Ghost) — required width classes
   These let post authors set wide / full-bleed images and embeds
   ============================================================ */
.kg-width-wide {
  position: relative;
  width: 85vw;
  max-width: 1100px;
  margin-left: 50%;
  transform: translateX(-50%);
}
.kg-width-full {
  position: relative;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}
.kg-width-wide img,
.kg-width-full img {
  width: 100%;
  height: auto;
  display: block;
}

/* Default image card alignment */
.kg-image-card { margin: 32px 0; }
.kg-image-card figcaption {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 14px;
  color: var(--sage-shadow);
  text-align: center;
  margin-top: 12px;
}

/* Gallery card */
.kg-gallery-card .kg-gallery-container {
  display: flex;
  flex-direction: column;
  max-width: 1040px;
  margin: 32px auto;
}
.kg-gallery-card .kg-gallery-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.kg-gallery-card .kg-gallery-image img {
  display: block;
  margin: 0;
  width: 100%;
  height: 100%;
}
.kg-gallery-card .kg-gallery-row:not(:first-of-type) {
  margin-top: 0.75em;
}
.kg-gallery-card .kg-gallery-image:not(:first-of-type) {
  margin-left: 0.75em;
}

/* Bookmark card */
.kg-bookmark-card { margin: 32px 0; }
.kg-bookmark-container {
  display: flex;
  border: 1px solid rgba(26, 31, 30, 0.12);
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.3s ease;
}
.kg-bookmark-container:hover { border-color: var(--gold-aged); }
.kg-bookmark-content { padding: 20px; flex: 1; }
.kg-bookmark-thumbnail { flex-shrink: 0; width: 33%; min-height: 160px; }
.kg-bookmark-thumbnail img { width: 100%; height: 100%; object-fit: cover; }


/* ============================================================
   EXPERIENCES GALLERY — Pinterest-style masonry
   Below the Reviews section. Cards are full-bleed images with
   rounded corners; titles reveal on hover.
   Layout: CSS columns (bulletproof masonry without JS).
   ============================================================ */

.arc-exp-gallery {
  background: var(--bone);
  padding-bottom: 128px;
}

.arc-exp-masonry {
  column-count: 4;
  column-gap: 16px;
  margin-top: 8px;
}
@media (max-width: 1200px) {
  .arc-exp-masonry { column-count: 3; }
}
@media (max-width: 768px) {
  .arc-exp-masonry { column-count: 2; column-gap: 12px; }
}
@media (max-width: 480px) {
  .arc-exp-masonry { column-count: 1; }
}

/* Each card has rounded corners, sits with breathing room from neighbors,
   and the image fills the entire card (overflow: hidden clips to corners). */
.arc-exp-card {
  display: block;
  position: relative;
  width: 100%;
  margin-bottom: 16px;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(26, 31, 30, 0.04);
  break-inside: avoid;
  cursor: pointer;
  isolation: isolate;
  transition: transform 0.5s var(--ease-out);
  text-decoration: none;
  color: inherit;
}
@media (max-width: 768px) {
  .arc-exp-card { margin-bottom: 12px; border-radius: 16px; }
}

.arc-exp-card.is-hidden {
  display: none;
}
.arc-exp-card.is-revealed {
  display: block;
  animation: arc-exp-fade-in 0.7s var(--ease-out) both;
}
@keyframes arc-exp-fade-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.arc-exp-card img,
.arc-exp-card video {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.7s var(--ease-out), filter 0.5s var(--ease-out);
  filter: saturate(0.96);
}

/* Hover: gentle zoom + saturation lift */
.arc-exp-card:hover img,
.arc-exp-card:hover video {
  transform: scale(1.04);
  filter: saturate(1.08);
}

/* Overlay: gradient + title appear on hover */
.arc-exp-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px 22px 20px;
  background: linear-gradient(
    to top,
    rgba(11, 18, 16, 0.78) 0%,
    rgba(11, 18, 16, 0.42) 35%,
    rgba(11, 18, 16, 0)    65%
  );
  opacity: 0;
  transition: opacity 0.45s var(--ease-out);
  pointer-events: none;
}
.arc-exp-card:hover .arc-exp-card-overlay {
  opacity: 1;
}
.arc-exp-card-overlay .arc-exp-eyebrow {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 8px;
  transform: translateY(8px);
  transition: transform 0.45s var(--ease-out);
}
.arc-exp-card-overlay h4 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.2;
  letter-spacing: -0.005em;
  color: var(--ivory);
  margin: 0;
  transform: translateY(8px);
  transition: transform 0.45s var(--ease-out);
  transition-delay: 0.04s;
}
.arc-exp-card:hover .arc-exp-card-overlay .arc-exp-eyebrow,
.arc-exp-card:hover .arc-exp-card-overlay h4 {
  transform: translateY(0);
}

/* View more / view less area — text-only with a subtle gold hairline */
.arc-exp-gallery-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 64px;
}
.arc-exp-gallery-cta-row {
  display: flex;
  align-items: center;
  gap: 28px;
}

/* View more + View less share identical typography and hairline treatment */
.arc-site .arc-exp-view-more,
.arc-site .arc-exp-view-less {
  font-family: var(--font-ui);
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px 4px 18px;
  position: relative;
  transition: color 0.4s var(--ease-soft);
}
.arc-exp-view-more::after,
.arc-exp-view-less::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 64px;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent 0%, var(--gold-aged) 50%, transparent 100%);
  opacity: 0.55;
  transition: width 0.55s var(--ease-out), opacity 0.4s ease;
}
.arc-exp-view-less::after {
  /* Slightly narrower hairline so the secondary action reads as quieter */
  width: 48px;
  opacity: 0.42;
}
.arc-exp-view-more:hover,
.arc-exp-view-less:hover {
  color: var(--teal-deep);
}
.arc-exp-view-more:hover::after {
  width: 112px;
  opacity: 1;
}
.arc-exp-view-less:hover::after {
  width: 88px;
  opacity: 0.85;
}
.arc-exp-view-more.is-loading,
.arc-exp-view-less.is-loading {
  opacity: 0.5;
  pointer-events: none;
}
.arc-exp-view-more.is-spent { display: none; }

/* Divider between the two CTAs — a small gold pendant dot */
.arc-exp-cta-divider {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold-aged);
  opacity: 0.45;
  align-self: center;
  position: relative;
  top: -3px; /* nudge up to align visually with text x-height */
}

/* By default view-less and divider are hidden; .is-expanded reveals them */
.arc-exp-view-less,
.arc-exp-cta-divider {
  display: none;
}
.arc-exp-gallery-cta.is-expanded .arc-exp-view-less,
.arc-exp-gallery-cta.is-expanded .arc-exp-cta-divider {
  display: block;
  animation: arc-exp-fade-in 0.5s var(--ease-out) both;
}

.arc-exp-gallery-empty {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 16px;
  color: var(--sage-shadow);
  margin: 0;
}

/* Mobile: stack the two CTAs vertically with a tighter gap */
@media (max-width: 480px) {
  .arc-exp-gallery-cta-row {
    flex-direction: column;
    gap: 4px;
  }
  .arc-exp-cta-divider { display: none !important; }
}
