/* =========================================================================
   JustNoe — editorial luxury for a 5-year-old
   Designed for: cream paper, ink black, soft blush, signature red
   ========================================================================= */

:root {
  --paper:        #f6f0e6;   /* warm cream */
  --paper-deep:   #ede4d2;   /* aged paper */
  --ink:          #1a1a1a;   /* not pure black */
  --ink-soft:     #4a4540;
  --blush:        #f4d4cc;
  --rose:         #e8a8a0;
  --signature:    #b8334a;   /* the JustNoe red — used for stamp + accents */
  --gold:         #b08840;
  --sun:          #f4d03f;   /* bold accent yellow (matches hero backdrop) */
  --sky:          #6cc4d4;   /* bold accent cyan (matches hero backdrop) */
  --line:         rgba(26,26,26,0.18);

  --display:      'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --script:       'Allura', 'Pinyon Script', cursive;
  --body:         'Cormorant Garamond', Georgia, serif;
  --label:        'Cormorant Garamond', Georgia, serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* subtle paper grain via radial gradient — no external images */
body::before {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(244,212,204,0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(184,51,74,0.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

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

/* =========================================================================
   NAVIGATION
   ========================================================================= */
.topbar {
  position: relative;
  z-index: 10;
  padding: 28px 48px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  font-family: var(--label);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 11px;
}

.topbar .brand {
  font-family: var(--display);
  text-transform: none;
  letter-spacing: -0.01em;
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
}
.topbar .brand .scr {
  font-family: var(--script);
  font-size: 48px;
  font-weight: 400;
  margin-left: 2px;
  color: var(--signature);
  line-height: 0.9;
  vertical-align: -0.05em;
}

.topbar-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
}

.topbar a {
  color: var(--ink);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color 200ms ease;
}

.topbar a:hover { color: var(--signature); }

.topbar a.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px; background: var(--ink);
}

.menu-toggle { display: none; }

/* =========================================================================
   HERO — magazine cover
   ========================================================================= */
.hero {
  position: relative;
  min-height: calc(100vh - 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 40px 48px 80px;
  gap: 40px;
  z-index: 1;
}

.hero-text {
  position: relative;
  padding-right: 40px;
}

.hero-eyebrow {
  font-family: var(--label);
  letter-spacing: 0.5em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--ink-soft);
  margin-bottom: 32px;
}

.hero-eyebrow::before {
  content: '— ';
}

.hero-title {
  font-family: var(--display);
  font-size: clamp(64px, 9vw, 132px);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
}

.hero-title .scr {
  font-family: var(--script);
  font-weight: 400;
  font-size: 1.45em;
  display: inline-block;
  margin-left: 0.05em;
  color: var(--signature);
  line-height: 0.7;
  vertical-align: -0.05em;
}

.hero-tag {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
  color: var(--ink-soft);
  max-width: 460px;
  margin-bottom: 40px;
  line-height: 1.45;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--label);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--ink);
  text-decoration: none;
  padding: 16px 32px;
  border: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
  transition: background 250ms ease, color 250ms ease;
}

.hero-cta:hover {
  background: var(--ink);
  color: var(--paper);
}

.hero-cta.alt {
  border: 1px solid var(--signature);
  color: var(--signature);
  margin-left: 12px;
}

.hero-cta.alt:hover { background: var(--signature); color: var(--paper); }

.hero-image-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--paper-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrap img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 8s ease;
}

.hero-image-wrap:hover img { transform: scale(1.02); }

.hero-image-frame {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(26,26,26,0.15);
  pointer-events: none;
}

.hero-image-tag {
  position: absolute;
  bottom: 24px; left: 24px;
  color: var(--paper);
  font-family: var(--label);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-size: 10px;
  padding-left: 16px;
  border-left: 1px solid var(--paper);
  z-index: 2;
}

.hero-managed {
  position: absolute;
  bottom: 32px; right: 48px;
  font-family: var(--label);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 9px;
  color: var(--ink-soft);
  text-align: right;
  line-height: 1.6;
}

.hero-managed .fine {
  display: block;
  font-size: 7.5px;
  letter-spacing: 0.2em;
  color: var(--ink-soft);
  margin-top: 4px;
  opacity: 0.7;
}

