@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --container-max: 1180px;
  --container-gutter: 2rem;
  --bg: #f6f2ea;
  --bg-deep: #ece4d6;
  --surface: rgba(255, 252, 248, 0.9);
  --surface-strong: #fffdfa;
  --surface-dark: #2a1138;
  --surface-dark-soft: rgba(63, 25, 84, 0.92);
  --text: #1b1320;
  --muted: #645c6c;
  --border: rgba(43, 17, 56, 0.12);
  --border-strong: rgba(248, 204, 35, 0.4);
  --primary: #3f1954;
  --primary-strong: #2c103c;
  --primary-contrast: #fff7e2;
  --secondary: #3f1954;
  --accent: #f8cc23;
  --shadow: 0 24px 70px rgba(28, 16, 36, 0.16);
  --shadow-soft: 0 16px 40px rgba(28, 16, 36, 0.1);
  --radius: 24px;
  --radius-sm: 18px;
  --space-1: 0.35rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4.5rem;
  --space-8: 6.5rem;
  --space-9: 8rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(248, 204, 35, 0.2), transparent 32%),
    radial-gradient(circle at 85% 18%, rgba(63, 25, 84, 0.12), transparent 28%),
    linear-gradient(180deg, #faf6ef 0%, var(--bg) 40%, var(--bg-deep) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.22), transparent 48%),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.04) 0,
      rgba(255, 255, 255, 0.04) 2px,
      transparent 2px,
      transparent 18px
    );
  opacity: 0.38;
  z-index: -1;
}

main {
  overflow: clip;
}

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

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

a:hover {
  color: var(--primary);
}

p {
  margin: 0 0 var(--space-3);
}

h1,
h2,
h3,
h4 {
  margin: 0 0 var(--space-3);
  line-height: 0.98;
  font-weight: 600;
  letter-spacing: -0.03em;
  font-family: "Cormorant Garamond", Georgia, serif;
}

h1 {
  font-size: clamp(3rem, 8vw, 6rem);
}

h2 {
  font-size: clamp(2rem, 5vw, 3.6rem);
}

h3 {
  font-size: clamp(1.4rem, 3vw, 2rem);
}

small,
.small {
  font-size: 0.92rem;
  color: var(--muted);
}

ul {
  padding-left: 1.2rem;
}

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: -3rem;
  background: var(--text);
  color: var(--primary-contrast);
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  z-index: 2000;
}

.skip-link:focus {
  top: 0.75rem;
}

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

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

.container {
  width: min(var(--container-max), calc(100% - var(--container-gutter)));
  margin: 0 auto;
}

.section {
  padding: clamp(4.5rem, 10vw, var(--space-8)) 0;
}

.section.compact {
  padding: clamp(3.5rem, 8vw, var(--space-7)) 0;
}

.section-heading {
  max-width: 48rem;
  display: grid;
  gap: var(--space-2);
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--secondary);
}

