:root {
  --white: #ffffff;
  --clean-white: #fbf7f4;
  --soft-white: #f8f8f6;
  --ink: #080808;
  --ink-soft: #34302d;
  --muted: #6d615c;
  --crimson: #8b0015;
  --dark-crimson: #5e000e;
  --gold: #cba24a;
  --gold-soft: #d6b766;
  --gold-pale: #e8d7ae;
  --copper: #b4640a;
  --line: rgba(203, 162, 74, 0.28);
  --shadow: 0 8px 24px rgba(8, 8, 8, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  color: var(--ink);
  background: var(--white);
  font-family: "Jost", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.4;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--white);
  overflow-x: hidden;
}

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

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.page-shell,
.announcement,
.site-header,
main {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.announcement {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 72px;
  min-height: 48px;
  border-bottom: 1px solid rgba(203, 162, 74, 0.16);
  color: var(--white);
  background: var(--dark-crimson);
  font-size: 14px;
  font-weight: 300;
}

.announce-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.announcement svg {
  width: 18px;
  height: 18px;
  color: var(--gold-soft);
}

.site-header {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 88px;
  padding: 16px 36px 8px;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(203, 162, 74, 0.14);
}

.brand {
  display: grid;
  width: 136px;
  justify-items: center;
  color: var(--dark-crimson);
  line-height: 1;
}

.brand-main {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 56px;
  font-weight: 500;
  letter-spacing: 0;
}

.brand-rule {
  width: 104px;
  height: 1px;
  margin: -2px 0 4px;
  background: var(--gold-soft);
}

.brand-sub {
  color: var(--ink);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  min-width: 0;
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav .active {
  color: var(--dark-crimson);
}

.main-nav .active::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--dark-crimson);
  content: "";
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.book-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 224px;
  height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  color: var(--white);
  background: var(--dark-crimson);
  box-shadow: 0 4px 16px rgba(8, 8, 8, 0.18);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  white-space: nowrap;
}

.book-button svg {
  width: 16px;
  height: 16px;
}

.book-short,
.nav-toggle,
.hamburger {
  display: none;
}

.icon-link {
  position: relative;
  display: grid;
  width: 24px;
  height: 48px;
  place-items: center;
  color: var(--ink);
}

.icon-link svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.8;
}

.bag-count {
  position: absolute;
  top: 4px;
  right: -8px;
  display: grid;
  width: 16px;
  height: 16px;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--dark-crimson);
  font-size: 10px;
  line-height: 1;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(460px, 0.95fr) minmax(470px, 1.05fr);
  min-height: 520px;
  overflow: hidden;
  background:
    linear-gradient(90deg, var(--white) 0%, rgba(255, 255, 255, 0.98) 36%, rgba(255, 255, 255, 0.2) 62%, rgba(255, 255, 255, 0) 100%),
    var(--white);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 34px 0 32px 48px;
}

.eyebrow,
.section-label {
  margin: 0;
  color: var(--dark-crimson);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.2px;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero h1,
.booking-band h2 {
  margin: 12px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(54px, 5.1vw, 76px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.98;
}

.hero h1 em {
  color: var(--dark-crimson);
  font-style: italic;
}

.hero h1 span {
  color: var(--copper);
  font-family: "Jost", Arial, sans-serif;
  font-size: 0.72em;
  font-weight: 300;
}

.hero-text {
  max-width: 492px;
  margin: 20px 0 0;
  color: var(--ink);
  font-size: 19px;
  font-weight: 300;
  line-height: 1.5;
}

.attribute-chips {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-width: 640px;
  margin-top: 34px;
}

.attribute-chips div {
  min-height: 94px;
  padding: 0 18px;
  border-left: 1px solid rgba(203, 162, 74, 0.24);
}

.attribute-chips div:first-child {
  border-left: 0;
  padding-left: 0;
}

.attribute-chips span {
  display: grid;
  width: 32px;
  height: 32px;
  margin-bottom: 12px;
  place-items: center;
  color: var(--copper);
}

.attribute-chips svg {
  width: 31px;
  height: 31px;
}

.attribute-chips strong,
.attribute-chips small {
  display: block;
}

.attribute-chips strong {
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.3px;
  line-height: 1.2;
  text-transform: uppercase;
}

.attribute-chips small {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.primary-btn,
.outline-btn,
.light-btn,
.more-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 208px;
  height: 54px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}

.primary-btn {
  color: var(--white);
  background: var(--crimson);
  box-shadow: 0 8px 18px rgba(139, 0, 21, 0.18);
}

.outline-btn {
  border: 1px solid rgba(139, 0, 21, 0.58);
  color: var(--dark-crimson);
  background: rgba(255, 255, 255, 0.82);
}

.primary-btn svg,
.outline-btn svg,
.light-btn svg,
.more-link svg {
  width: 18px;
  height: 18px;
}

.hero-media {
  position: relative;
  min-height: 520px;
}

.hero-media::before {
  position: absolute;
  inset: 0 auto 0 -18%;
  z-index: 1;
  width: 45%;
  background: linear-gradient(90deg, var(--white), rgba(255, 255, 255, 0));
  content: "";
  pointer-events: none;
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
}

.hero-stat {
  position: absolute;
  right: 36px;
  bottom: 58px;
  z-index: 2;
  width: 154px;
  padding: 22px 18px 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 24px rgba(8, 8, 8, 0.16);
}

.hero-stat strong {
  display: block;
  color: var(--dark-crimson);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
}

.hero-stat span,
.hero-stat small {
  display: block;
  color: var(--ink);
  font-size: 13px;
  font-weight: 400;
}

.hero-stat .stars {
  margin-top: 12px;
  color: var(--copper);
  font-size: 13px;
  letter-spacing: 1px;
}

.gallery-section {
  padding: 24px 44px 32px;
  border-top: 1px solid rgba(203, 162, 74, 0.18);
  background: var(--clean-white);
}

.filter-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 18px;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
}

.filter-tabs a,
.sort-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 1px solid rgba(203, 162, 74, 0.28);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  white-space: nowrap;
}

