:root {
  --primary: #1d4ed8;
  --bg: #fbf9f4;
  --ink: #16203a;
  --accent: #f59e0b;
  --paper: #ffffff;
  --line: #e2dfd6;
  --mute: #5a6680;
  --r: 16px;
  --display: 'Tinos', Georgia, serif;
  --body: 'Open Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--body); color: var(--ink); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
.wrap { width: min(1160px, 92vw); margin-inline: auto; }

h1, h2, h3 { font-family: var(--display); line-height: 1.1; }
h1 { font-size: clamp(36px, 5vw, 60px); font-weight: 700; }
h2 { font-size: clamp(26px, 3.2vw, 42px); font-weight: 700; }
h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
p { color: var(--mute); }
.lead { font-size: clamp(16px, 1.5vw, 19px); color: var(--mute); max-width: 44ch; }

.eyebrow {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--primary); margin-bottom: 16px;
}
.eyebrow--accent { color: var(--accent); }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 30;
  background: rgba(251, 249, 244, .92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__in { display: flex; align-items: center; gap: 20px; height: 66px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.brand__icon { font-size: 22px; }
.brand__name { font-family: var(--display); font-weight: 700; font-size: 19px; }
.nav__links { display: flex; gap: 24px; margin-left: auto; }
.nav__links a { text-decoration: none; color: var(--mute); font-size: 14.5px; font-weight: 500; transition: color .15s; }
.nav__links a:hover { color: var(--primary); }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: #fff; text-decoration: none;
  font-weight: 600; font-size: 15px; padding: 13px 24px;
  border-radius: 999px; transition: transform .15s, opacity .15s;
}
.btn:hover { transform: translateY(-2px); opacity: .9; }
.btn--sm { padding: 9px 18px; font-size: 13.5px; }
.btn--lg { padding: 17px 32px; font-size: 16px; }
.btn--outline {
  background: transparent; color: var(--primary);
  box-shadow: inset 0 0 0 2px var(--primary);
}
.btn--outline:hover { background: var(--primary); color: #fff; }
.btn--white { background: #fff; color: var(--primary); }
.btn--white:hover { background: #f0f6ff; }
.btn--ghost-white { background: transparent; color: #fff; box-shadow: inset 0 0 0 2px rgba(255,255,255,.6); }
.btn--ghost-white:hover { background: rgba(255,255,255,.12); }

/* HERO */
.hero { padding: clamp(48px, 7vw, 96px) 0; }
.hero__wrap {
  display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(32px, 5vw, 72px); align-items: center;
}
.hero__photo { position: relative; }
.hero__photo img {
  width: 100%; height: clamp(360px, 44vw, 540px);
  object-fit: cover; border-radius: calc(var(--r) * 2);
  box-shadow: 0 32px 64px -24px rgba(29, 78, 216, .25);
}
.hero__badge {
  position: absolute; left: 20px; bottom: 20px;
  background: var(--accent); color: #fff;
  font-weight: 700; font-size: 13px; padding: 8px 16px;
  border-radius: 999px; box-shadow: 0 4px 16px rgba(245, 158, 11, .4);
}
.hero__content { display: flex; flex-direction: column; gap: 20px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__stats { display: flex; gap: 28px; padding-top: 24px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.stat strong { display: block; font-family: var(--display); font-size: 26px; color: var(--primary); font-weight: 700; }
.stat span { font-size: 13px; color: var(--mute); }

/* SECTION */
.section { padding: clamp(52px, 6vw, 88px) 0; }
.section--light { background: var(--paper); }
.section__head { max-width: 52ch; margin-bottom: 40px; }
.section__head p { margin-top: 10px; }

/* CARDS */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  padding: 26px; display: flex; flex-direction: column; min-height: 240px;
}
.card__icon { font-size: 28px; margin-bottom: 14px; }
.card p { font-size: 14.5px; flex: 1; margin-top: 6px; }
.card__price {
  margin-top: 16px; font-family: var(--display); font-weight: 700;
  font-size: 16px; color: var(--primary);
}

/* FEATURE — timeline */
.feature { background: var(--ink); padding: clamp(52px, 6vw, 88px) 0; }
.feature__wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 5vw, 80px); align-items: center;
}
.feature__timeline { display: flex; flex-direction: column; gap: 0; }
.timeline__item {
  display: flex; gap: 20px; padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.timeline__item:last-child { border-bottom: none; }
.timeline__num {
  font-family: var(--display); font-size: 13px; font-weight: 700; color: var(--accent);
  letter-spacing: .08em; min-width: 28px; padding-top: 2px;
}
.timeline__body h3 { color: #fff; font-size: 16px; margin-bottom: 6px; }
.timeline__body p { font-size: 14px; color: rgba(255,255,255,.6); }
.feature__text { display: flex; flex-direction: column; gap: 20px; }
.feature__text h2 { color: #fff; }
.feature__text .lead { color: rgba(255,255,255,.72); }
.feature__perks { display: flex; flex-wrap: wrap; gap: 10px; }
.feature__perks span {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.8); font-size: 13.5px; font-weight: 500;
  padding: 6px 14px; border-radius: 999px;
}
.feature .btn { align-self: flex-start; background: var(--accent); color: #fff; }
.feature .btn:hover { background: #d97706; }

/* ROOMS */
.rooms { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.room {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r);
  padding: 28px; display: flex; flex-direction: column; min-height: 280px;
}
.room--featured {
  background: var(--primary); border-color: var(--primary);
  box-shadow: 0 20px 48px -16px rgba(29, 78, 216, .4);
}
.room--featured h3, .room--featured li { color: #fff; }
.room--featured p { color: rgba(255,255,255,.8); }
.room__label {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--primary); margin-bottom: 10px;
}
.room__label--accent { color: var(--accent); }
.room--featured .room__label--accent { color: var(--accent); }
.room h3 { color: var(--ink); margin-bottom: 14px; }
.room ul { list-style: none; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.room li { font-size: 14px; color: var(--mute); padding-left: 18px; position: relative; }
.room li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.room--featured li::before { color: var(--accent); }
.room__price {
  margin-top: 20px; font-family: var(--display); font-weight: 700;
  font-size: 17px; color: var(--ink); border-top: 1px solid var(--line); padding-top: 14px;
}
.room--featured .room__price { color: #fff; border-color: rgba(255,255,255,.2); }

/* TRUST */
.trust { padding: clamp(52px, 6vw, 88px) 0; background: #eef5ff; }
.trust__wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(36px, 5vw, 64px); align-items: start; }
.trust__text h2 { margin-bottom: 20px; }
.trust__text p { margin-bottom: 14px; max-width: 50ch; }
.trust__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.trust__item {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  padding: 20px; display: flex; flex-direction: column; gap: 4px;
}
.trust__item strong { font-family: var(--display); color: var(--primary); font-size: 17px; }
.trust__item span { font-size: 13px; color: var(--mute); }

/* CONTACT */
.contact { padding: clamp(52px, 6vw, 88px) 0; }
.contact__card {
  background: linear-gradient(135deg, var(--primary) 0%, #1e3a8a 100%);
  border-radius: calc(var(--r) + 8px); padding: clamp(36px, 5vw, 60px);
  display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center;
}
.contact__left h2 { color: #fff; margin-bottom: 14px; }
.contact__left p { color: rgba(255,255,255,.75); margin-bottom: 8px; }
.contact__detail { color: rgba(255,255,255,.9) !important; font-size: 14.5px; }
.contact__detail strong { color: #fff; }
.contact__right { display: flex; flex-direction: column; gap: 12px; min-width: 200px; }

/* FOOTER */
.foot { background: var(--ink); color: rgba(255,255,255,.6); padding: 28px 0; }
.foot__in { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13.5px; }

@media (max-width: 900px) {
  .hero__wrap { grid-template-columns: 1fr; }
  .hero__photo { order: -1; }
  .hero__photo img { height: 300px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .feature__wrap { grid-template-columns: 1fr; }
  .rooms { grid-template-columns: 1fr; }
  .trust__wrap { grid-template-columns: 1fr; }
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__card { grid-template-columns: 1fr; }
  .nav__links { display: none; }
}
@media (max-width: 520px) {
  .cards { grid-template-columns: 1fr; }
  .hero__stats { gap: 18px; }
  .trust__grid { grid-template-columns: 1fr; }
  .contact__right { flex-direction: row; flex-wrap: wrap; }
}