.eyebrow::before {
  content: "";
  width: 2.8rem;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

.surface {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
  padding: var(--space-4);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.surface-note {
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--accent);
  border-radius: 0 16px 16px 0;
  background: rgba(255, 245, 228, 0.72);
  color: var(--muted);
}

.grid {
  display: grid;
  gap: clamp(1.25rem, 2vw, 1.7rem);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.25rem;
  padding: 0.85rem 1.55rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, #f8cc23, #e9b500);
  color: #2a1138;
  box-shadow: 0 14px 28px rgba(44, 16, 60, 0.26);
}

.btn-primary:hover {
  color: #2a1138;
  background: linear-gradient(135deg, #ffd633, #f0bd00);
  box-shadow: 0 18px 34px rgba(44, 16, 60, 0.34);
}

.btn-outline {
  border-color: rgba(63, 25, 84, 0.36);
  color: var(--secondary);
  background: rgba(255, 250, 244, 0.4);
}

.btn-outline:hover {
  background: rgba(255, 245, 231, 0.92);
}

.btn-contrast {
  color: #fff6e8;
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
}

.btn-contrast:hover {
  color: #fff6e8;
  background: rgba(255, 255, 255, 0.16);
}

.btn:disabled,
.btn[aria-disabled="true"] {
  opacity: 0.58;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(248, 204, 35, 0.35);
  background: rgba(255, 246, 233, 0.45);
  color: var(--secondary);
  font-size: 0.84rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1100;
  background: rgba(246, 239, 228, 0.76);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 14px 38px rgba(16, 24, 21, 0.08);
  border-color: rgba(41, 35, 25, 0.08);
  background: rgba(250, 245, 238, 0.9);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: 1rem 0;
  position: relative;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  display: inline-block;
  width: 8.5rem;
  aspect-ratio: 846 / 402;
  overflow: hidden;
}

.brand-logo img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: auto;
  object-fit: cover;
}

@media (min-width: 768px) {
  .brand-logo {
    width: 10rem;
  }
}

.nav {
  display: flex;
  align-items: center;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  width: 48px;
  height: 48px;
  background: rgba(255, 250, 244, 0.78);
  border: 1px solid rgba(63, 25, 84, 0.14);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.nav-toggle-bar {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--secondary);
  display: block;
  margin: 0 auto;
}

.nav-menu {
  list-style: none;
  margin: 0;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  position: fixed;
  top: 5rem;
  left: 1rem;
  right: 1rem;
  background: rgba(252, 247, 239, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transform: translateY(-0.5rem);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
  z-index: 1200;
}

body.nav-open {
  overflow: hidden;
}

body.nav-open .site-header {
  z-index: 1250;
}

body.nav-open::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(15, 28, 23, 0.3);
  backdrop-filter: blur(4px);
  z-index: 1050;
}

body.nav-open .nav-menu {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav-menu a {
  display: flex;
  align-items: center;
  min-height: 2.9rem;
  padding: 0.2rem 0.55rem;
  font-weight: 700;
  color: var(--secondary);
  border-radius: 12px;
}

.nav-menu a[aria-current="page"] {
  background: rgba(63, 25, 84, 0.08);
  color: var(--primary-strong);
}

.nav-cta {
  padding-top: 0.5rem;
}

.nav-cta .btn {
  width: 100%;
}

.nav-menu .nav-cta a,
.nav-menu .nav-cta a:hover,
.nav-menu .nav-cta a[aria-current="page"] {
  color: #2a1138;
  background: linear-gradient(135deg, #f8cc23, #e9b500);
}

.nav-menu .nav-cta a:hover {
  background: linear-gradient(135deg, #ffd633, #f0bd00);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(38rem, 90vh, 52rem);
  display: flex;
  align-items: center;
  padding: clamp(6.5rem, 16vw, 8.5rem) 0 clamp(3rem, 8vw, 5rem);
  color: #f8f2e8;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(20, 10, 28, 0.92), rgba(20, 10, 28, 0.6) 56%, rgba(20, 10, 28, 0.28)),
    linear-gradient(180deg, rgba(20, 10, 28, 0.18), rgba(20, 10, 28, 0.78));
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 11rem;
  background: linear-gradient(180deg, transparent, rgba(20, 10, 28, 0.42));
  z-index: 0;
}

.hero-home {
  background-image: url("../img/royal-hotel-art-deco-facade.jpg");
  background-position: center 60%;
}

.hero-about {
  background-image: url("../img/gympie-mary-street-flood-1955.webp");
  background-position: center;
}

.hero-eat-drink {
  background-image: url("../img/guest-lounge-fireplace.jpg");
  background-position: center;
}

.hero-accommodation {
  background-image: url("../img/room-5-kitchenette-workspace.jpg");
  background-position: center 45%;
}

.hero-gallery {
  background-image: url("../img/royal-hotel-mary-street-day.jpg");
  background-position: center 60%;
}

.hero-contact {
  background-image: url("../img/red-sofa-guest-lounge-wide_today.jpg");
  background-position: center 35%;
}

.hero-shell {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: end;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 44rem;
  position: relative;
  z-index: 1;
}

.page-hero {
  min-height: 30rem;
  align-items: end;
}

.page-hero .hero-content {
  max-width: 34rem;
}

.hero .badge {
  margin-bottom: 1rem;
  color: #fff7eb;
  background: rgba(255, 248, 236, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.hero .eyebrow,
.cta-band .eyebrow {
  color: #fff6e8;
}

.hero .eyebrow::before,
.cta-band .eyebrow::before {
  opacity: 0.4;
}

.hero h1,
.hero h2,
.hero p,
.hero strong,
.hero .eyebrow,
.hero .meta-kicker {
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
}

.hero-lead {
  max-width: 38rem;
  font-size: clamp(1.08rem, 2.2vw, 1.3rem);
  color: rgba(248, 242, 232, 0.86);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: var(--space-4);
}

.hero-actions .btn {
  width: 100%;
}

.hero-panel {
  display: grid;
  gap: 1rem;
  padding: clamp(1.35rem, 3vw, 1.8rem);
  background: linear-gradient(180deg, rgba(14, 32, 26, 0.58), rgba(14, 32, 26, 0.34));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  box-shadow: 0 24px 50px rgba(4, 8, 7, 0.16);
  backdrop-filter: blur(18px);
  position: relative;
  z-index: 1;
}

.hero-panel .badge,
.hero-panel .btn-outline,
.hero .btn-outline {
  color: #fff6e8;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.hero-panel .btn-outline:hover,
.hero .btn-outline:hover {
  color: #fff6e8;
  background: rgba(255, 255, 255, 0.14);
}

.hero-panel h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  line-height: 1.02;
  margin-bottom: 0;
}

.hero-panel p {
  color: rgba(248, 242, 232, 0.82);
}

.hero-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.hero-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(248, 242, 232, 0.92);
}

.hero-list li::before {
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(248, 204, 35, 0.14);
  flex-shrink: 0;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: clamp(1.5rem, 4vw, 2rem);
}

.hero-meta-item {
  padding: 1rem 1.1rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 249, 241, 0.1);
  backdrop-filter: blur(12px);
}

.hero-meta-item strong {
  display: block;
  font-size: 1rem;
}

.hero-meta-item a {
  color: inherit;
}

.meta-kicker {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(248, 242, 232, 0.64);
}

.card {
  padding: clamp(1.2rem, 3vw, 1.7rem);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(255, 248, 240, 0.9));
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  backdrop-filter: blur(12px);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(248, 204, 35, 0.3);
}

.card-icon,
.feature-index {
  width: 3rem;
  height: 3rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(63, 25, 84, 0.16), rgba(248, 204, 35, 0.34));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--secondary);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.feature-card {
  min-height: 100%;
}

.feature-card p:last-child,
.card p:last-child {
  margin-bottom: 0;
}

.content-stack {
  display: grid;
  gap: 1rem;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.pill-list span {
  display: inline-flex;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(63, 25, 84, 0.12);
  background: rgba(255, 255, 255, 0.5);
  color: var(--secondary);
  font-size: 0.92rem;
  font-weight: 700;
}

.split-section {
  align-items: stretch;
}

.media-frame {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background:
    linear-gradient(180deg, rgba(238, 228, 213, 0.55), rgba(219, 204, 181, 0.4));
  box-shadow: var(--shadow-soft);
}

.media-frame img,
.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.portrait-shot {
  object-position: center 34%;
}

.room-shot {
  object-position: center 42%;
}

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

.stat-card {
  padding: 1.25rem 1.3rem;
  border-radius: 24px;
  background: linear-gradient(140deg, rgba(63, 25, 84, 0.98), rgba(44, 16, 60, 0.98));
  color: #f9f2e8;
  box-shadow: var(--shadow-soft);
}

.stat-card strong {
  color: var(--accent);
}

.stat-card strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.1rem;
}

.highlight-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.9rem;
}

.highlight-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(63, 25, 84, 0.08);
}

