:root {
  --bg: #f6f4ef;
  --surface: #ffffff;
  --surface-alt: #efece4;
  --text: #12211a;
  --text-muted: #4d5c55;
  --border: rgba(18, 33, 26, 0.12);
  --accent: #0f5132;
  --accent-2: #c9a227;
  --secondary: #1c3d2c;
  --on-accent: #ffffff;
  --dark-band: #0c1a13;
  --radius: 2px;
  --radius-btn: 2px;
  --font-heading: Cambria, Georgia, serif;
  --font-body: Calibri, "Segoe UI", Arial, sans-serif;
  --max-width: 1040px;
  --section-pad: 68px;
  --header-h: 58px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.58;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.4px;
  line-height: 1.2;
  margin: 0 0 0.6em;
  color: var(--text);
}

h1 {
  font-size: clamp(32px, 4.8vw, 50px);
}

h2 {
  font-size: clamp(22px, 3.2vw, 32px);
}

h3 {
  font-size: 1.15rem;
}

p {
  margin: 0 0 1em;
}

ul,
ol {
  margin: 0 0 1em;
  padding-left: 1.25em;
}

.kicker {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.55em;
}

.wrap {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.band {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, var(--bg), var(--surface-alt));
}

.band--surface {
  background: var(--surface);
}

.band--alt {
  background: linear-gradient(180deg, var(--surface-alt), var(--bg));
}

.band--plain {
  background: var(--bg);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
  min-height: var(--header-h);
  width: min(100% - 1.5rem, var(--max-width));
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.3px;
  white-space: nowrap;
}

.brand img {
  width: 32px;
  height: 31px;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 36px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
}

.nav-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.15rem 1rem;
  flex-wrap: wrap;
}

.nav-primary a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 600;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

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

.nav-primary a[aria-current="page"] {
  color: var(--accent);
  border-bottom-color: var(--accent-2);
}

.nav-contact {
  justify-self: end;
}

.nav-contact a {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 700;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  padding: 0.35rem 0.7rem;
  background: var(--surface-alt);
}

.nav-contact a:hover,
.nav-contact a[aria-current="page"] {
  background: var(--accent);
  color: var(--on-accent);
  border-color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.2;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-btn);
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--on-accent);
  text-decoration: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--on-accent);
}

.btn--ghost {
  background: transparent;
  color: var(--accent);
}

.btn--ghost:hover {
  background: var(--accent);
  color: var(--on-accent);
}

.hero-corner {
  position: relative;
  padding: calc(var(--section-pad) - 12px) 0 var(--section-pad);
  background: linear-gradient(180deg, var(--bg), var(--surface-alt));
  overflow: hidden;
}

.hero-corner__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem 2rem;
  align-items: start;
}

.hero-corner__title {
  grid-column: 1 / -1;
  max-width: 18ch;
  margin-bottom: 0;
  margin-inline: 0;
  justify-self: start;
}

.hero-corner__intro {
  grid-column: 2;
  margin-top: -0.5rem;
  color: var(--text-muted);
  font-size: 1.02rem;
}

.hero-corner__notice {
  grid-column: 1 / -1;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0.25rem 0 0;
  max-width: 52rem;
}

.hero-corner__photo {
  position: absolute;
  right: max(1rem, calc((100% - var(--max-width)) / 2));
  bottom: -36px;
  width: min(280px, 38vw);
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  z-index: 2;
}

.hero-corner__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-corner__spacer {
  height: 120px;
}

.page-title {
  padding: 2.75rem 0 1.25rem;
  background: linear-gradient(180deg, var(--bg), var(--surface-alt));
  border-bottom: 1px solid var(--border);
}

.page-title p {
  max-width: 42rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.category-card {
  display: flex;
  flex-direction: column;
  min-height: 420px;
  position: relative;
}

.category-card__img {
  flex: 1;
  min-height: 240px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.category-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card__panel {
  margin: -4.5rem 0.85rem 0;
  position: relative;
  z-index: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1rem 1.15rem;
}

.category-card__panel h2 {
  font-size: 1.35rem;
  margin-bottom: 0.45em;
}

.category-card__panel p {
  color: var(--text-muted);
  font-size: 0.94rem;
  margin-bottom: 0.9em;
}

.feedback-band {
  background: var(--surface-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.feedback-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feedback-list li {
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--border);
}

.feedback-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.feedback-list li:first-child {
  padding-top: 0.25rem;
}

.feedback-list blockquote {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  line-height: 1.45;
  color: var(--text);
}

.feedback-list cite {
  display: block;
  margin-top: 0.65rem;
  font-style: normal;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}

.steps-row::before {
  content: "";
  position: absolute;
  top: 1.05rem;
  left: 8%;
  right: 8%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 0.15rem;
}

.step__num {
  width: 2.1rem;
  height: 2.1rem;
  margin: 0 auto 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent);
}

.step h3 {
  margin-bottom: 0.4em;
  font-size: 1.05rem;
}

.step p {
  color: var(--text-muted);
  font-size: 0.93rem;
  margin: 0;
}

.notes-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

.note-block {
  border-top: 2px solid var(--accent);
  padding-top: 0.85rem;
}

.note-block h3 {
  font-size: 1rem;
  margin-bottom: 0.5em;
}

.note-block p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0;
}

.amenities-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.amenity-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
}

