:root {
  --staystory-bg: #fbf7f1;
  --staystory-surface: #fffdfa;
  --staystory-ink: #161310;
  --staystory-muted: #5c534b;
  --staystory-line: rgba(132, 108, 84, 0.2);
  --staystory-gold: #c8995d;
  --staystory-gold-deep: #ab7940;
  --staystory-dark: #17120f;
  --staystory-shadow: 0 30px 70px rgba(18, 12, 7, 0.14);
  --staystory-radius: 18px;
  --staystory-shell: min(1180px, calc(100% - 40px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(200, 153, 93, 0.12), transparent 24%),
    radial-gradient(circle at bottom right, rgba(176, 141, 106, 0.1), transparent 20%),
    var(--staystory-bg);
  color: var(--staystory-ink);
  font-family: "Manrope", sans-serif;
  line-height: 1.65;
}

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

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

.shell {
  width: var(--staystory-shell);
  margin: 0 auto;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(251, 247, 241, 0.84);
  border-bottom: 1px solid rgba(132, 108, 84, 0.08);
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 88px;
}

.site-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 3.45rem);
  line-height: 1;
  letter-spacing: 0;
}

.custom-logo-link img {
  max-height: 58px;
  width: auto;
}

.primary-menu {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.primary-menu a {
  position: relative;
  padding: 8px 0;
}

.primary-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--staystory-gold);
  transition: transform 180ms ease;
}

.primary-menu a:hover::after,
.primary-menu a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  margin: 6px 0;
  background: var(--staystory-ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--staystory-gold);
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--outline {
  background: transparent;
  color: var(--staystory-ink);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
}

.button--solid {
  width: 100%;
  border-color: var(--staystory-gold);
  background: linear-gradient(135deg, var(--staystory-gold), var(--staystory-gold-deep));
  color: #fff;
}

.hero {
  min-height: calc(100vh - 88px);
  background-size: cover;
  background-position: center;
  color: #fff;
}

.hero__inner {
  min-height: calc(100vh - 88px);
  display: grid;
  align-items: end;
  justify-items: center;
  padding: 82px 0 44px;
  text-align: center;
}

.hero__showreel,
.hero__scroll {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  font-weight: 700;
}

.hero__play {
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.hero__play span {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid var(--staystory-gold);
}

.hero__content {
  max-width: 920px;
  margin: 76px 0 62px;
}

.hero__title,
.section-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0;
}

.hero__title {
  font-size: clamp(3.35rem, 8vw, 7.7rem);
}

.hero__title span {
  display: block;
}

.hero__title em,
.section-title em {
  font-style: italic;
  color: var(--staystory-gold);
}

.hero__content .button {
  margin-top: 36px;
}

.hero__scroll-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
}

.intro,
.spotlights,
.authority,
.about {
  padding: 88px 0;
}

.intro__inner {
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 800;
  font-size: 0.74rem;
}

.eyebrow--script {
  text-transform: none;
  letter-spacing: 0;
  font-size: 2.5rem;
  line-height: 1;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--staystory-gold-deep);
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.82);
}

.intro__copy,
.about__panel p,
.contact-callout p {
  max-width: 860px;
  margin: 0 auto;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 1.05;
}

.section-divider {
  width: 90px;
  height: 2px;
  margin: 36px auto 0;
  background: rgba(200, 153, 93, 0.55);
}

.services-grid,
.outcomes-grid {
  display: grid;
  gap: 22px;
  margin-top: 56px;
}

.services-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card {
  padding: 0 28px;
  border-left: 1px solid var(--staystory-line);
}

.service-card:first-child {
  border-left: 0;
}

.service-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  color: var(--staystory-gold);
}

.service-card__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h2,
.outcome-card h3,
.spotlight-card h3 {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.96rem;
}

.service-card p,
.outcome-card p,
.authority__label,
.authority__logos span,
.contact-form-card,
.site-footer,
.fallback {
  font-size: 0.97rem;
  color: var(--staystory-muted);
}