.highlight-list span {
  color: var(--primary-strong);
  font-weight: 800;
}

.cta-band {
  padding: clamp(1.8rem, 4vw, 2.5rem);
  border-radius: 32px;
  background:
    linear-gradient(140deg, rgba(63, 25, 84, 0.98), rgba(44, 16, 60, 0.97)),
    linear-gradient(120deg, rgba(248, 204, 35, 0.18), transparent);
  border: 1px solid rgba(248, 204, 35, 0.18);
  display: grid;
  gap: 1rem;
  align-items: start;
  color: #f9f2e8;
  box-shadow: var(--shadow);
}

.cta-band p {
  color: rgba(249, 242, 232, 0.8);
}

.event-list {
  display: grid;
  gap: 1rem;
}

.event-item {
  padding: 1.1rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 22px;
  background: rgba(255, 251, 245, 0.88);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 0.55rem;
}

.event-item strong {
  font-size: 1.05rem;
}

.event-item .event-meta {
  color: var(--primary-strong);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gallery-grid button,
.gallery-grid a {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.gallery-grid .media-frame {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-grid .media-frame:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.footer {
  padding: clamp(3rem, 7vw, 4.5rem) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(44, 16, 60, 0.99), rgba(19, 12, 14, 0.99)),
    linear-gradient(120deg, rgba(248, 204, 35, 0.12), transparent);
  color: #f4ede2;
}

.footer a:hover {
  color: var(--accent);
}

.footer-grid {
  display: grid;
  gap: 1.6rem;
}

.footer strong {
  display: block;
  margin-bottom: 0.4rem;
}

.footer a {
  color: inherit;
}

.footer .small {
  color: rgba(244, 237, 226, 0.72);
}

.form-grid {
  display: grid;
  gap: 1rem;
}

label {
  font-weight: 700;
  display: block;
  margin-bottom: 0.35rem;
  color: var(--secondary);
}

input,
select,
textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(63, 25, 84, 0.12);
  font-size: 1rem;
  font-family: inherit;
  color: var(--text);
  background: rgba(255, 255, 255, 0.72);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  background: rgba(248, 204, 35, 0.14);
  border-left: 3px solid var(--primary);
  padding: var(--space-3);
  border-radius: 0 16px 16px 0;
  color: var(--muted);
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th,
.table td {
  padding: 0.7rem 0.4rem;
  border-bottom: 1px solid rgba(63, 25, 84, 0.08);
  text-align: left;
}

.table th {
  color: var(--secondary);
  font-weight: 700;
}

details.surface summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--secondary);
}

