:root {
  --gold: #c9a86a;
  --gold-light: #e4d4a8;
  --gold-dark: #a8884a;
  --gold-rgb: 201, 168, 106;
  --primary: var(--gold);
  --primary-light: var(--gold-light);
  --primary-dark: var(--gold-dark);
  --primary-rgb: var(--gold-rgb);
  --deep-rgb: 15, 28, 40;
  --mid-rgb: 26, 42, 58;
  --navy: #1a2a3a;
  --navy-deep: #0f1c28;
  --navy-soft: #2d4054;
  --slate: #5a6678;
  --cream: #f3f1ea;
  --paper: #faf9f5;
  --white: #ffffff;
  --ink: #1a2a3a;
  --muted: #6b7788;
  --line: rgba(26, 42, 58, 0.12);
  --line-light: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 60px rgba(15, 28, 40, 0.18);
  --shadow-soft: 0 12px 32px rgba(15, 28, 40, 0.1);
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "Manrope", ui-sans-serif, system-ui, sans-serif;
  --header-h: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

body.is-loading {
  overflow: hidden;
}

body.is-loading .site-header,
body.is-loading #app,
body.is-loading .quick-contact,
body.is-loading .site-footer {
  visibility: hidden;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(160deg, rgba(var(--deep-rgb), 0.9) 0%, rgba(var(--mid-rgb), 0.78) 100%),
    url("assets/banner.png") center / cover no-repeat;
  transition:
    opacity 0.45s ease,
    visibility 0.45s ease;
}

.site-loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.site-loader-mark {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(255, 255, 255, 0.22);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: site-loader-spin 0.8s linear infinite;
}

.site-loader-text {
  margin: 0;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

@keyframes site-loader-spin {
  to {
    transform: rotate(360deg);
  }
}

a,
a:link,
a:visited,
a:hover,
a:active,
a:focus {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--header-h);
  padding: 0 clamp(18px, 5vw, 64px);
  border-bottom: 1px solid transparent;
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.site-header.on-hero {
  color: #fff;
}

.site-header.on-hero .brand small,
.site-header.on-hero .main-nav a:not(.nav-cta):not(.admin-link) {
  color: rgba(255, 255, 255, 0.82);
}

.site-header.on-hero .main-nav a:hover,
.site-header.on-hero .main-nav a.active {
  color: var(--gold-light);
}

.site-header.on-hero .menu-toggle {
  border-color: var(--line-light);
  background: rgba(255, 255, 255, 0.08);
}

.site-header.on-hero .menu-toggle span {
  background: #fff;
}

.site-header.scrolled,
.site-header.inner-page {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(250, 249, 245, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(var(--deep-rgb), 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 200px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
}

.brand-mark img {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-mark.has-logo img {
  display: block;
}

.brand-mark.has-logo::before {
  display: none;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 9px;
  border-top: 2px solid var(--gold);
  border-radius: 50% 50% 0 0;
  transform: rotate(-18deg);
}

.site-header.on-hero .brand-mark {
  border-color: var(--gold-light);
}

.site-header.on-hero .brand-mark::before {
  border-color: var(--gold-light);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand small {
  margin-top: 2px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.8vw, 22px);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.main-nav a {
  padding: 8px 0;
  transition: color 0.2s ease;
}

.main-nav a.active,
.main-nav a:hover {
  color: var(--navy);
}

.nav-cta {
  padding: 10px 18px !important;
  border: 1px solid var(--gold) !important;
  border-radius: 0;
  color: var(--navy-deep) !important;
  background: var(--gold);
  letter-spacing: 0.08em;
}

.site-header.on-hero .nav-cta {
  color: var(--navy-deep) !important;
  background: var(--gold-light);
  border-color: var(--gold-light) !important;
}

.admin-link {
  color: var(--slate) !important;
  font-size: 11px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: background 0.2s ease;
}

#app {
  padding-top: 0;
}

body.inner-page:not(.has-page-hero) #app {
  padding-top: var(--header-h);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: calc(var(--header-h) + 48px) clamp(20px, 6vw, 84px) 72px;
  color: #fff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(var(--deep-rgb), 0.88) 0%, rgba(var(--mid-rgb), 0.55) 48%, rgba(var(--deep-rgb), 0.35) 100%),
    var(
      --hero-banner-image,
      url("https://images.unsplash.com/photo-1567894340315-735d7c361db0?auto=format&fit=crop&w=2000&q=85")
    )
      center/cover;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  background: linear-gradient(to top, var(--paper), transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 820px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-kicker::before {
  content: "";
  width: 48px;
  height: 1px;
  background: var(--gold);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section.dark .eyebrow {
  color: var(--gold-light);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(48px, 9vw, 96px);
}

.hero p {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.75;
  font-weight: 500;
}

.hero-guide {
  position: absolute;
  right: clamp(16px, 5vw, 72px);
  bottom: 28px;
  z-index: 3;
  width: 72px;
  height: 180px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.hero-guide-track {
  display: block;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
}

.hero-guide-goblin {
  position: absolute;
  left: 50%;
  top: 0;
  width: 44px;
  height: 52px;
  margin-left: -22px;
  offset-path: url("#heroGuidePath");
  offset-rotate: auto 0deg;
  offset-anchor: center;
  offset-distance: 0%;
  animation: hero-goblin-path 3.6s ease-in-out infinite alternate;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.35));
}

.hero-guide-goblin svg {
  display: block;
  animation: hero-goblin-walk 0.45s ease-in-out infinite;
}

.hero-guide-goblin .goblin-foot-l {
  transform-origin: center;
  animation: hero-goblin-step 0.45s ease-in-out infinite;
}

.hero-guide-goblin .goblin-foot-r {
  transform-origin: center;
  animation: hero-goblin-step 0.45s ease-in-out infinite reverse;
}

.hero-guide-label {
  position: absolute;
  left: 50%;
  bottom: -22px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
}

@keyframes hero-goblin-path {
  from {
    offset-distance: 4%;
  }
  to {
    offset-distance: 92%;
  }
}

@keyframes hero-goblin-walk {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes hero-goblin-step {
  0%,
  100% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(0.72);
  }
}

@supports not (offset-path: url("#heroGuidePath")) {
  .hero-guide-goblin {
    offset-path: none;
    left: 50%;
    margin-left: -22px;
    animation: hero-goblin-fallback 3.6s ease-in-out infinite alternate;
  }
}

@keyframes hero-goblin-fallback {
  from {
    top: 6%;
  }
  to {
    top: 70%;
  }
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.section-cta {
  justify-content: center;
  margin-top: 40px;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.btn.primary {
  color: var(--navy-deep);
  background: var(--gold);
  border-color: var(--gold);
}

.btn.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  background: transparent;
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn.ghost {
  color: var(--navy);
  border-color: var(--line);
  background: transparent;
}

.btn.ghost:hover {
  border-color: var(--gold);
  color: var(--navy-deep);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(var(--deep-rgb), 0.2);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: -1px;
  background: var(--navy-deep);
  color: #fff;
}

.stat {
  padding: clamp(28px, 4vw, 40px);
  text-align: center;
  border-right: 1px solid var(--line-light);
}

.stat:last-child {
  border-right: none;
}

.stat strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 600;
  line-height: 1;
}

.stat span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.section {
  padding: clamp(64px, 9vw, 120px) clamp(20px, 6vw, 84px);
}

.section.alt {
  background: var(--cream);
}

.section.dark {
  color: #fff;
  background: var(--navy-deep);
}

.section.dark h2,
.section.dark h3 {
  color: #fff;
}

.section.dark p,
.section.dark .section-head p {
  color: rgba(255, 255, 255, 0.68);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 48px;
}

.section-head.center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-head h2 {
  max-width: 720px;
  font-size: clamp(34px, 5vw, 62px);
}

.section-head p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.section-head.center p {
  max-width: 580px;
}

.grid {
  display: grid;
  gap: 24px;
}

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

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

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

.feature-card,
.price-card,
.news-card,
.admin-panel,
.contact-card {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.feature-card:hover,
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.feature-card {
  position: relative;
}

.feature-card img,
.news-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.feature-card:hover img {
  transform: scale(1.04);
}

.feature-card .card-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 6px 12px;
  color: var(--navy-deep);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--gold-light);
}

.card-body {
  padding: 26px;
}

.card-body h3 {
  margin-bottom: 10px;
  font-size: 1.65rem;
}

.card-body p,
.contact-card p {
  color: var(--muted);
  line-height: 1.7;
}

.card-meta {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: 1.35rem;
}

.card-meta span {
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 13px;
}

.contact-card img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.split h2 {
  margin-top: 12px;
  font-size: clamp(32px, 4.5vw, 54px);
}

.split-media {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  isolation: isolate;
}

.split-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 1px solid var(--gold);
  pointer-events: none;
  box-shadow: var(--shadow);
}

.split-media img {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.list {
  display: grid;
  gap: 16px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.list li {
  position: relative;
  padding-left: 28px;
  color: var(--slate);
  line-height: 1.65;
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}

.section.dark .list li {
  color: rgba(255, 255, 255, 0.75);
}

.amenity {
  padding: 32px 24px;
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
  transition: background 0.25s ease;
}

.section.dark .amenity:hover {
  background: rgba(255, 255, 255, 0.07);
}

.amenity-icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  place-items: center;
  border: 1px solid rgba(var(--primary-rgb), 0.55);
  border-radius: 50%;
  color: var(--gold-light);
  background: radial-gradient(circle at 30% 25%, rgba(var(--gold-rgb), 0.22), rgba(var(--deep-rgb), 0.2));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.amenity-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.amenity h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.cta-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(40px, 6vw, 64px);
  color: #fff;
  background:
    linear-gradient(120deg, rgba(var(--deep-rgb), 0.92), rgba(var(--mid-rgb), 0.88)),
    url("https://images.unsplash.com/photo-1544551763-46a013bb70d5?auto=format&fit=crop&w=1600&q=80")
      center/cover;
}

.cta-band h2 {
  max-width: 520px;
  font-size: clamp(28px, 4vw, 44px);
}

.cta-band p {
  max-width: 420px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 56px) clamp(20px, 6vw, 84px) 56px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(var(--deep-rgb), 0.9), rgba(42, 106, 148, 0.75)),
    url("https://images.unsplash.com/photo-1544551763-46a013bb70d5?auto=format&fit=crop&w=1600&q=80")
      center/cover;
}

.page-hero h1 {
  font-size: clamp(40px, 7vw, 72px);
}

.page-hero p {
  max-width: 560px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.75);
}

.page-pad {
  padding-top: calc(var(--header-h) + 24px);
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 32px;
}

.price-card h3 {
  font-size: 1.5rem;
}

.price {
  margin: 18px 0;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: 2.2rem;
}

.price small {
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 13px;
}

.combo-note {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.65;
}

.schedule {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  background: var(--white);
}

.schedule th,
.schedule td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.schedule th {
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--navy-deep);
}

.schedule tr:last-child td {
  border-bottom: none;
}

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

.gallery figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--cream);
}

.gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery figure:hover img {
  transform: scale(1.06);
}

.gallery figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 18px 16px 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: linear-gradient(to top, rgba(var(--deep-rgb), 0.88), transparent);
}

.news-card .card-body {
  padding-top: 22px;
}

.form-shell {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
  align-items: start;
}

.form-card {
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

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

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-soft);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 14px 14px;
  color: var(--ink);
  background: var(--paper);
  transition: border-color 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold);
}

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

.notice {
  display: none;
  margin-top: 20px;
  padding: 16px 18px;
  border-left: 3px solid var(--gold);
  color: var(--navy);
  background: rgba(var(--primary-rgb), 0.12);
  line-height: 1.6;
}

.notice.show {
  display: block;
}

.quick-contact {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 15;
  display: grid;
  gap: 8px;
}

.quick-contact a {
  display: grid;
  min-width: 52px;
  height: 44px;
  place-items: center;
  color: var(--navy-deep);
  background: var(--gold);
  box-shadow: 0 10px 28px rgba(var(--deep-rgb), 0.25);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  transition: transform 0.2s ease;
}

.quick-contact a:hover {
  transform: translateY(-2px);
}

.login-card {
  max-width: 460px;
  margin: 0 auto;
}

.admin-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
}

.admin-panel {
  padding: 24px;
}