/* =========================================================================
   MARQUEE — running headline
   ========================================================================= */
.marquee {
  position: relative;
  z-index: 1;
  background: var(--ink);
  color: var(--paper);
  padding: 24px 0;
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--display);
  font-style: italic;
  font-size: 28px;
  letter-spacing: 0.02em;
}

.marquee-track {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 38s linear infinite;
}

.marquee span { margin: 0 38px; }
.marquee .dot { color: var(--signature); margin: 0 24px; }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* =========================================================================
   SECTION SHELL
   ========================================================================= */
section {
  position: relative;
  z-index: 1;
  padding: 100px 48px;
}

.section-eyebrow {
  font-family: var(--label);
  letter-spacing: 0.5em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--ink-soft);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.section-eyebrow::before {
  content: ''; width: 32px; height: 1px; background: var(--ink-soft);
}

.section-title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
  max-width: 18ch;
}

.section-title .scr {
  font-family: var(--script);
  font-weight: 400;
  color: var(--signature);
  font-size: 1.4em;
  vertical-align: -0.1em;
}

/* =========================================================================
   ABOUT GLIMPSE (on home)
   ========================================================================= */
.glimpse {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.glimpse-image {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  background: var(--paper-deep);
}
.glimpse-image img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
}

.glimpse p {
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 400;
  margin-bottom: 24px;
  max-width: 52ch;
}

.glimpse p.lead {
  font-size: 28px;
  font-style: italic;
  color: var(--ink);
  line-height: 1.4;
}

.glimpse p.lead::first-letter {
  font-family: var(--display);
  font-style: normal;
  font-weight: 300;
  font-size: 5em;
  float: left;
  line-height: 0.85;
  margin: 6px 12px 0 -4px;
  color: var(--signature);
}

.glimpse .read-more {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--label);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--ink);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
}

/* =========================================================================
   STAMP CALLOUT
   ========================================================================= */
.stamp-section {
  background: var(--paper-deep);
  padding: 120px 48px;
}

.stamp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.stamp-art {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1;
  position: relative;
  margin: 0 auto;
  animation: gentleSway 6s ease-in-out infinite;
}

@keyframes gentleSway {
  0%, 100% { transform: rotate(-4deg); }
  50%      { transform: rotate(4deg); }
}

.stamp-art img { width: 100%; height: 100%; }

.stamp-text h3 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.stamp-text h3 .scr {
  font-family: var(--script);
  color: var(--signature);
  font-size: 1.3em;
  font-weight: 400;
}

.stamp-text p {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 56ch;
  margin-bottom: 20px;
}

/* =========================================================================
   GALLERY STRIP (home)
   ========================================================================= */
.strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  padding: 0;
}

.strip .frame {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}

.strip .frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.5s ease;
}

.strip .frame:hover img { transform: scale(1.05); }

.strip .frame::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.25) 100%);
  pointer-events: none;
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.foot {
  background: var(--ink);
  color: var(--paper);
  padding: 80px 48px 32px;
  position: relative;
  z-index: 1;
}

.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.foot-brand {
  font-family: var(--display);
  font-size: 56px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
}

.foot-brand .scr {
  font-family: var(--script);
  font-size: 1.5em;
  color: var(--rose);
  display: inline-block;
  vertical-align: -0.05em;
}

.foot-tag {
  font-family: var(--display);
  font-style: italic;
  margin-top: 20px;
  font-size: 17px;
  color: rgba(246,240,230,0.7);
  max-width: 36ch;
}

.foot h5 {
  font-family: var(--label);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  color: var(--rose);
  margin-bottom: 20px;
}

.foot ul { list-style: none; }
.foot li { margin-bottom: 12px; font-size: 15px; }
.foot a { color: var(--paper); text-decoration: none; opacity: 0.85; }
.foot a:hover { opacity: 1; color: var(--rose); }

/* ---- Management block in footer (SS|DFW) ---- */
.foot-mgmt {
  border-top: 1px solid rgba(246,240,230,0.15);
  padding: 36px 0 28px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: center;
}

.foot-mgmt-logo {
  width: 200px;
  display: block;
  background: #000;
  padding: 6px;
  border: 1px solid rgba(201,160,73,0.3);
}