details.surface[open] {
  border-color: rgba(248, 204, 35, 0.3);
}

details.surface p {
  margin-top: var(--space-2);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.84);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  padding: var(--space-4);
  z-index: 1400;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  width: min(920px, 95vw);
  background: #111713;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: clamp(1rem, 3vw, 1.4rem);
  display: grid;
  gap: 1rem;
  color: #f3efe8;
}

.lightbox figure {
  margin: 0;
}

.lightbox img {
  width: 100%;
  border-radius: 20px;
}

.lightbox-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.7rem;
}

.lightbox button {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f3efe8;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.no-scroll {
  overflow: hidden;
}

.animate {
  animation: fadeUp 0.8s ease both;
}

.animate.delay-1 {
  animation-delay: 0.12s;
}

.animate.delay-2 {
  animation-delay: 0.24s;
}

.animate.delay-3 {
  animation-delay: 0.36s;
}

/* Re-declare hero rules late in the file to avoid browser parser quirks. */
.hero.hero-home {
  background-image:
    linear-gradient(115deg, rgba(20, 10, 28, 0.9), rgba(20, 10, 28, 0.58) 56%, rgba(20, 10, 28, 0.26)),
    linear-gradient(180deg, rgba(20, 10, 28, 0.14), rgba(20, 10, 28, 0.74)),
    url("../img/royal-hotel-art-deco-facade.jpg");
}

.hero.hero-about {
  background-image:
    linear-gradient(115deg, rgba(20, 10, 28, 0.92), rgba(20, 10, 28, 0.62) 56%, rgba(20, 10, 28, 0.3)),
    linear-gradient(180deg, rgba(20, 10, 28, 0.15), rgba(20, 10, 28, 0.76)),
    url("../img/gympie-mary-street-flood-1955.webp");
}

.hero.hero-eat-drink {
  background-image:
    linear-gradient(115deg, rgba(20, 10, 28, 0.9), rgba(20, 10, 28, 0.58) 56%, rgba(20, 10, 28, 0.28)),
    linear-gradient(180deg, rgba(20, 10, 28, 0.15), rgba(20, 10, 28, 0.76)),
    url("../img/guest-lounge-fireplace.jpg");
}

.hero.hero-accommodation {
  background-image:
    linear-gradient(115deg, rgba(20, 10, 28, 0.9), rgba(20, 10, 28, 0.58) 56%, rgba(20, 10, 28, 0.28)),
    linear-gradient(180deg, rgba(20, 10, 28, 0.15), rgba(20, 10, 28, 0.76)),
    url("../img/room-5-kitchenette-workspace.jpg");
}

.hero.hero-gallery {
  background-image:
    linear-gradient(115deg, rgba(20, 10, 28, 0.9), rgba(20, 10, 28, 0.58) 56%, rgba(20, 10, 28, 0.28)),
    linear-gradient(180deg, rgba(20, 10, 28, 0.15), rgba(20, 10, 28, 0.76)),
    url("../img/royal-hotel-mary-street-day.jpg");
}

.hero.hero-contact {
  background-image:
    linear-gradient(115deg, rgba(20, 10, 28, 0.92), rgba(20, 10, 28, 0.6) 56%, rgba(20, 10, 28, 0.3)),
    linear-gradient(180deg, rgba(20, 10, 28, 0.15), rgba(20, 10, 28, 0.76)),
    url("../img/red-sofa-guest-lounge-wide_today.jpg");
}

.hero .eyebrow,
.cta-band .eyebrow {
  color: #fff6e8;
}

.hero h1,
.hero h2,
.hero p,
.hero strong,
.hero .eyebrow,
.hero .meta-kicker {
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.34);
}

