:root {
  --ink: #17211f;
  --muted: #66736f;
  --paper: #fbfaf6;
  --mist: #eef4f1;
  --terracotta: #b85f45;
  --teal: #0f6f73;
  --gold: #c8a461;
  --deep: #0d2d2e;
  --line: rgba(23, 33, 31, 0.12);
  --shadow: 0 24px 70px rgba(15, 37, 36, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(1120px, calc(100% - 32px));
  min-height: 62px;
  padding: 10px 12px;
  color: #fff;
  background: rgba(13, 45, 46, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(251, 250, 246, 0.92);
  box-shadow: 0 14px 44px rgba(13, 45, 46, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #fff;
  background: var(--terracotta);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  color: currentColor;
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  opacity: 0.86;
}

.header-action,
.quick-booking button,
.contact-form button,
.button.primary {
  color: #fff;
  background: var(--terracotta);
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 140px max(24px, calc((100vw - 1120px) / 2)) 34px;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 25, 26, 0.82), rgba(7, 25, 26, 0.38) 45%, rgba(7, 25, 26, 0.12)),
    linear-gradient(0deg, rgba(7, 25, 26, 0.72), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(660px, 100%);
  color: #fff;
  padding-bottom: 128px;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd7aa;
}

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

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(64px, 10vw, 132px);
  line-height: 0.9;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
}

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

.hero-copy {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  font-weight: 800;
}

.button.secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.1);
}

.quick-booking {
  position: absolute;
  z-index: 3;
  right: max(24px, calc((100vw - 1120px) / 2));
  bottom: 34px;
  left: max(24px, calc((100vw - 1120px) / 2));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.38);
  box-shadow: var(--shadow);
}

.quick-booking label {
  display: grid;
  gap: 8px;
  min-height: 86px;
  padding: 18px;
  background: rgba(251, 250, 246, 0.96);
}

.quick-booking span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-booking input,
.quick-booking select {
  width: 100%;
  min-width: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
  font-weight: 800;
}

.quick-booking button {
  border: 0;
  min-height: 86px;
  padding: 18px;
  font-weight: 900;
  cursor: pointer;
}

.intro-section,
.split-section,
.experience-section,
.dining-section,
.contact-section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.intro-section {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 70px;
  padding: 96px 0 76px;
  align-items: end;
}

.intro-section > p,
.dining-copy p,
.contact-section p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-band div {
  display: grid;
  gap: 8px;
  min-height: 148px;
  padding: 28px;
  align-content: center;
  border-right: 1px solid var(--line);
}

.feature-band div:last-child {
  border-right: 0;
}

.feature-band strong {
  color: var(--teal);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 44px;
  line-height: 1;
}

.feature-band span {
  color: var(--muted);
  font-weight: 700;
}

.split-section,
.experience-section,
.dining-section,
.contact-section {
  padding: 96px 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}

.section-heading h2 {
  max-width: 680px;
}

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

.room-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(23, 33, 31, 0.08);
}

.room-visual {
  min-height: 250px;
  background-size: cover;
  background-position: center;
}

.room-visual.sea {
  background:
    linear-gradient(135deg, rgba(15, 111, 115, 0.2), rgba(184, 95, 69, 0.08)),
    url("assets/aktan-hotel-hero.png") center/cover;
}

.room-visual.garden {
  background:
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.42), transparent 30%),
    linear-gradient(135deg, #335b4d, #d9c58f);
}

.room-visual.loft {
  background:
    linear-gradient(135deg, rgba(13, 45, 46, 0.92), rgba(200, 164, 97, 0.42)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.12) 0 1px, transparent 1px 30px);
}

.room-body {
  padding: 24px;
}

.room-body span,
.experience-list span,
.menu-panel span {
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.room-body p,
.experience-list p {
  color: var(--muted);
  line-height: 1.7;
}

.experience-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.experience-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.experience-list article {
  min-height: 260px;
  padding: 32px;
  background: var(--paper);
}

.dining-section {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 72px;
  align-items: center;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--teal);
  font-weight: 900;
  border-bottom: 2px solid currentColor;
}

.menu-panel {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow);
}

.menu-panel div {
  display: grid;
  gap: 10px;
  padding: 30px;
  background: #fff;
}

.menu-panel strong {
  font-size: 24px;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 72px;
  align-items: start;
  color: #fff;
  background: var(--deep);
  width: 100%;
  padding-right: max(24px, calc((100vw - 1120px) / 2));
  padding-left: max(24px, calc((100vw - 1120px) / 2));
}

.contact-section .section-label {
  color: #ffd7aa;
}

.contact-section p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 15px 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  outline: 0;
}

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

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.64);
}

.contact-form button {
  min-height: 54px;
  border: 0;
  font-weight: 900;
  cursor: pointer;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 112px;
  padding: 28px max(24px, calc((100vw - 1120px) / 2));
  background: #0b2324;
  color: rgba(255, 255, 255, 0.76);
}

.site-footer span {
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  font-weight: 700;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #ffd7aa;
  font-weight: 900;
}

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

  .nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 132px;
  }

  .hero-content {
    padding-bottom: 300px;
  }

  .quick-booking,
  .intro-section,
  .dining-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .quick-booking {
    right: 20px;
    left: 20px;
  }

  .feature-band,
  .room-grid,
  .experience-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .dining-section,
  .contact-section {
    gap: 34px;
  }
}

@media (max-width: 620px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .brand span:last-child {
    max-width: 112px;
    line-height: 1.05;
  }

  .header-action {
    padding: 0 13px;
  }

  .hero {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero-content {
    padding-bottom: 380px;
  }

  h1 {
    font-size: clamp(58px, 20vw, 86px);
  }

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

  .quick-booking,
  .feature-band,
  .room-grid,
  .experience-list {
    grid-template-columns: 1fr;
  }

  .quick-booking {
    bottom: 18px;
  }

  .quick-booking label,
  .quick-booking button {
    min-height: 70px;
    padding: 14px;
  }

  .intro-section,
  .split-section,
  .experience-section,
  .dining-section,
  .contact-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .section-heading {
    display: block;
  }

  .feature-band div {
    min-height: 112px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .site-footer {
    display: grid;
    align-items: start;
  }
}