.foot-mgmt-logo img { width: 100%; display: block; }

.foot-mgmt-info {
  font-family: var(--label);
  letter-spacing: 0.05em;
  font-size: 13px;
  color: rgba(246,240,230,0.85);
  line-height: 1.7;
}

.foot-mgmt-info .label {
  font-family: var(--label);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-size: 10px;
  color: #c9a049;
  margin-bottom: 10px;
  font-weight: 600;
}

.foot-mgmt-info .name {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--paper);
  margin-bottom: 8px;
}

.foot-mgmt-info a {
  color: rgba(246,240,230,0.85);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,160,73,0.3);
  padding-bottom: 1px;
  transition: color 200ms;
}
.foot-mgmt-info a:hover { color: #c9a049; opacity: 1; }

.foot-mgmt-info .row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  margin-top: 4px;
}

.foot-bottom {
  border-top: 1px solid rgba(246,240,230,0.15);
  padding-top: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-family: var(--label);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 9px;
  color: rgba(246,240,230,0.55);
}

/* ============= Contact-page management spotlight ============= */
.mgmt-spotlight {
  max-width: 760px;
  margin: 60px auto 100px;
  padding: 36px;
  background: #000;
  border: 1px solid rgba(201,160,73,0.4);
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  align-items: center;
}

.mgmt-spotlight-logo {
  width: 220px;
}
.mgmt-spotlight-logo img { width: 100%; display: block; }

.mgmt-spotlight-info {
  color: var(--paper);
  font-family: var(--body);
  line-height: 1.7;
}

.mgmt-spotlight-info .label {
  font-family: var(--label);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-size: 10px;
  color: #c9a049;
  margin-bottom: 12px;
  font-weight: 600;
}

.mgmt-spotlight-info .name {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--paper);
  margin-bottom: 16px;
}

.mgmt-spotlight-info p {
  font-size: 15px;
  color: rgba(246,240,230,0.85);
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}

.mgmt-spotlight-info a {
  color: rgba(246,240,230,0.95);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,160,73,0.4);
  padding-bottom: 1px;
  transition: color 200ms;
}
.mgmt-spotlight-info a:hover { color: #c9a049; }

/* =========================================================================
   ABOUT PAGE
   ========================================================================= */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 75vh;
  position: relative;
  z-index: 1;
}

