:root {
  --navy: #0d2d3f;
  --navy-light: #173f55;
  --gold: #c49a5a;
  --gold-dark: #795525;
  --sand: #e8dcc8;
  --cream: #f8f6f1;
  --white: #ffffff;
  --ink: #1d2529;
  --muted: #667078;
  --line: #dfe2df;
  --background: #ffffff;
  --foreground: #1d2529;
  --card: #ffffff;
  --card-foreground: #1d2529;
  --popover: #ffffff;
  --popover-foreground: #1d2529;
  --primary: #0d2d3f;
  --primary-foreground: #ffffff;
  --secondary: #e8dcc8;
  --secondary-foreground: #0d2d3f;
  --muted-foreground: #667078;
  --accent: #c49a5a;
  --accent-foreground: #0d2d3f;
  --destructive: #b42318;
  --border: #dfe2df;
  --input: #c9cfcc;
  --ring: #c49a5a;
  --radius: 0.25rem;
}

* {
  box-sizing: border-box;
}

.svg-symbols {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
}

body,
button,
input,
select,
textarea {
  -webkit-font-smoothing: antialiased;
}

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

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.1;
}

h1 {
  font-size: clamp(3.5rem, 7vw, 6.8rem);
  letter-spacing: -0.055em;
}

h2 {
  font-size: clamp(2.5rem, 4vw, 4.2rem);
  letter-spacing: -0.04em;
}

h3 {
  font-size: 1.55rem;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding-block: clamp(5rem, 9vw, 8rem);
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--gold-dark);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #f2d39d;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: var(--white);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.8rem 1.5rem;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  transform: translateY(-2px);
}

.button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.button-small {
  min-height: 44px;
  padding-inline: 1.2rem;
  color: var(--white) !important;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 30px rgba(13, 45, 63, 0.08);
  padding: 0.75rem max(24px, calc((100vw - 1180px) / 2));
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--navy);
  line-height: 1;
}

.brand-mark {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.9rem;
}

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

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.13rem;
  letter-spacing: 0.03em;
}

.brand small {
  margin-top: 0.35rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.45rem;
}

.nav-links > a:not(.button) {
  position: relative;
  color: #33464f;
  font-size: 0.83rem;
  font-weight: 600;
}

.nav-links > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.nav-links > a:not(.button):hover::after {
  transform: scaleX(1);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-icon {
  position: relative;
}

.menu-icon::before {
  position: absolute;
  top: -7px;
}

.menu-icon::after {
  position: absolute;
  top: 7px;
}

.menu-button.is-open .menu-icon {
  background: transparent;
}

.menu-button.is-open .menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-button.is-open .menu-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: 94svh;
  align-items: center;
  overflow: hidden;
  padding-top: 84px;
}

.hero-image,
.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 27, 40, 0.84) 0%, rgba(4, 27, 40, 0.56) 44%, rgba(4, 27, 40, 0.08) 76%),
    linear-gradient(0deg, rgba(4, 27, 40, 0.5) 0%, transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-block: 7rem 5rem;
}

.hero h1 {
  max-width: 800px;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.hero-copy {
  max-width: 570px;
  margin-bottom: 2.2rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.button-gold {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--navy);
}

.button-gold:hover {
  border-color: #d3ae73;
  background: #d3ae73;
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.7);
  background: transparent;
}

.button-outline-light:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--navy);
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 2.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-line {
  display: block;
  width: 58px;
  height: 1px;
  background: var(--gold);
}