.filter-tabs a {
  min-width: 112px;
  padding: 0 20px;
}

.filter-tabs .active {
  border-color: var(--dark-crimson);
  color: var(--white);
  background: var(--dark-crimson);
}

.sort-button {
  min-width: 180px;
  padding: 0 18px;
}

.sort-button svg {
  width: 16px;
  height: 16px;
  margin-left: 16px;
  color: var(--dark-crimson);
}

.photo-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 150px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.photo-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(203, 162, 74, 0.16);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(8, 8, 8, 0.08);
}

.photo-card.tall {
  grid-row: span 2;
}

.photo-card.wide {
  grid-column: span 2;
  grid-row: span 2;
}

.photo-card.short {
  grid-row: span 1;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-card h2 {
  position: absolute;
  right: auto;
  bottom: 12px;
  left: 12px;
  max-width: calc(100% - 24px);
  margin: 0;
  padding: 8px 10px;
  border: 1px solid rgba(203, 162, 74, 0.26);
  border-radius: 5px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 4px 12px rgba(8, 8, 8, 0.08);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.1;
}

.more-link {
  display: flex;
  width: max-content;
  min-width: 218px;
  margin: 26px auto 0;
  border: 1px solid rgba(203, 162, 74, 0.42);
  color: var(--dark-crimson);
  background: var(--white);
}

.testimonials-wrap {
  padding: 0 44px 22px;
  background: var(--clean-white);
}

.testimonials {
  padding: 18px 20px 22px;
  border: 1px solid rgba(203, 162, 74, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
}

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

.quote-grid article {
  min-height: 196px;
  padding: 0 32px;
  border-left: 1px solid rgba(203, 162, 74, 0.24);
}

.quote-grid article:first-child {
  border-left: 0;
  padding-left: 0;
}

.quote-mark {
  display: block;
  color: #c98f73;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 48px;
  line-height: 0.65;
}

.quote-grid p {
  min-height: 80px;
  margin: 0;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
}

.quote-grid footer {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 18px;
}

.quote-grid strong {
  color: var(--dark-crimson);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.quote-grid small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 300;
}

.quote-grid footer span {
  margin-top: 8px;
  color: var(--copper);
  font-size: 13px;
  letter-spacing: 2px;
}

.attribute-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0 44px 28px;
  padding: 22px 24px;
  border: 1px solid rgba(203, 162, 74, 0.18);
  border-radius: 8px;
  background: var(--white);
}

.attribute-strip div {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  column-gap: 16px;
  min-height: 70px;
  padding: 0 24px;
  border-left: 1px solid rgba(203, 162, 74, 0.24);
}

.attribute-strip div:first-child {
  border-left: 0;
  padding-left: 0;
}

.attribute-strip span {
  grid-row: 1 / 3;
  color: var(--copper);
}

.attribute-strip svg {
  width: 38px;
  height: 38px;
  stroke-width: 1.3;
}

.attribute-strip strong,
.attribute-strip small {
  display: block;
}

.attribute-strip strong {
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  line-height: 1.2;
  text-transform: uppercase;
}

.attribute-strip small {
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.35;
}

.booking-band {
  display: grid;
  grid-template-columns: 176px minmax(0, 1fr) auto 268px;
  align-items: center;
  gap: 24px;
  min-height: 132px;
  margin: 0 44px 32px;
  overflow: hidden;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(90deg, #5e000e, #8b0015 62%, #5e000e);
}

.booking-band img {
  width: 176px;
  height: 132px;
  object-fit: cover;
}

.booking-band h2 {
  margin: 0 0 6px;
  color: var(--white);
  font-size: 32px;
  line-height: 1.1;
}

.booking-band p {
  margin: 0;
  font-size: 17px;
  font-weight: 300;
}

.light-btn {
  min-width: 268px;
  color: var(--dark-crimson);
  background: var(--white);
}

.callout {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  line-height: 1.5;
}

.callout a {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.callout small {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 300;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: 196px 1fr 330px;
  gap: 44px;
  padding: 32px 44px 24px;
  overflow: hidden;
  background: var(--clean-white);
}

.footer-brand .brand {
  margin-bottom: 24px;
}

.footer-brand p,
.newsletter p {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.45;
}

.socials {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  color: var(--ink);
}

.socials a {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  font-size: 14px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer-links h2,
.newsletter h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.1;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 300;
}

.newsletter {
  position: relative;
  min-height: 208px;
  padding-left: 32px;
  border-left: 1px solid rgba(203, 162, 74, 0.24);
}

.newsletter form {
  position: relative;
  z-index: 1;
  display: flex;
  width: 240px;
  height: 40px;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid rgba(52, 48, 45, 0.16);
  border-radius: 4px;
  background: var(--white);
}

.newsletter label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.newsletter input {
  width: 100%;
  border: 0;
  padding: 0 48px 0 16px;
  color: var(--ink);
  background: transparent;
  font-size: 13px;
  font-weight: 300;
}

.newsletter button {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 0;
  color: var(--crimson);
  background: transparent;
}

.newsletter button svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.8;
}

.newsletter img {
  position: absolute;
  right: 0;
  bottom: -18px;
  width: 150px;
  height: 134px;
  object-fit: cover;
}

.legal {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 300;
}

.legal nav {
  display: flex;
  gap: 24px;
}

@media (max-width: 1320px) {
  .announcement {
    gap: 28px;
  }

  .site-header {
    grid-template-columns: 146px minmax(0, 1fr) auto;
    gap: 16px;
    padding-right: 24px;
    padding-left: 24px;
  }

  .main-nav {
    gap: 18px;
    font-size: 11px;
    letter-spacing: 2px;
  }

  .book-button {
    min-width: 190px;
    padding: 0 16px;
  }

  .header-actions {
    gap: 14px;
  }

  .hero-copy {
    padding-left: 32px;
  }

  .gallery-section,
  .testimonials-wrap,
  .site-footer {
    padding-right: 24px;
    padding-left: 24px;
  }

  .attribute-strip,
  .booking-band {
    margin-right: 24px;
    margin-left: 24px;
  }

  .booking-band {
    grid-template-columns: 144px 1fr auto;
  }

  .booking-band img {
    width: 144px;
  }

  .callout {
    grid-column: 2 / 4;
    padding: 0 0 24px;
    border-left: 0;
  }

  .site-footer {
    grid-template-columns: 190px 1fr;
  }

  .newsletter {
    grid-column: 1 / -1;
    padding: 32px 0 0;
    border-top: 1px solid rgba(203, 162, 74, 0.24);
    border-left: 0;
  }
}

@media (max-width: 980px) {
  .announcement {
    gap: 12px;
    min-height: 44px;
    padding: 8px 16px;
    flex-wrap: wrap;
    font-size: 13px;
  }

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

  .hamburger {
    display: grid;
    grid-column: 3;
    grid-row: 1;
    width: 44px;
    height: 44px;
    margin-left: 4px;
    place-items: center;
    border: 1px solid rgba(203, 162, 74, 0.28);
    border-radius: 6px;
  }

  .hamburger span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--dark-crimson);
  }

  .hamburger span + span {
    margin-top: -10px;
  }

  .hamburger span:last-child {
    margin-top: -20px;
  }

  .main-nav {
    display: none;
    grid-column: 1 / -1;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px 18px;
    padding-top: 6px;
    white-space: normal;
  }

  .nav-toggle:checked ~ .main-nav {
    display: flex;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
    justify-content: end;
  }

  .header-actions .icon-link {
    display: none;
  }

  .book-button {
    min-width: 88px;
    padding: 0 18px;
  }

  .book-full,
  .book-button svg {
    display: none;
  }

  .book-short {
    display: inline;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-copy {
    padding: 34px 24px 28px;
  }

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

  .hero-text {
    max-width: 620px;
  }

  .hero-media {
    min-height: 420px;
  }

  .hero-media::before {
    inset: -1px 0 auto;
    width: 100%;
    height: 88px;
    background: linear-gradient(180deg, var(--white), rgba(255, 255, 255, 0));
  }

  .attribute-chips {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 620px;
    gap: 20px 0;
  }

  .attribute-chips div:nth-child(3) {
    border-left: 0;
    padding-left: 0;
  }

  .filter-row {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .sort-button {
    width: max-content;
  }

  .photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 168px;
  }

  .photo-card.wide {
    grid-column: span 2;
  }

  .quote-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .quote-grid article,
  .quote-grid article:first-child {
    min-height: 0;
    padding: 0 0 24px;
    border-left: 0;
    border-bottom: 1px solid rgba(203, 162, 74, 0.24);
  }

  .quote-grid article:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .quote-grid p {
    min-height: 0;
  }

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

  .attribute-strip div {
    border-left: 0;
    padding: 0 16px;
  }

  .booking-band {
    grid-template-columns: 128px 1fr;
    padding-right: 24px;
  }

  .light-btn,
  .callout {
    grid-column: 2;
  }
}

@media (max-width: 640px) {
  .announcement {
    justify-content: flex-start;
    font-size: 12px;
  }

  .announce-item {
    white-space: normal;
  }

  .site-header {
    width: 100vw;
    max-width: 100vw;
    gap: 10px;
    padding: 14px 16px;
  }

  main {
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .brand {
    width: 112px;
  }

  .brand-main {
    font-size: 46px;
  }

  .brand-rule {
    width: 88px;
  }

  .brand-sub {
    font-size: 10px;
  }

  .hero-copy {
    padding: 30px 16px 24px;
  }

  .hero h1 {
    font-size: 47px;
  }

  .hero-text {
    font-size: 16px;
  }

  .attribute-chips {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 24px;
  }

  .attribute-chips div,
  .attribute-chips div:nth-child(3) {
    display: grid;
    grid-template-columns: 42px 1fr;
    min-height: 0;
    padding: 14px 0;
    border-top: 1px solid rgba(203, 162, 74, 0.22);
    border-left: 0;
    column-gap: 12px;
  }

  .attribute-chips span {
    grid-row: 1 / 3;
    margin-bottom: 0;
  }

  .hero-actions {
    gap: 12px;
  }

  .primary-btn,
  .outline-btn,
  .light-btn,
  .more-link {
    width: 100%;
    min-width: 0;
    padding: 0 14px;
    text-align: center;
    white-space: normal;
  }

  .hero-media {
    min-height: 360px;
  }

  .hero-stat {
    right: 16px;
    bottom: 18px;
  }

  .gallery-section,
  .testimonials-wrap {
    padding-right: 16px;
    padding-left: 16px;
  }

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

  .filter-tabs a,
  .sort-button {
    width: 100%;
    min-width: 0;
    padding: 0 12px;
  }

  .photo-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 252px;
  }

  .photo-card.wide,
  .photo-card.tall,
  .photo-card.short {
    grid-column: auto;
    grid-row: span 1;
  }

  .testimonials {
    padding: 18px 16px 22px;
  }

  .attribute-strip,
  .booking-band {
    margin-right: 16px;
    margin-left: 16px;
  }

  .attribute-strip {
    grid-template-columns: 1fr;
    padding: 12px 18px;
  }

  .attribute-strip div {
    padding: 14px 0;
    border-top: 1px solid rgba(203, 162, 74, 0.24);
  }

  .attribute-strip div:first-child {
    border-top: 0;
  }

  .booking-band {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0 20px 24px;
  }

  .booking-band img {
    width: calc(100% + 40px);
    height: 96px;
    margin: 0 -20px;
  }

  .booking-band h2 {
    font-size: 30px;
  }

  .light-btn,
  .callout {
    grid-column: auto;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 16px 24px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .newsletter {
    min-height: 256px;
  }

  .legal {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal nav {
    flex-wrap: wrap;
    gap: 16px;
  }
}

@media (max-width: 375px) {
  .site-header {
    grid-template-columns: 112px 1fr 44px;
  }

  .book-button {
    min-width: 72px;
    height: 42px;
    padding: 0 12px;
  }

  .hamburger {
    width: 42px;
    height: 42px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-media {
    min-height: 330px;
  }
}