.section-title {
  font-size: clamp(2.8rem, 4vw, 4.8rem);
  text-align: center;
}

.section-title--light {
  color: #fff;
  text-align: left;
}

.spotlights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.spotlight-card {
  min-height: 430px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: end;
}

.spotlight-card__content {
  width: 100%;
  padding: 28px;
  color: #fff;
}

.spotlight-card__content h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  text-transform: none;
  letter-spacing: 0;
}

.spotlight-card__content p {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
}

.spotlight-card__content a {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 800;
}

.spotlights__actions {
  margin-top: 34px;
  text-align: center;
}

.outcomes {
  padding: 88px 0;
  background:
    linear-gradient(180deg, rgba(18, 13, 10, 0.96), rgba(18, 13, 10, 0.92)),
    radial-gradient(circle at top right, rgba(200, 153, 93, 0.18), transparent 30%);
}

.outcomes__header {
  display: grid;
  gap: 14px;
  margin-bottom: 42px;
}

.outcomes-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.outcome-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.outcome-card h3 {
  color: #fff;
}

.outcome-card p {
  color: rgba(255, 255, 255, 0.72);
}

.authority {
  padding-top: 44px;
  padding-bottom: 44px;
  border-top: 1px solid rgba(132, 108, 84, 0.08);
  border-bottom: 1px solid rgba(132, 108, 84, 0.08);
  background: rgba(255, 253, 250, 0.84);
}

.authority__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
}

.authority__logos {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
}

.authority__logos span {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.5rem, 2vw, 2.45rem);
  font-weight: 700;
  color: #1d1814;
}

.about__panel {
  max-width: 860px;
}

.about__panel .section-title {
  text-align: left;
  margin-bottom: 24px;
}

.about__panel p:last-child {
  font-family: "Manrope", sans-serif;
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--staystory-muted);
}

.contact-section {
  padding: 88px 0;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.contact-section__inner {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(380px, 560px);
  gap: 34px;
  align-items: center;
}

.contact-callout .section-title {
  margin-bottom: 24px;
}

.contact-callout p:last-child {
  margin: 0;
  max-width: 480px;
  font-family: "Manrope", sans-serif;
  font-size: 1.02rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.84);
}

.contact-form-card {
  padding: 30px;
  border-radius: 22px;
  background: rgba(255, 251, 247, 0.96);
  box-shadow: var(--staystory-shadow);
}

.enquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.enquiry-form label,
.enquiry-form fieldset {
  display: grid;
  gap: 8px;
}

.enquiry-form span,
.enquiry-form legend {
  color: var(--staystory-ink);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 800;
}

.enquiry-form input,
.enquiry-form textarea,
.enquiry-form select {
  width: 100%;
  min-height: 56px;
  padding: 14px 16px;
  border: 1px solid rgba(132, 108, 84, 0.22);
  background: #fff;
  color: var(--staystory-ink);
  font: inherit;
}

.enquiry-form textarea {
  min-height: 132px;
  resize: vertical;
}

.enquiry-form__full {
  grid-column: 1 / -1;
}

.enquiry-form__checks {
  padding: 0;
  border: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.enquiry-form__checks label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--staystory-muted);
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.95rem;
}

.enquiry-form__checks input {
  width: 18px;
  min-height: 18px;
}

.enquiry-form__actions {
  gap: 14px;
}

.enquiry-form__actions p {
  margin: 0;
  text-align: center;
}

.site-footer {
  padding: 26px 0 34px;
  background: #130f0c;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.site-footer p {
  margin: 0;
}

.fallback {
  padding: 120px 0;
}

