* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #14202a;
  --night: #0c263d;
  --charcoal: #18334a;
  --ivory: #f3f7f9;
  --warm-white: #ffffff;
  --gold: #2d79a8;
  --sage: #4f7359;
  --wood: #c39a67;
  --line: rgba(45, 121, 168, 0.22);
}

body {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  line-height: 1.6;
  background: var(--warm-white);
}

.hero {
  min-height: 96vh;
  background:
    linear-gradient(90deg, rgba(10, 34, 54, 0.92) 0%, rgba(10, 34, 54, 0.72) 40%, rgba(10, 34, 54, 0.2) 78%),
    url("https://images.pixieset.com/258065711/5b5581f618f3f2a42fd2f13fcac0802c-xlarge.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 28px 8% 72px;
  display: flex;
  flex-direction: column;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 58px;
  padding: 0;
  text-decoration: none;
}

.logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.32));
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-content {
  max-width: 760px;
  margin-top: auto;
  padding-top: 120px;
}

.tagline,
.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

h1,
h2,
h3 {
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.98;
  margin: 18px 0 24px;
  max-width: 820px;
}

h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  margin: 10px 0 20px;
}

h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.intro {
  font-family: Arial, sans-serif;
  font-size: 19px;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.88);
}

.buttons {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 13px;
  border-radius: 4px;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.primary {
  background: var(--gold);
  color: white;
}

.secondary {
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: white;
}

.signature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--night);
  color: white;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.signature-strip div {
  padding: 30px 8%;
  border-right: 1px solid var(--line);
}

.signature-strip div:last-child {
  border-right: 0;
}

.signature-strip span {
  color: var(--gold);
  font-family: Arial, sans-serif;
  font-weight: 800;
  font-size: 13px;
}

.signature-strip p {
  margin-top: 6px;
  font-size: 22px;
}

.section {
  padding: 92px 8%;
}

.section > p,
.feature-copy > p,
.contact p {
  max-width: 760px;
  font-family: Arial, sans-serif;
  font-size: 18px;
  color: #5f554a;
}

.image-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 56px;
  align-items: center;
}

.image-feature.reverse {
  grid-template-columns: minmax(320px, 1.05fr) minmax(0, 0.95fr);
}

.feature-copy {
  max-width: 680px;
}

.feature-image {
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 28px 70px rgba(24, 18, 12, 0.18);
  background: #ddd;
}

.feature-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-section {
  background:
    linear-gradient(180deg, #ffffff 0%, var(--ivory) 100%);
}

.gallery-section > p:not(.eyebrow) {
  margin-bottom: 34px;
}

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

.photo-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid rgba(45, 121, 168, 0.14);
  box-shadow: 0 16px 34px rgba(18, 45, 67, 0.1);
}

.photo-gallery img:first-child,
.photo-gallery img:nth-child(2) {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: 4 / 3;
}

.room-showcase {
  background:
    linear-gradient(135deg, rgba(10, 34, 54, 0.04), rgba(199, 169, 95, 0.11)),
    #ffffff;
}

.room-showcase > p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.room-card {
  overflow: hidden;
  border: 1px solid rgba(20, 32, 42, 0.08);
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(18, 45, 67, 0.08);
}

.room-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.room-card div {
  padding: 24px;
}

.room-card h3 {
  color: var(--charcoal);
}

.room-card p {
  margin-top: 8px;
  font-family: Arial, sans-serif;
  color: #665c51;
  font-size: 16px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}

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

.card {
  padding: 28px;
  border: 1px solid rgba(20, 32, 42, 0.08);
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(18, 45, 67, 0.08);
}

.card h3 {
  color: var(--charcoal);
}

.card p,
.luxury-list {
  font-family: Arial, sans-serif;
  color: #665c51;
}

.dark {
  background: var(--night);
  color: white;
}

.dark .feature-copy > p,
.dark .luxury-list {
  color: rgba(255, 255, 255, 0.76);
}

.dark h2 {
  color: white;
}

.luxury-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
  padding-left: 20px;
  font-size: 17px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.9fr);
  gap: 56px;
  background: var(--ivory);
  align-items: start;
}

form {
  display: grid;
  gap: 14px;
}

input,
select,
textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid rgba(20, 32, 42, 0.14);
  border-radius: 4px;
  background: #ffffff;
  color: var(--ink);
  font-family: Arial, sans-serif;
  font-size: 16px;
}

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

button {
  background: var(--night);
  color: white;
  min-height: 52px;
  padding: 15px;
  border: none;
  border-radius: 4px;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

footer {
  padding: 30px 8%;
  background: #090806;
  color: rgba(255, 255, 255, 0.78);
  font-family: Arial, sans-serif;
  font-size: 14px;
}

@media (max-width: 900px) {
  .hero {
    min-height: 88vh;
    background:
      linear-gradient(rgba(10, 34, 54, 0.78), rgba(10, 34, 54, 0.78)),
      url("https://images.pixieset.com/258065711/5b5581f618f3f2a42fd2f13fcac0802c-xlarge.jpg");
    background-size: cover;
    background-position: center;
  }

  .nav-links {
    display: none;
  }

  .hero-content {
    padding-top: 84px;
  }

  .signature-strip,
  .image-feature,
  .image-feature.reverse,
  .contact,
  .room-gallery,
  .cards,
  .cards.compact {
    grid-template-columns: 1fr;
  }

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

  .photo-gallery img:first-child,
  .photo-gallery img:nth-child(2) {
    grid-column: span 2;
    grid-row: span 1;
  }

  .signature-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .signature-strip div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 70px 7%;
  }
}

@media (max-width: 560px) {
  .hero {
    padding: 22px 6% 54px;
  }

  .logo {
    width: 64px;
    height: 52px;
  }

  .intro {
    font-size: 17px;
  }

  .buttons {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .photo-gallery {
    grid-template-columns: 1fr;
  }

  .photo-gallery img:first-child,
  .photo-gallery img:nth-child(2) {
    grid-column: span 1;
  }
}