.quick-strip {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

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

.quick-grid > div {
  display: flex;
  min-height: 108px;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  border-right: 1px solid var(--line);
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 700;
}

.quick-grid > div:first-child {
  border-left: 1px solid var(--line);
}

.quick-grid svg {
  width: 20px;
  color: var(--gold-dark);
}

.about-grid {
  display: grid;
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  grid-template-columns: 1.05fr 0.95fr;
}

.image-composition {
  position: relative;
  padding: 0 2rem 2rem 0;
}

.image-composition::after {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  width: 75%;
  height: 72%;
  background: var(--sand);
  content: "";
}

.image-composition img {
  width: 100%;
  min-height: 580px;
  object-fit: cover;
}

.image-note {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 180px;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  line-height: 1.5;
  padding: 1.3rem;
}

.image-note strong {
  display: block;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.5rem;
  font-weight: 500;
}

.section-copy h2,
.section-heading h2,
.booking-copy h2,
.contact-section h2 {
  margin-bottom: 1.5rem;
}

.section-copy > p:not(.eyebrow),
.section-heading > p:not(.eyebrow) {
  color: var(--muted);
}

.section-copy .lead {
  color: #34464e;
  font-size: 1.12rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.text-link svg {
  width: 18px;
  transition: transform 180ms ease;
}

.text-link:hover svg {
  transform: translateX(5px);
}

.rooms-section,
.gallery-section {
  background: var(--cream);
}

.centered-heading {
  max-width: 720px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

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

.room-card {
  background: var(--white);
  box-shadow: 0 18px 45px rgba(13, 45, 63, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.room-card:hover {
  box-shadow: 0 24px 60px rgba(13, 45, 63, 0.13);
  transform: translateY(-7px);
}

.room-image-wrap {
  position: relative;
  height: 290px;
  overflow: hidden;
}

.room-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.room-card:hover .room-image-wrap img {
  transform: scale(1.04);
}

.room-price {
  position: absolute;
  right: 0;
  bottom: 0;
  background: var(--navy);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.75rem 0.9rem;
}

.room-body {
  padding: 1.7rem;
}

.room-details {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.room-details svg {
  width: 17px;
}

.room-body h3 {
  margin-bottom: 0.75rem;
}

.room-body > p:not(.room-details) {
  min-height: 82px;
  color: var(--muted);
  font-size: 0.92rem;
}

.demo-note {
  margin: 2rem auto 0;
  color: #5f676c;
  font-size: 0.76rem;
  text-align: center;
}

.amenities-layout {
  display: grid;
  align-items: start;
  gap: 5rem;
  grid-template-columns: 0.8fr 1.2fr;
}

.amenities-intro {
  position: sticky;
  top: 120px;
}

.amenities-grid {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(2, 1fr);
}

.amenity {
  display: flex;
  min-height: 185px;
  align-items: flex-start;
  gap: 1.1rem;
  border-bottom: 1px solid var(--line);
  padding: 1.7rem;
}

.amenity:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.icon-circle {
  display: inline-grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  border: 1px solid var(--sand);
  border-radius: 50%;
  color: var(--gold-dark);
}

.icon-circle svg {
  width: 21px;
}

.amenity h3 {
  margin: 0.3rem 0 0.55rem;
  font-size: 1.2rem;
}

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

.feature-banner {
  position: relative;
  display: grid;
  min-height: 550px;
  place-items: center;
  overflow: hidden;
}

.feature-banner img,
.feature-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
}

.feature-banner img {
  object-fit: cover;
}

.feature-overlay {
  background: rgba(4, 27, 40, 0.64);
}

.feature-copy {
  position: relative;
  z-index: 1;
  max-width: 900px;
  color: var(--white);
  padding: 2rem;
  text-align: center;
}

.feature-copy h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(3rem, 6vw, 5.6rem);
}

.destinations-section {
  background: var(--navy);
}

.destinations-section h2,
.destinations-section h3 {
  color: var(--white);
}

.destinations-section .eyebrow {
  color: #f2d39d;
}

.split-heading {
  display: grid;
  align-items: end;
  gap: 4rem;
  grid-template-columns: 1.2fr 0.8fr;
  margin-bottom: 3.5rem;
}

.split-heading h2 {
  margin-bottom: 0;
}

.split-heading > p {
  color: rgba(255, 255, 255, 0.64) !important;
}

.destination-grid {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  grid-template-columns: repeat(4, 1fr);
}

.destination-card {
  min-height: 250px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  padding: 2rem 1.5rem;
  transition: background 180ms ease;
}

.destination-card:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.destination-card:hover {
  background: rgba(255, 255, 255, 0.06);
}

.destination-card > span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.8rem;
}

.destination-card h3 {
  margin: 3rem 0 0.6rem;
  font-size: 1.3rem;
}

.destination-card p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.86rem;
}

.gallery-grid {
  display: grid;
  min-height: 650px;
  gap: 1rem;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: repeat(2, 1fr);
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
}

.gallery-grid .gallery-large {
  grid-row: 1 / 3;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.035);
}

.testimonials-section {
  background: var(--white);
}

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

.testimonials-grid blockquote {
  margin: 0;
  border-top: 3px solid var(--gold);
  background: var(--cream);
  padding: 2rem;
}

.stars {
  display: flex;
  gap: 0.18rem;
  margin-bottom: 1.4rem;
}

.stars svg {
  width: 15px;
  height: 15px;
  fill: var(--gold);
  color: var(--gold);
}

.testimonials-grid blockquote > p {
  color: #3d484d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  line-height: 1.65;
}

.testimonials-grid footer strong,
.testimonials-grid footer span {
  display: block;
}

.testimonials-grid footer strong {
  color: var(--navy);
  font-size: 0.87rem;
}

.testimonials-grid footer span {
  color: var(--muted);
  font-size: 0.75rem;
}

.booking-section {
  background: var(--sand);
}

.booking-grid {
  display: grid;
  align-items: start;
  gap: 5rem;
  grid-template-columns: 0.78fr 1.22fr;
}

.booking-copy > p:not(.eyebrow) {
  color: #4e5b61;
}

.booking-copy ul {
  display: grid;
  gap: 0.8rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.booking-copy li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 650;
}

.booking-copy li svg {
  width: 19px;
  color: var(--gold-dark);
}

.booking-form {
  background: var(--white);
  box-shadow: 0 22px 60px rgba(13, 45, 63, 0.13);
  padding: clamp(1.5rem, 4vw, 3rem);
}

.form-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(2, 1fr);
}