.hero-panel {
  background: linear-gradient(180deg, rgba(14, 32, 26, 0.62), rgba(14, 32, 26, 0.36));
}

.hero-panel .badge,
.hero-panel .btn-outline,
.hero .btn-outline {
  color: #fff6e8;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.hero-panel .btn-outline:hover,
.hero .btn-outline:hover {
  color: #fff6e8;
  background: rgba(255, 255, 255, 0.14);
}

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

@media (min-width: 520px) {
  .hero-actions .btn {
    width: auto;
  }

  .hero-meta {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

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

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

  .form-grid > :nth-child(5) {
    grid-column: 1 / -1;
  }
}

@media (min-width: 768px) {
  body.nav-open::after {
    display: none;
  }

  body.nav-open {
    overflow: visible;
  }

  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    opacity: 1;
    transform: none;
    overflow: visible;
    pointer-events: auto;
    backdrop-filter: none;
  }

  .nav-menu li {
    margin-left: 0.5rem;
  }

  .nav-menu a {
    min-height: auto;
    padding: 0.45rem 0.7rem;
  }

  .nav-cta {
    padding-top: 0;
    margin-left: 0.2rem;
  }

  .nav-cta .btn {
    width: auto;
  }

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

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

  .hero {
    align-items: center;
  }

  .hero-shell {
    grid-template-columns: minmax(0, 1.45fr) minmax(19rem, 0.9fr);
  }

  .page-hero .hero-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: clamp(5rem, 8vw, var(--space-9)) 0;
  }

  .page-hero {
    min-height: 34rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