@media (max-width: 1080px) {
  .site-header__inner {
    grid-template-columns: auto auto;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    grid-column: 1 / -1;
  }

  .services-grid,
  .outcomes-grid,
  .spotlights-grid,
  .authority__logos,
  .contact-section__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  body.menu-open {
    overflow: hidden;
  }

  .site-header__inner {
    grid-template-columns: 1fr auto;
    min-height: 78px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 78px 0 auto 0;
    padding: 18px 20px 28px;
    background: rgba(251, 247, 241, 0.98);
    border-bottom: 1px solid rgba(132, 108, 84, 0.12);
    transform: translateY(-120%);
    transition: transform 180ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

  .primary-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .hero,
  .hero__inner {
    min-height: 720px;
  }

  .services-grid,
  .outcomes-grid,
  .spotlights-grid,
  .authority__inner,
  .authority__logos,
  .contact-section__inner,
  .enquiry-form,
  .enquiry-form__checks,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 0;
    border-left: 0;
    border-top: 1px solid var(--staystory-line);
    padding-top: 22px;
  }

  .service-card:first-child {
    border-top: 0;
    padding-top: 0;
  }

  .intro__copy,
  .about__panel p,
  .contact-callout p,
  .contact-callout p:last-child {
    max-width: none;
  }

  .contact-form-card {
    padding: 24px 18px;
  }

  .spotlight-card {
    min-height: 340px;
  }
}

@media (max-width: 560px) {
  :root {
    --staystory-shell: min(100% - 28px, 100%);
  }

  .hero__inner {
    padding-top: 54px;
  }

  .hero__content {
    margin: 48px 0;
  }

  .hero__title {
    font-size: clamp(2.7rem, 14vw, 4.5rem);
  }

  .intro,
  .spotlights,
  .outcomes,
  .about,
  .contact-section {
    padding: 64px 0;
  }

  .section-title {
    font-size: clamp(2.25rem, 11vw, 3.7rem);
    line-height: 0.98;
  }
}

/* Mockup-aligned editorial layout — v1.1.0 */
:root {
  --staystory-bg: #f8f6f2;
  --staystory-surface: #fbfaf7;
  --staystory-ink: #11100f;
  --staystory-muted: #34302c;
  --staystory-gold: #bd7b2f;
  --staystory-gold-deep: #a96720;
  --staystory-line: rgba(17, 16, 15, 0.18);
  --staystory-shell: min(1320px, calc(100% - 64px));
}

body {
  background: var(--staystory-bg);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.55;
}

.site-header {
  position: relative;
  background: #eef0f1;
  backdrop-filter: none;
  border-bottom: 0;
}

.site-header__inner {
  min-height: 108px;
  grid-template-columns: minmax(250px, 1fr) auto minmax(250px, 1fr);
  gap: 42px;
}

.site-brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 4vw, 4.65rem);
  font-weight: 500;
  letter-spacing: -0.055em;
}

.site-nav {
  justify-self: center;
}

.primary-menu {
  gap: 42px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  font-weight: 600;
}

.primary-menu li:first-child a::after {
  transform: scaleX(1);
}

.header-cta {
  justify-self: end;
  min-width: 196px;
  min-height: 66px;
  padding: 10px 24px;
  border-radius: 5px;
  line-height: 1.35;
  text-align: center;
  font-size: 0.78rem;
}

.hero,
.hero__inner {
  min-height: 720px;
}

.hero {
  background-position: center 53%;
}

.hero__inner {
  grid-template-rows: auto 1fr auto;
  align-items: center;
  padding: 64px 0 36px;
}

.hero__showreel {
  align-self: start;
  gap: 14px;
  font-size: 0.72rem;
}

.hero__play {
  width: 64px;
  height: 64px;
  border-color: var(--staystory-gold);
  border-width: 2px;
}

.hero__content {
  width: 100%;
  max-width: 1120px;
  margin: 0;
  align-self: center;
}

.hero__title {
  font-size: clamp(4.7rem, 7.2vw, 7.15rem);
  font-weight: 400;
  line-height: 0.93;
  letter-spacing: -0.025em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.2);
}

.hero__title em {
  color: #e2ae72;
  font-weight: 400;
}

.hero__content .button {
  display: none;
}

.hero__scroll {
  align-self: end;
  gap: 12px;
  font-size: 0.72rem;
}

.hero__scroll-icon {
  width: 48px;
  height: 48px;
}

.intro {
  padding: 44px 0 78px;
  background: #fbfaf7;
}