.booking-form label {
  display: grid;
  gap: 0.4rem;
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #ccd2cf;
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  padding: 0.7rem 0.8rem;
}

.booking-form textarea {
  min-height: 110px;
  resize: vertical;
}

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

.form-button {
  margin-top: 1.4rem;
}

.form-button svg {
  width: 18px;
}

.form-success {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin: 1.2rem 0 0;
  border-left: 3px solid #438a69;
  background: #eef8f2;
  color: #245c42;
  font-size: 0.82rem;
  padding: 0.8rem 1rem;
}

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

.form-success svg {
  width: 18px;
  flex: 0 0 18px;
  margin-top: 0.25rem;
}


.form-error {
  margin: 1.2rem 0 0;
  border-left: 3px solid #b54747;
  background: #fff0f0;
  color: #842d2d;
  font-size: 0.82rem;
  padding: 0.8rem 1rem;
}

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

.form-button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.form-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.contact-section {
  background: var(--navy-light);
  color: var(--white);
}

.contact-grid {
  display: grid;
  align-items: center;
  gap: 5rem;
  grid-template-columns: repeat(2, 1fr);
}

.contact-section h2 {
  color: var(--white);
}

.contact-intro {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.67);
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-list p {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0;
}

.contact-list svg {
  width: 21px;
  color: var(--gold);
}

.contact-list strong,
.contact-list span {
  display: block;
}

.contact-list strong {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.67rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-card {
  position: relative;
  display: grid;
  min-height: 400px;
  place-content: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(30deg, transparent 49%, rgba(255, 255, 255, 0.08) 50%, transparent 51%) 0 0 / 70px 70px,
    linear-gradient(150deg, transparent 49%, rgba(255, 255, 255, 0.06) 50%, transparent 51%) 0 0 / 70px 70px,
    #12384d;
  text-align: center;
}

.map-card svg {
  position: relative;
  z-index: 2;
  width: 42px;
  height: 42px;
  margin: 0 auto 0.8rem;
  fill: var(--gold);
  color: var(--gold);
}

.map-card strong,
.map-card small {
  position: relative;
  z-index: 2;
  display: block;
}

.map-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
}

.map-card small {
  color: rgba(255, 255, 255, 0.65);
}

.map-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(196, 154, 90, 0.35);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.map-ring-one {
  width: 220px;
  height: 220px;
}

.map-ring-two {
  width: 330px;
  height: 330px;
}

.footer {
  background: #071f2c;
  color: rgba(255, 255, 255, 0.64);
  padding-top: 4.5rem;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1.7fr 0.8fr 1.1fr 0.6fr;
  padding-bottom: 3.5rem;
}

.brand-light {
  color: var(--white);
}

.brand-light .brand-mark {
  color: var(--gold);
}

.footer-brand > p {
  max-width: 300px;
  margin-top: 1.4rem;
  font-size: 0.9rem;
}

.footer-grid h3 {
  margin-bottom: 1.1rem;
  color: var(--white);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) > a,
.footer-grid > div:not(.footer-brand) > p {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.84rem;
}

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

