:root {
  --bg: #f7f1e6;
  --paper: #ffffff;
  --paper-soft: #fff8eb;

  --dark: #1f2a32;
  --muted: #68737d;
  --line: rgba(31, 42, 50, 0.12);

  --ocean: #0b5c75;
  --deep-ocean: #073846;
  --sand: #f3c66b;
  --sunset: #d86f3f;
  --eucalyptus: #6f8f72;
  --cream: #fff3d6;

  --mix: linear-gradient(135deg, var(--ocean), var(--eucalyptus), var(--sand));
  --warm-mix: linear-gradient(135deg, var(--sunset), var(--sand));

  --shadow: 0 28px 75px rgba(7, 56, 70, 0.16);
  --shadow2: 0 16px 40px rgba(31, 42, 50, 0.1);

  --radius: 30px;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--dark);
  background:
    radial-gradient(circle at top left, rgba(243, 198, 107, 0.35), transparent 35%),
    radial-gradient(circle at top right, rgba(11, 92, 117, 0.18), transparent 34%),
    linear-gradient(180deg, #fffaf0 0%, var(--bg) 55%, #eef6f3 100%);
  line-height: 1.7;
}

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

p {
  margin: 0;
}

.container {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

/* Header */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 235, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--deep-ocean);
}

.logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 30% 25%, #fff6d9 0 18%, transparent 19%),
    linear-gradient(135deg, var(--sunset), var(--sand), var(--ocean));
  box-shadow: 0 12px 30px rgba(216, 111, 63, 0.25);
  position: relative;
}

.logo-icon::after {
  content: "";
  position: absolute;
  width: 23px;
  height: 12px;
  border-radius: 50% 50% 0 0;
  background: rgba(255, 255, 255, 0.85);
  right: 7px;
  bottom: 10px;
}

.logo span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  font-size: 1.05rem;
}

.logo small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

nav a {
  padding: 10px 15px;
  border-radius: 999px;
  color: var(--dark);
  font-weight: 800;
  font-size: 0.92rem;
  transition: 0.25s ease;
}

nav a:hover {
  color: var(--ocean);
  background: rgba(11, 92, 117, 0.08);
}

.nav-btn {
  color: #fff;
  background: var(--deep-ocean);
  box-shadow: 0 12px 28px rgba(7, 56, 70, 0.22);
}

.nav-btn:hover {
  color: #fff;
  background: var(--sunset);
}

/* Hero */

.hero {
  padding: 82px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.35fr;
  gap: 28px;
  align-items: stretch;
}

.hero-card,
.hero-main,
.panel,
.card,
.hotel-card {
  border: 1px solid var(--line);
  box-shadow: var(--shadow2);
}

.hero-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 248, 235, 0.95)),
    radial-gradient(circle at top right, rgba(243, 198, 107, 0.45), transparent 42%);
  border-radius: var(--radius);
  padding: 34px;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(111, 143, 114, 0.15);
  right: -60px;
  bottom: -60px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ocean);
  background: rgba(11, 92, 117, 0.08);
  border: 1px solid rgba(11, 92, 117, 0.14);
  padding: 8px 13px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sunset);
}

.hero-card h3 {
  margin: 22px 0 14px;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1.05;
  letter-spacing: -0.06em;
  color: var(--deep-ocean);
}

.hero-card p {
  color: var(--muted);
}

.mini-list {
  margin-top: 26px;
  display: grid;
  gap: 14px;
}

.mini-list div {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
}

.mini-list strong {
  display: block;
  color: var(--deep-ocean);
  margin-bottom: 5px;
  font-size: 0.98rem;
}

.mini-list span {
  display: block;
  color: var(--muted);
  font-size: 0.93rem;
}

.hero-main {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  padding: clamp(36px, 6vw, 64px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 56, 70, 0.95), rgba(11, 92, 117, 0.82)),
    radial-gradient(circle at 80% 20%, rgba(243, 198, 107, 0.45), transparent 35%);
  box-shadow: var(--shadow);
}

.hero-main::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  pointer-events: none;
}

.hero-main::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(243, 198, 107, 0.16);
  right: -70px;
  bottom: -80px;
}

.hero-main .kicker {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.hero-main h1 {
  position: relative;
  margin: 22px 0 20px;
  max-width: 850px;
  font-size: clamp(2.7rem, 6vw, 5.7rem);
  line-height: 0.92;
  letter-spacing: -0.09em;
  text-transform: capitalize;
}

.hero-main p {
  position: relative;
  max-width: 780px;
  color: rgba(255, 255, 255, 0.82);
  margin-top: 17px;
  font-size: 1.03rem;
}

/* Sections */

section {
  padding: 66px 0;
}

.two-column {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 28px;
  align-items: start;
}

.panel {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  padding: clamp(28px, 4vw, 44px);
}

.panel p {
  color: var(--muted);
  margin-top: 17px;
}

.section-title {
  margin-bottom: 24px;
}

.section-title h2 {
  margin: 0;
  color: var(--deep-ocean);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.07em;
}

.section-title p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 1.02rem;
}

.section-title.center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 34px;
}