.about-hero-img {
  position: relative;
  overflow: hidden;
  background: var(--paper-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-hero-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
}

.about-hero-text {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-hero-text .num {
  font-family: var(--display);
  font-size: 88px;
  font-weight: 300;
  line-height: 1;
  color: var(--blush);
  margin-bottom: 16px;
}

.about-hero-text h1 {
  font-family: var(--display);
  font-size: clamp(48px, 5vw, 84px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.about-hero-text h1 .scr {
  font-family: var(--script);
  color: var(--signature);
  font-size: 1.4em;
  font-weight: 400;
}

.about-hero-text .lede {
  font-family: var(--display);
  font-style: italic;
  font-size: 24px;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 40ch;
}

.story {
  max-width: 780px;
  margin: 0 auto;
  padding: 100px 48px;
}

.story-section { margin-bottom: 72px; }

.story-section .label {
  font-family: var(--label);
  letter-spacing: 0.5em;
  text-transform: uppercase;
  font-size: 10px;
  color: var(--signature);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.story-section .label::before,
.story-section .label::after {
  content: ''; flex: 1; height: 1px; background: var(--signature); opacity: 0.4;
}

.story-section h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 28px;
}

.story-section h2 .scr {
  font-family: var(--script);
  color: var(--signature);
  font-size: 1.35em;
}

.story-section p {
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--ink-soft);
}

.story-section p strong {
  color: var(--ink);
  font-weight: 600;
  font-style: italic;
}

.pull-quote {
  font-family: var(--display);
  font-style: italic;
  font-size: 32px;
  line-height: 1.35;
  text-align: center;
  color: var(--ink);
  padding: 40px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 40px 0;
}

.pull-quote .scr {
  font-family: var(--script);
  color: var(--signature);
  font-size: 1.5em;
  font-style: normal;
}

/* About page reel — same pattern, slightly larger, reverse direction */
.about-reel {
  position: relative;
  z-index: 1;
  padding: 40px 0 100px;
  overflow: hidden;
}

.about-reel .reel-track {
  animation: reelSlideReverse 100s linear infinite;
}

.about-reel:hover .reel-track {
  animation-play-state: paused;
}

@keyframes reelSlideReverse {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.loves-list {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center;
  margin-top: 32px;
}
.loves-list li {
  list-style: none;
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  padding: 4px 18px;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--ink);
  transition: background 250ms;
}
.loves-list li:hover { background: var(--blush); }

/* =========================================================================
   BOOK PAGE — calendar
   ========================================================================= */
.book-hero {
  text-align: center;
  padding: 80px 48px 60px;
  position: relative;
  z-index: 1;
}

.book-hero h1 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}

.book-hero h1 .scr {
  font-family: var(--script);
  color: var(--signature);
  font-size: 1.4em;
  font-weight: 400;
}

.book-hero p {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 0 auto;
}

.calendar-shell {
  max-width: 1100px;
  margin: 0 auto 80px;
  padding: 48px;
  background: var(--paper-deep);
  border: 1px solid var(--line);
  position: relative;
  z-index: 1;
}

.cal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.cal-head .month {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 400;
}

.cal-head .month .scr {
  font-family: var(--script);
  color: var(--signature);
  font-size: 1.2em;
}

.cal-nav { display: flex; gap: 12px; }

.cal-nav button {
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
  cursor: pointer;
  font-family: var(--display);
  font-size: 18px;
  transition: background 200ms, color 200ms;
}

.cal-nav button:hover:not(:disabled) {
  background: var(--ink); color: var(--paper);
}

.cal-nav button:disabled { opacity: 0.3; cursor: not-allowed; }

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.cal-dow {
  font-family: var(--label);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 10px;
  color: var(--ink-soft);
  text-align: center;
  padding: 12px 0;
  font-weight: 600;
}

.cal-cell {
  aspect-ratio: 1;
  background: var(--paper);
  border: 1px solid transparent;
  padding: 8px;
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
  transition: border-color 200ms, background 200ms;
  font-family: var(--display);
  overflow: hidden;
}

.cal-cell.empty { background: transparent; cursor: default; }
.cal-cell.past  { opacity: 0.35; cursor: not-allowed; background: transparent; }

.cal-cell.available:hover {
  border-color: var(--ink);
  background: var(--blush);
}

.cal-cell.booked {
  background: var(--signature);
  color: var(--paper);
  cursor: not-allowed;
  border-color: var(--signature);
}

.cal-cell.outside {
  background: var(--ink);
  color: var(--paper);
  cursor: not-allowed;
  border-color: var(--ink);
}

.cal-cell .num {
  font-size: 17px;
  font-weight: 400;
}

.cal-cell.booked .booked-mark {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4px;
}

.cal-cell.booked .booked-mark .mono {
  font-family: var(--script);
  font-size: 36px;
  line-height: 0.9;
  color: var(--paper);
}

.cal-cell.booked .booked-mark .lab {
  font-family: var(--label);
  font-size: 7px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: 0.85;
  margin-top: 4px;
  line-height: 1.2;
  max-width: 100%;
  word-wrap: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cal-cell.booked .num,
.cal-cell.outside .num {
  position: absolute;
  top: 6px; left: 8px;
  font-size: 11px;
  opacity: 0.6;
  z-index: 1;
}

.cal-cell.outside .booked-mark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 11px;
  padding: 6px;
  color: var(--rose);
}

.cal-legend {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: var(--label);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 10px;
  color: var(--ink-soft);
}

.cal-legend .swatch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cal-legend .swatch .sq {
  width: 14px; height: 14px;
  border: 1px solid var(--line);
}
.cal-legend .swatch .sq.av { background: var(--paper); }
.cal-legend .swatch .sq.bk { background: var(--signature); border-color: var(--signature); }
.cal-legend .swatch .sq.ot { background: var(--ink); border-color: var(--ink); }

.deposit-info {
  max-width: 800px;
  margin: 0 auto 100px;
  padding: 0 48px;
  text-align: center;
}

.deposit-info h3 {
  font-family: var(--display);
  font-style: italic;
  font-size: 28px;
  margin-bottom: 16px;
  font-weight: 400;
}

.deposit-info .amt {
  font-family: var(--display);
  font-size: 76px;
  font-weight: 300;
  color: var(--signature);
  line-height: 1;
  margin: 24px 0;
}

.deposit-info p {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 60ch;
  margin: 0 auto 14px;
}

.deposit-info .fine {
  font-size: 12px;
  font-style: italic;
  color: var(--ink-soft);
  opacity: 0.75;
  margin: 24px auto 0;
  max-width: 56ch;
  line-height: 1.6;
}

/* =========================================================================
   CONTACT PAGE
   ========================================================================= */
.contact-hero {
  text-align: center;
  padding: 80px 48px 40px;
  position: relative;
  z-index: 1;
}

.contact-hero h1 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

.contact-hero h1 .scr {
  font-family: var(--script);
  color: var(--signature);
  font-size: 1.4em;
  font-weight: 400;
}

.contact-hero p {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 0 auto;
}

.contact-shell {
  max-width: 760px;
  margin: 0 auto 100px;
  padding: 48px;
  background: var(--paper-deep);
  border: 1px solid var(--line);
  position: relative;
  z-index: 1;
}

.field {
  margin-bottom: 28px;
}

.field > label {
  display: block;
  font-family: var(--label);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--ink-soft);
  margin-bottom: 8px;
}

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="url"],
.field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--ink);
  padding: 10px 0;
  font-family: var(--display);
  font-size: 19px;
  color: var(--ink);
  outline: none;
  transition: border-color 250ms;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--signature);
}