.amenity-block h3 {
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 0.45em;
}

.amenity-block p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0;
}

.section-head {
  margin-bottom: 1.75rem;
  max-width: 40rem;
}

.section-head p {
  color: var(--text-muted);
  margin: 0;
}

.catalog-close {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.95rem;
}

.gems-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.gem-row {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 1.35rem;
  align-items: stretch;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
}

.gem-row--flip {
  grid-template-columns: 1fr 40%;
}

.gem-row--flip .gem-row__media {
  order: 2;
}

.gem-row--flip .gem-row__body {
  order: 1;
}

.gem-row__media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.gem-row__body {
  padding: 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gem-row__body h2 {
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  margin-bottom: 0.35em;
}

.gem-row__meta {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 0.75em;
}

.gem-row__body p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.gem-row__body .btn {
  align-self: flex-start;
}

.sig-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sig-row {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.sig-row:first-child {
  border-top: 1px solid var(--border);
}

.sig-row__thumb {
  width: 88px;
  height: 88px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  flex-shrink: 0;
}

.sig-row__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sig-row__body {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.sig-row__body h2 {
  font-size: 1.2rem;
  margin-bottom: 0.3em;
}

.sig-row__meta {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 0.45em;
}

.sig-row__body p {
  color: var(--text-muted);
  font-size: 0.94rem;
  margin: 0;
}

.past-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.past-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
}

.past-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.past-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.past-card__name {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0.7rem 0.8rem;
  background: rgba(12, 26, 19, 0.72);
  color: var(--on-accent);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1.25;
}

.past-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 0.95rem 0.9rem 1rem;
}

.past-card__meta {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.55em;
}

.past-card__body p {
  color: var(--text-muted);
  font-size: 0.92rem;
  flex: 1;
  margin-bottom: 0.95rem;
}

.past-card__body .btn {
  margin-top: auto;
  align-self: stretch;
}

.editorial-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  align-items: start;
  padding: var(--section-pad) 0;
}

.editorial-index {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1rem;
}

.editorial-index h2 {
  font-size: 0.95rem;
  margin-bottom: 0.75em;
}

.editorial-index ol {
  margin: 0;
  padding-left: 1.1em;
  font-size: 0.88rem;
}

.editorial-index a {
  color: var(--text-muted);
  text-decoration: none;
}

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

.editorial-prose section {
  margin-bottom: 2.5rem;
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.editorial-prose section:last-child {
  margin-bottom: 0;
}

.editorial-prose p {
  color: var(--text);
}

.notes-stack {
  padding: var(--section-pad) 0;
}

.notes-stack section {
  margin-bottom: 3.25rem;
  max-width: 46rem;
}

.notes-stack section:last-child {
  margin-bottom: 0;
}

.notes-stack .num-kicker {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 0.45em;
}

.contact-wrap {
  padding: var(--section-pad) 0;
}

.contact-col {
  max-width: 640px;
  margin: 0 auto;
}

.contact-col > p {
  color: var(--text-muted);
}

.contact-email {
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
}

.form-field {
  margin-bottom: 1rem;
}

.form-field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.35em;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font: inherit;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.65rem 0.75rem;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.form-agree {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin: 1.1rem 0 0.5rem;
  font-size: 0.9rem;
}

.form-agree input {
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.form-error {
  color: #8a1c1c;
  font-size: 0.85rem;
  margin: 0.35rem 0 0.75rem;
  min-height: 1.2em;
}

.form-error[hidden] {
  display: none;
}

.confirm-panel {
  border: 1px solid var(--border);
  background: var(--surface-alt);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
}

.confirm-panel h2 {
  font-size: 1.35rem;
}

.sitemap-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sitemap-list li {
  display: grid;
  grid-template-columns: minmax(10rem, 0.4fr) 1fr;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}

.sitemap-list a {
  font-weight: 700;
  text-decoration: none;
  color: var(--accent);
}

.sitemap-list span {
  color: var(--text-muted);
  font-size: 0.94rem;
}

.legal-body {
  padding: var(--section-pad) 0;
  max-width: 46rem;
  margin-inline: 0;
  width: 100%;
}

.legal-body h2 {
  margin-top: 1.75rem;
}

.legal-body h3 {
  margin-top: 1.15rem;
}

.site-footer {
  background: var(--surface);
  border-top: 2px solid var(--accent);
  margin-top: 0;
}

.site-footer__independence {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.45;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
  margin: 0;
}

.site-footer__band {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.site-footer__brand-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
}

.site-footer__blurb {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0;
  max-width: 38rem;
}

.site-footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 1.25rem;
  align-items: start;
}

.footer-group h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0 0 0.7em;
  display: inline-block;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 0.2em;
}