.intro__inner {
  max-width: 1320px;
}

.eyebrow--script {
  margin-bottom: 12px;
  font-family: "Allura", cursive;
  font-size: 3.1rem;
  font-style: normal;
  font-weight: 400;
  color: var(--staystory-gold-deep);
}

.intro__copy {
  max-width: 900px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.05rem, 2.8vw, 2.9rem);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -0.015em;
}

.section-divider {
  width: 70px;
  height: 1px;
  margin-top: 28px;
  background: var(--staystory-gold);
}

.services-grid {
  gap: 0;
  margin-top: 34px;
}

.service-card {
  min-height: 270px;
  padding: 0 38px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card__icon {
  width: 66px;
  height: 66px;
  margin-bottom: 20px;
}

.service-card h2 {
  margin-bottom: 14px;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.service-card p {
  max-width: 230px;
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.7;
  color: #23201d;
}

.spotlights {
  padding: 28px 0 56px;
  background: #f2f0ec;
}

.spotlights .eyebrow {
  margin-bottom: 4px;
  text-align: center;
  font-size: 0.72rem;
}

.spotlights .section-title {
  font-size: clamp(2.75rem, 4vw, 4.1rem);
  font-weight: 500;
  line-height: 1;
}

.spotlights-grid {
  gap: 16px;
  margin-top: 20px;
}

.spotlight-card {
  min-height: 420px;
  border-radius: 14px;
}

.spotlight-card__content {
  padding: 26px 26px 22px;
}

.spotlight-card__content h3 {
  margin-bottom: 5px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}

.spotlight-card__content p {
  margin-bottom: 8px;
  font-size: 0.71rem;
}

.spotlight-card__content a {
  font-size: 0.72rem;
}

.spotlight-card__content a::after {
  content: "  →";
}

.spotlights__actions {
  margin-top: 18px;
}

.spotlights__actions .button {
  min-width: 270px;
  min-height: 46px;
  font-size: 0.75rem;
}

.outcomes,
.about {
  display: none;
}

.authority {
  padding: 22px 0;
  background: #f8f7f4;
  border: 0;
}

.authority__inner {
  grid-template-columns: 150px 1fr;
  gap: 34px;
}

.authority__label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 600;
  color: #111;
}

.authority__logos {
  gap: 34px;
}

.authority__logos span {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.55rem, 2vw, 2.2rem);
  line-height: 0.9;
  text-align: center;
  color: #080808;
}

.authority__logos span:nth-child(2) {
  font-size: clamp(1.7rem, 2.2vw, 2.55rem);
  font-weight: 600;
}

.contact-section {
  padding-top: 54px;
}

@media (max-width: 1080px) {
  .site-header__inner {
    grid-template-columns: auto 1fr auto;
    gap: 20px;
  }

  .primary-menu {
    gap: 20px;
  }

  .header-cta {
    display: inline-flex;
    min-width: 170px;
  }

  .hero__title {
    font-size: clamp(4rem, 8.5vw, 6.3rem);
  }
}