.admin-metric {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.metric {
  padding: 20px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.metric strong {
  display: block;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: 2rem;
}

.table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.admin-table select {
  min-width: 142px;
}

.admin-editor {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.admin-editor h3 {
  margin-bottom: 16px;
}

.admin-inline-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  gap: 12px;
  align-items: start;
  margin-bottom: 18px;
}

.admin-inline-form textarea {
  grid-column: 1 / 5;
  min-height: 76px;
}

.editor-table input,
.editor-table textarea {
  min-width: 180px;
}

.editor-table textarea {
  min-height: 72px;
}

.danger {
  color: #fff;
  background: #9b3d32;
  border-color: #9b3d32;
}

.site-footer {
  padding: 0;
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding: clamp(48px, 7vw, 80px) clamp(20px, 6vw, 84px);
  border-bottom: 1px solid var(--line-light);
}

.footer-brand strong {
  display: block;
  margin-bottom: 14px;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: #fff;
}

.footer-brand p {
  margin: 0;
  max-width: 360px;
  line-height: 1.75;
}

.footer-label {
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-contact span {
  display: block;
  margin-bottom: 8px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 22px clamp(20px, 6vw, 84px);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 920px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: calc(var(--header-h) + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    border: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .site-header.on-hero .main-nav {
    background: var(--navy-deep);
    border-color: var(--line-light);
  }

  .site-header.on-hero .main-nav a {
    color: rgba(255, 255, 255, 0.85);
  }

  .grid.three,
  .grid.four,
  .grid.two,
  .split,
  .form-shell,
  .admin-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .stat:nth-child(2) {
    border-right: none;
  }

  .admin-inline-form {
    grid-template-columns: 1fr;
  }

  .admin-inline-form textarea {
    grid-column: auto;
  }

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

  .hero-guide {
    right: 12px;
    bottom: 20px;
    width: 56px;
    height: 140px;
    transform: scale(0.88);
    transform-origin: bottom right;
  }

  .hero-guide-goblin {
    width: 36px;
    height: 44px;
    margin-left: -18px;
  }

  .hero-guide-label {
    font-size: 8px;
    bottom: -18px;
  }

  .split-media {
    aspect-ratio: 16 / 10;
    max-width: 100%;
  }

  .split-media::before {
    display: block;
  }
}

@media (max-width: 620px) {
  :root {
    --header-h: 68px;
  }

  .site-header {
    padding-inline: 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 1rem;
  }

  .nav-cta {
    display: none;
  }

  .section-head,
  .cta-band,
  .footer-bottom {
    display: block;
  }

  .section-head p {
    margin-top: 14px;
  }

  .hero {
    min-height: 92vh;
    padding-inline: 18px;
  }

  .form-grid,
  .stats,
  .admin-metric,
  .gallery {
    grid-template-columns: 1fr;
  }

  .stat {
    border-right: none;
    border-bottom: 1px solid var(--line-light);
  }

  .quick-contact {
    right: 12px;
    bottom: 12px;
  }
}