.footer-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-group li {
  margin-bottom: 0.4em;
}

.footer-group a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
}

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

.footer-top {
  justify-self: end;
  align-self: start;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
}

.site-footer__bottom {
  padding: 1.15rem 0 1.5rem;
  text-align: center;
}

.site-footer__copy {
  margin: 0 0 0.55rem;
  font-size: 0.84rem;
  color: var(--text-muted);
}

.site-footer__consent {
  margin: 0 0 0.75rem;
}

.site-footer__consent button {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  font-size: 0.84rem;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.site-footer__requisites {
  margin: 0;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: var(--surface);
  border-top: 2px solid var(--accent);
  padding: 1rem 0;
  box-shadow: none;
}

.consent-banner[hidden] {
  display: none;
}

.consent-banner__inner {
  width: min(100% - 1.5rem, var(--max-width));
  margin-inline: auto;
  display: grid;
  gap: 0.85rem;
}

.consent-banner__text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.consent-banner__options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  font-size: 0.88rem;
}

.consent-banner__options label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text);
}

.consent-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.consent-banner__actions .btn {
  font-size: 0.82rem;
  padding: 0.55rem 0.85rem;
}

@media (max-width: 1024px) {
  .category-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

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

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

  .site-footer__links {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top {
    justify-self: start;
    grid-column: 1 / -1;
  }
}

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

  .nav-toggle {
    display: inline-flex;
    justify-self: start;
  }

  .nav-primary {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1rem 1rem;
    gap: 0;
  }

  .nav-primary.is-open {
    display: flex;
  }

  .nav-primary a {
    padding: 0.65rem 0.25rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-contact {
    justify-self: end;
  }

  .hero-corner__grid {
    grid-template-columns: 1fr;
  }

  .hero-corner__intro {
    grid-column: 1;
    margin-top: 0;
    max-width: 36rem;
    padding-right: min(42vw, 200px);
  }

  .editorial-layout {
    grid-template-columns: 1fr;
  }

  .editorial-index {
    position: static;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 52px;
  }

  .hero-corner__photo {
    width: min(200px, 42vw);
    bottom: -24px;
  }

  .hero-corner__spacer {
    height: 90px;
  }

  .steps-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .steps-row::before {
    display: none;
  }

  .step {
    text-align: left;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.35rem 0.85rem;
  }

  .step__num {
    margin: 0;
    grid-row: 1 / 3;
  }

  .gem-row,
  .gem-row--flip {
    grid-template-columns: 1fr;
  }

  .gem-row--flip .gem-row__media,
  .gem-row--flip .gem-row__body {
    order: initial;
  }

  .gem-row__media img {
    min-height: 200px;
    aspect-ratio: 16 / 10;
  }

  .sig-row {
    grid-template-columns: 72px 1fr;
  }

  .sig-row__thumb {
    width: 72px;
    height: 72px;
  }

  .sig-row__body {
    text-align: left;
  }

  .sig-row .btn {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .site-footer__brand-row {
    grid-template-columns: 1fr;
  }

  .sitemap-list li {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
}

@media (max-width: 560px) {
  .past-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .wrap {
    width: min(100% - 1.25rem, var(--max-width));
  }

  .notes-row,
  .amenities-row,
  .site-footer__links {
    grid-template-columns: 1fr;
  }

  .hero-corner__intro {
    padding-right: 0;
  }

  .hero-corner__photo {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 280px;
    margin-top: 1.25rem;
  }

  .hero-corner__spacer {
    display: none;
  }

  .brand span {
    font-size: 0.95rem;
  }

  .consent-banner__actions {
    flex-direction: column;
  }

  .consent-banner__actions .btn {
    width: 100%;
  }
}