.field textarea { resize: vertical; min-height: 100px; }

.checkrow {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 12px;
}

.check-tile {
  position: relative;
  display: block;
  cursor: pointer;
}

.check-tile input { position: absolute; opacity: 0; pointer-events: none; }

.check-tile .ct-body {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 18px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-family: var(--display);
  font-size: 16px;
  transition: all 200ms;
  min-height: 60px;
  line-height: 1.2;
}

.check-tile .ct-body::before {
  content: '';
  width: 14px; height: 14px;
  border: 1px solid var(--ink);
  display: inline-block;
  flex-shrink: 0;
  transition: all 200ms;
}

.check-tile input:checked + .ct-body {
  background: var(--blush);
  border-color: var(--signature);
}

.check-tile input:checked + .ct-body::before {
  background: var(--signature);
  border-color: var(--signature);
  box-shadow: inset 0 0 0 3px var(--blush);
}

.check-tile .scr {
  font-family: var(--script);
  color: var(--signature);
  font-size: 1.25em;
  line-height: 0.9;
  margin-left: 1px;
  vertical-align: -0.1em;
}

.submit-btn {
  display: block;
  width: 100%;
  background: var(--ink);
  color: var(--paper);
  border: none;
  padding: 22px;
  font-family: var(--label);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-size: 13px;
  cursor: pointer;
  margin-top: 20px;
  transition: background 250ms;
}

.submit-btn:hover { background: var(--signature); }

.thanks {
  display: none;
  text-align: center;
  padding: 60px 0;
}

.thanks.show { display: block; }
.thanks .scr {
  font-family: var(--script);
  color: var(--signature);
  font-size: 78px;
  line-height: 1;
}

.thanks h3 {
  font-family: var(--display);
  font-weight: 300;
  font-size: 36px;
  margin: 16px 0;
}

.thanks p {
  font-family: var(--display);
  font-style: italic;
  font-size: 19px;
  color: var(--ink-soft);
}

/* =========================================================================
   PHOTO REEL — horizontal looping marquee of FULL uncropped photos
   ========================================================================= */
.reel {
  position: relative;
  z-index: 1;
  padding: 60px 0 80px;
  overflow: hidden;
}

.reel-eyebrow {
  font-family: var(--label);
  letter-spacing: 0.5em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--ink-soft);
  margin: 0 48px 32px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.reel-eyebrow::before {
  content: ''; width: 32px; height: 1px; background: var(--ink-soft);
}

.reel-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: reelSlide 90s linear infinite;
  padding: 0 12px;
}