@media (max-width: 820px) {
  :root {
    --staystory-shell: min(100% - 36px, 100%);
  }

  .site-header__inner {
    grid-template-columns: 1fr auto;
    min-height: 82px;
  }

  .site-brand {
    font-size: 2.8rem;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    justify-self: stretch;
  }

  .hero,
  .hero__inner {
    min-height: 690px;
  }

  .hero__inner {
    padding-top: 48px;
  }

  .hero__title {
    font-size: clamp(3.25rem, 12vw, 5.4rem);
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 36px;
  }

  .service-card,
  .service-card:first-child {
    min-height: 0;
    padding: 28px 22px 0;
    border-top: 1px solid var(--staystory-line);
  }

  .service-card:nth-child(odd) {
    border-left: 0;
  }

  .spotlights-grid {
    grid-template-columns: 1fr;
  }

  .spotlight-card {
    min-height: 430px;
  }

  .authority__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .authority__logos {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .hero,
  .hero__inner {
    min-height: 620px;
  }

  .hero__title {
    font-size: clamp(2.75rem, 14vw, 4rem);
    line-height: 0.96;
  }

  .intro {
    padding: 42px 0 58px;
  }

  .intro__copy {
    font-size: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card:first-child {
    padding: 26px 0 0;
    border-left: 0;
  }

  .authority__logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}
/* StayStory Journal updates - v1.2.0 */
.site-header__inner {
  grid-template-columns: 1fr auto;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 24px;
}


.enquiry-form__actions p {
  margin-top: 18px;
}

.journal-hero {
  padding: 92px 0 46px;
  background: #f2f0ec;
  text-align: center;
}

.journal-listing {
  padding: 54px 0 88px;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.journal-card {
  background: #fff;
}

.journal-card__image {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e8e3dc;
}

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

.journal-card__content {
  padding: 26px;
}

.journal-card__content h2 {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.journal-card__link {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 700;
}

.journal-pagination {
  margin-top: 42px;
}

.spotlight-article__hero {
  min-height: 580px;
  display: flex;
  align-items: end;
  padding: 70px 0;
  background-color: var(--staystory-dark);
  background-position: center;
  background-size: cover;
  color: #fff;
}

.spotlight-article__heading h1 {
  max-width: 980px;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(4rem, 7vw, 7rem);
  font-weight: 400;
  line-height: 0.95;
}

.spotlight-article__content {
  max-width: 900px;
  padding-top: 72px;
  padding-bottom: 88px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.65;
}

.spotlight-article__content .button {
  margin-top: 28px;
  font-family: "Montserrat", Arial, sans-serif;
}

@media (max-width: 820px) {
  .header-actions {
    gap: 16px;
  }

  .header-cta {
    display: inline-flex;
    min-width: 0;
    min-height: 50px;
    padding: 8px 14px;
    font-size: 0.64rem;
  }

  .journal-grid {
    grid-template-columns: 1fr;
  }

  .spotlight-article__hero {
    min-height: 480px;
  }
}

@media (max-width: 560px) {
  .site-brand {
    font-size: 2.25rem;
  }

  .header-actions {
    gap: 12px;
  }

  .header-cta {
    max-width: 142px;
    line-height: 1.2;
  }

  .spotlight-article__heading h1 {
    font-size: 3.5rem;
  }

  .spotlight-article__content {
    font-size: 1.2rem;
  }
}
/* Functional updates - v1.2.1 */
body.showreel-open {
  overflow: hidden;
}

.showreel-modal[aria-hidden="true"] {
  display: none;
}

.showreel-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 32px;
}

.showreel-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 7, 6, 0.82);
}

.showreel-modal__dialog {
  position: relative;
  width: min(1080px, 100%);
  background: #080706;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.45);
}

.showreel-modal__close {
  position: absolute;
  top: -46px;
  right: 0;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: transparent;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.showreel-modal__frame {
  aspect-ratio: 16 / 9;
  background: #000;
}

.showreel-modal__frame iframe,
.showreel-modal__frame video,
.spotlight-article__video iframe,
.spotlight-article__video video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.spotlight-article__intro {
  margin: 0 0 34px;
  font-size: clamp(2rem, 3vw, 3.15rem);
  line-height: 1.08;
  color: var(--staystory-ink);
}

.spotlight-article__story {
  white-space: pre-line;
}

.spotlight-article__video {
  aspect-ratio: 16 / 9;
  margin: 42px 0;
  background: #080706;
}

.spotlight-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 42px 0;
}

.spotlight-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.spotlight-links {
  display: grid;
  gap: 18px;
  margin: 42px 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.95rem;
}

.spotlight-links__social {
  white-space: pre-line;
  color: var(--staystory-muted);
}

.journal-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--staystory-muted);
}

@media (max-width: 820px) {
  .showreel-modal {
    padding: 18px;
  }

  .showreel-modal__close {
    top: -42px;
  }

  .spotlight-gallery {
    grid-template-columns: 1fr;
  }
}