.social-links {
  display: flex;
  gap: 0.6rem;
}

.social-links a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.social-links svg {
  width: 18px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.73rem;
  padding-block: 1.5rem;
}

.footer-bottom p {
  margin: 0;
}















@media (max-width: 1020px) {
  .menu-button {
    display: grid;
  }

  .nav-links {
    position: absolute;
    top: 84px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    border-top: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 20px 35px rgba(13, 45, 63, 0.14);
    gap: 0;
    padding: 1rem 24px 1.4rem;
  }

  .nav-links.nav-open {
    display: grid;
  }

  .nav-links > a:not(.button) {
    border-bottom: 1px solid var(--line);
    padding: 0.8rem 0;
  }

  .nav-links .button {
    margin-top: 1rem;
  }

  .about-grid,
  .amenities-layout,
  .booking-grid,
  .contact-grid {
    gap: 3.5rem;
  }

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

  .rooms-grid > :last-child,
  .testimonials-grid > :last-child {
    grid-column: 1 / -1;
    width: calc(50% - 0.7rem);
  }

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

  .destination-card:nth-child(2) {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }

  .destination-card:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

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

@media (max-width: 760px) {
  .container {
    width: min(100% - 32px, 1180px);
  }

  .section {
    padding-block: 4.5rem;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  h2 {
    font-size: clamp(2.3rem, 11vw, 3.5rem);
  }

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

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

  .hero {
    min-height: 850px;
  }

  .hero-image {
    object-position: 61% center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(4, 27, 40, 0.88), rgba(4, 27, 40, 0.38)), linear-gradient(0deg, rgba(4, 27, 40, 0.7), transparent 55%);
  }

  .hero-content {
    padding-block: 7rem 9rem;
  }

  .hero-actions {
    display: grid;
    max-width: 340px;
  }

  .scroll-cue {
    right: 20px;
  }

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

  .quick-grid > div,
  .quick-grid > div:first-child {
    min-height: 92px;
    border: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-grid > div:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .about-grid,
  .amenities-layout,
  .booking-grid,
  .contact-grid,
  .split-heading {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .amenities-layout,
  .booking-grid,
  .contact-grid,
  .split-heading {
    gap: 2.5rem;
  }

  .image-composition {
    padding: 0 1.2rem 1.2rem 0;
  }

  .image-composition img {
    min-height: 430px;
  }

  .rooms-grid,
  .testimonials-grid,
  .amenities-grid,
  .destination-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .rooms-grid > :last-child,
  .testimonials-grid > :last-child {
    grid-column: auto;
    width: auto;
  }

  .amenities-intro {
    position: static;
  }

  .amenity,
  .amenity:nth-child(odd) {
    min-height: 0;
    border-right: 0;
    padding-inline: 0;
  }

  .feature-banner {
    min-height: 460px;
  }

  .split-heading {
    align-items: start;
  }

  .destination-card,
  .destination-card:first-child,
  .destination-card:nth-child(2),
  .destination-card:nth-child(n + 3) {
    min-height: 210px;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .gallery-grid {
    min-height: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 420px 220px;
  }

  .gallery-grid .gallery-large {
    grid-column: 1 / -1;
    grid-row: auto;
  }

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

  .full-field {
    grid-column: auto;
  }

  .map-card {
    min-height: 330px;
  }

  .footer-grid {
    gap: 2rem;
  }

  .footer-bottom {
    display: grid;
    gap: 0.4rem;
  }
}

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

  .quick-grid > div:nth-child(odd) {
    border-right: 0;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 280px);
  }

  .gallery-grid .gallery-large {
    grid-column: auto;
  }

  .image-note {
    max-width: 150px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.error-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  background: var(--cream);
  padding: 2rem;
}

.error-card {
  width: min(620px, 100%);
  border-top: 4px solid var(--gold);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(13, 45, 63, 0.13);
  padding: clamp(2rem, 7vw, 4.5rem);
  text-align: center;
}

.error-card .brand {
  justify-content: center;
  margin-bottom: 3rem;
}

.error-number {
  margin-bottom: 0.5rem;
  color: var(--gold-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  letter-spacing: 0.2em;
}

.error-card h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.5rem, 8vw, 4.5rem);
}

.error-card > p:not(.error-number) {
  color: var(--muted);
}

.error-card .button {
  margin-top: 1.5rem;
}