.reel:hover .reel-track {
  animation-play-state: paused;
}

.reel-frame {
  flex: 0 0 auto;
  width: 320px;
  height: 460px;
  background: var(--paper-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.reel-frame img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.reel-frame::after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(26,26,26,0.08);
  pointer-events: none;
}

@keyframes reelSlide {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 880px) {
  .topbar { padding: 20px 24px 14px; gap: 14px; }
  .topbar-menu { gap: 22px; font-size: 10px; }
  .topbar .brand { font-size: 28px; }
  .topbar .brand .scr { font-size: 36px; }

  .hero {
    grid-template-columns: 1fr;
    padding: 30px 24px 60px;
    gap: 32px;
  }
  .hero-text { padding-right: 0; order: 2; }
  .hero-image-wrap { order: 1; aspect-ratio: 4/5; }
  .hero-managed { position: static; text-align: left; margin-top: 24px; }

  section { padding: 60px 24px; }

  .glimpse { grid-template-columns: 1fr; gap: 32px; }
  .glimpse-image { aspect-ratio: 4/5; }
  .glimpse p { font-size: 18px; }
  .glimpse p.lead { font-size: 22px; }

  .stamp-section { padding: 60px 24px; }
  .stamp-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .stamp-art { margin: 0 auto; width: 200px; height: 200px; }

  .strip { grid-template-columns: repeat(2, 1fr); }

  .foot { padding: 60px 24px 24px; }
  .foot-grid { grid-template-columns: 1fr; gap: 36px; }
  .foot-brand { font-size: 42px; }
  .foot-mgmt { grid-template-columns: 1fr; gap: 20px; text-align: center; padding: 28px 0 24px; }
  .foot-mgmt-logo { margin: 0 auto; }
  .foot-mgmt-info .row { justify-content: center; }
  .foot-bottom { font-size: 8px; letter-spacing: 0.2em; flex-direction: column; gap: 8px; }

  .mgmt-spotlight { grid-template-columns: 1fr; gap: 24px; padding: 24px; margin: 40px 16px 60px; text-align: center; }
  .mgmt-spotlight-logo { margin: 0 auto; max-width: 240px; width: 100%; }

  .about-hero { grid-template-columns: 1fr; }
  .about-hero-img { aspect-ratio: 4/5; }
  .about-hero-text { padding: 40px 24px; }

  .story { padding: 60px 24px; }
  .story-section h2 { font-size: 32px; }
  .story-section p { font-size: 17px; }
  .pull-quote { font-size: 22px; }

  .calendar-shell { padding: 24px 16px; margin: 0 16px 40px; }
  .cal-head { flex-direction: column; gap: 16px; align-items: flex-start; }
  .cal-cell { padding: 4px; }
  .cal-cell .num { font-size: 13px; }
  .cal-cell.booked .booked-mark .mono { font-size: 22px; }
  .cal-cell.booked .booked-mark .lab { font-size: 6px; letter-spacing: 0.1em; }
  .cal-dow { font-size: 8px; letter-spacing: 0.15em; }

  .contact-shell { padding: 28px 20px; margin: 0 16px 40px; }
  .checkrow { grid-template-columns: 1fr; }

  .marquee { font-size: 20px; padding: 18px 0; }

  .reel { padding: 40px 0 60px; }
  .reel-frame { width: 240px; height: 340px; }
  .reel-eyebrow { margin: 0 24px 24px; }

  .deposit-info .amt { font-size: 56px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 56px; }
  .hero-cta { font-size: 10px; padding: 14px 22px; }
  .hero-cta.alt { margin-left: 0; margin-top: 12px; }
}

/* =========================================================================
   ENTRANCE ANIMATIONS
   ========================================================================= */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s ease, transform 1s ease;
}
.fade-up.in { opacity: 1; transform: translateY(0); }

/* Accessibility/no-JS fallback: if user prefers reduced motion or JS is off,
   show content immediately. */
@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
}
.no-js .fade-up { opacity: 1; transform: none; }

.fade-up.d1 { transition-delay: 0.1s; }
.fade-up.d2 { transition-delay: 0.25s; }
.fade-up.d3 { transition-delay: 0.4s; }
.fade-up.d4 { transition-delay: 0.55s; }