.soft-panel {
  background:
    linear-gradient(180deg, var(--cream), #ffffff),
    radial-gradient(circle at top right, rgba(216, 111, 63, 0.15), transparent 38%);
  position: sticky;
  top: 110px;
}

.soft-panel h2 {
  margin: 18px 0 20px;
  color: var(--deep-ocean);
  font-size: 2rem;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.info-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 20px;
  margin-top: 16px;
  box-shadow: 0 12px 28px rgba(31, 42, 50, 0.06);
}

.info-box h3 {
  margin: 0 0 8px;
  color: var(--ocean);
  font-size: 1.05rem;
}

.info-box p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Info Cards */

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

.card {
  min-height: 260px;
  background:
    linear-gradient(180deg, #fff, var(--paper-soft));
  border-radius: 28px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: 0.28s ease;
}

.card::before {
  content: "";
  position: absolute;
  width: 84px;
  height: 8px;
  border-radius: 999px;
  background: var(--warm-mix);
  top: 0;
  left: 30px;
}

.card::after {
  content: "";
  position: absolute;
  width: 125px;
  height: 125px;
  border-radius: 50%;
  background: rgba(11, 92, 117, 0.07);
  right: -45px;
  bottom: -45px;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 12px 0 12px;
  color: var(--deep-ocean);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.card p {
  color: var(--muted);
}

/* Hotel Experience */

.hotel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.hotel-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 248, 235, 0.95));
  border-radius: 28px;
  padding: 28px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  transition: 0.28s ease;
  position: relative;
  overflow: hidden;
}

.hotel-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 70px;
  height: 70px;
  border-radius: 24px;
  background: rgba(111, 143, 114, 0.14);
  transform: rotate(10deg);
}

.hotel-card:hover {
  transform: translateY(-8px);
  border-color: rgba(11, 92, 117, 0.3);
  box-shadow: var(--shadow);
}

.hotel-card span {
  width: 54px;
  height: 54px;
  border-radius: 19px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  background: var(--mix);
  font-weight: 900;
  margin-bottom: 24px;
  box-shadow: 0 14px 28px rgba(11, 92, 117, 0.2);
}

.hotel-card h3 {
  margin: 0 0 12px;
  color: var(--deep-ocean);
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.hotel-card p {
  color: var(--muted);
  margin-top: auto;
}

/* Footer */

.footer {
  padding: 46px 0;
  background:
    linear-gradient(135deg, var(--deep-ocean), #092f3a);
  color: #fff;
}

.footer-box {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  text-align: center;
}

.footer p {
  color: rgba(255, 255, 255, 0.82);
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-links a,
.footer-links span {
  padding: 9px 14px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 800;
  font-size: 0.9rem;
}

.footer-links a:hover {
  background: var(--sand);
  color: var(--deep-ocean);
}

.small {
  font-size: 0.88rem;
}

/* Responsive */

@media (max-width: 980px) {
  .header-inner {
    flex-direction: column;
    justify-content: center;
    padding: 18px 0;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-grid,
  .two-column {
    grid-template-columns: 1fr;
  }

  .soft-panel {
    position: static;
  }

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

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

  .hero-main h1 {
    font-size: clamp(2.4rem, 12vw, 4.8rem);
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, var(--max));
  }

  .hero {
    padding: 44px 0 42px;
  }

  section {
    padding: 46px 0;
  }

  .hero-card,
  .hero-main,
  .panel {
    padding: 24px;
    border-radius: 24px;
  }

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

  nav a {
    font-size: 0.84rem;
    padding: 8px 11px;
  }

  .logo span:last-child {
    font-size: 0.95rem;
  }

  .logo-icon {
    width: 42px;
    height: 42px;
    border-radius: 15px;
  }

  .hero-main::before {
    inset: 14px;
  }

  .card,
  .hotel-card {
    border-radius: 22px;
    padding: 24px;
  }
}
/* ============================= */
/* Legal Pages: Terms / Privacy / Conditions */
/* ============================= */

.hero .container > .panel {
  max-width: 980px;
  margin: 0 auto;
}

.hero .panel {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 248, 235, 0.96)),
    radial-gradient(circle at top right, rgba(243, 198, 107, 0.25), transparent 38%),
    radial-gradient(circle at bottom left, rgba(11, 92, 117, 0.12), transparent 34%);
  border: 1px solid rgba(31, 42, 50, 0.12);
  box-shadow: 0 28px 75px rgba(7, 56, 70, 0.14);
}

.hero .panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 34px;
  width: 120px;
  height: 8px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(135deg, #d86f3f, #f3c66b, #6f8f72);
}

.hero .panel::after {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  right: -95px;
  bottom: -95px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(11, 92, 117, 0.13), rgba(11, 92, 117, 0.02));
  pointer-events: none;
}

.hero .panel .kicker,
.hero .panel .section-title,
.hero .panel p {
  position: relative;
  z-index: 2;
}

.hero .panel .section-title {
  margin-top: 22px;
  margin-bottom: 22px;
}

.hero .panel .section-title h2 {
  color: #073846;
  font-size: clamp(2.1rem, 5vw, 4rem);
  letter-spacing: -0.08em;
}

.hero .panel .section-title p {
  color: #6f8f72;
  font-weight: 800;
}

.hero .panel > p {
  max-width: 850px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(31, 42, 50, 0.1);
  color: #68737d;
  font-size: 1.02rem;
}

.hero .panel > p:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hero .panel > p::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 10px;
  border-radius: 50%;
  background: #d86f3f;
  vertical-align: middle;
}

/* Active-like footer/legal link hover improvement */

.footer-links a {
  transition: 0.25s ease;
}

.footer-links a[href="terms.html"]:hover,
.footer-links a[href="privacy.html"]:hover,
.footer-links a[href="conditions.html"]:hover {
  transform: translateY(-2px);
}

/* Legal page spacing */

main .hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
}

/* Better mobile style for legal pages */

@media (max-width: 620px) {
  main .hero {
    min-height: auto;
    align-items: flex-start;
  }

  .hero .container > .panel {
    max-width: 100%;
  }

  .hero .panel::before {
    left: 24px;
    width: 90px;
  }

  .hero .panel .section-title h2 {
    font-size: 2.2rem;
  }

  .hero .panel > p {
    font-size: 0.95rem;
    padding: 15px 0;
  }
}