/* ============================================================
   Plush Hotels, Puri — light theme
   Palette: warm paper, deep teal, brass
   Type: Marcellus (display) + Karla (text)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Karla:wght@400;500;600;700&display=swap');

:root {
  --paper: #FBF8F2;
  --paper-warm: #F3EDE1;
  --white: #FFFFFF;
  --ink: #23211E;
  --ink-soft: #6B645A;
  --teal: #14524E;
  --teal-deep: #0D3B38;
  --brass: #A67C3D;
  --brass-light: #C9A25E;
  --line: rgba(35, 33, 30, 0.11);
  --shadow-sm: 0 2px 8px rgba(35, 33, 30, 0.08);
  --shadow-md: 0 4px 16px rgba(35, 33, 30, 0.12);

  --display: 'Marcellus', Georgia, serif;
  --sans: 'Karla', -apple-system, BlinkMacSystemFont, sans-serif;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 26px; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.18;
  margin: 0;
  color: var(--ink);
  letter-spacing: 0.005em;
}
p { color: var(--ink-soft); max-width: 62ch; margin: 0 0 1em; }

.eyebrow {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 14px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}
.btn-teal { background: var(--teal); color: var(--paper); box-shadow: 0 2px 6px rgba(20, 82, 78, 0.2); }
.btn-teal:hover { background: var(--teal-deep); box-shadow: 0 4px 12px rgba(20, 82, 78, 0.3); }
.btn-line { border-color: var(--teal); color: var(--teal); transition: all 0.2s ease; }
.btn-line:hover { background: rgba(20,82,78,0.08); border-color: var(--teal-deep); }
.btn-wa { background: #25D366; color: #fff; box-shadow: 0 2px 6px rgba(37, 211, 102, 0.25); }
.btn-wa:hover { background: #1DA851; box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35); }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ---------- nav ---------- */
header.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(251, 248, 242, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 3px rgba(35, 33, 30, 0.04);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 26px;
  max-width: var(--max);
  margin: 0 auto;
}
.brand {
  font-family: var(--display);
  font-size: 1.4rem;
  text-decoration: none;
  color: var(--teal);
}
.brand small {
  display: block;
  font-family: var(--sans);
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-top: -2px;
}
.nav-links { display: flex; gap: 26px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding-bottom: 2px;
  border-bottom: 1.5px solid transparent;
}
.nav-links a:hover, .nav-links a.on { color: var(--teal); border-color: var(--brass); }
.nav-actions { display: flex; gap: 9px; align-items: center; }
.nav-actions .btn { padding: 10px 17px; font-size: 0.87rem; }

@media (max-width: 900px) { .nav-links { display: none; } }
@media (max-width: 470px) {
  .btn .wa-text { display: none; }
  .nav-actions .btn-wa { padding: 10px 12px; }
}

/* ---------- hero: split layout ---------- */
.hero {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 0;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
}
.hero-text { padding: 76px 26px 76px 0; max-width: 580px; margin-left: auto; }
.hero-text h1 { font-size: clamp(2.3rem, 4.4vw, 3.3rem); margin-bottom: 18px; }
.hero-text .lede { font-size: 1.1rem; margin-bottom: 26px; }
.hero-badges {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 26px;
}
.hero-badges .b b {
  display: block;
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--teal);
  line-height: 1.1;
}
.hero-badges .b span { font-size: 0.82rem; color: var(--ink-soft); }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-img {
  background-size: cover;
  background-position: center;
  min-height: 540px;
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-text { padding: 52px 26px 44px; margin: 0 auto; max-width: 100%; }
  .hero-img { min-height: 300px; order: -1; }
}

/* ---------- section shell ---------- */
section { padding: 96px 0; }
.section-head { max-width: 620px; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(1.9rem, 3.5vw, 2.5rem); margin-bottom: 12px; }
.bg-warm { background: var(--paper-warm); }
.bg-teal { background: var(--teal); }
.bg-teal h2, .bg-teal h3 { color: var(--paper); }
.bg-teal p { color: rgba(251,248,242,0.82); }
.bg-teal .eyebrow { color: var(--brass-light); }

/* ---------- rooms ---------- */
.rooms { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.room {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.room:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.room-img { height: 220px; background-size: cover; background-position: center; }
.room-body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.room-body h3 { font-size: 1.3rem; margin-bottom: 8px; }
.room-body .sub { font-size: 0.84rem; color: var(--brass); font-weight: 600; margin-bottom: 12px; }
.room-body p { font-size: 0.94rem; margin-bottom: 16px; }
.room-feat {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  display: grid;
  gap: 6px;
}
.room-feat li { display: flex; gap: 9px; align-items: baseline; }
.room-feat li::before { content: "—"; color: var(--brass); }
.room-body .btn { margin-top: auto; align-self: flex-start; }

@media (max-width: 900px) { .rooms { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .rooms { grid-template-columns: 1fr; } }

/* ---------- gallery: feature + even grid ---------- */
.gal-feature {
  width: 100%;
  height: 420px;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease;
}
.gal-feature:hover { box-shadow: var(--shadow-md); }
.gal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.gal-grid figure { margin: 0; }
.gal-grid .shot {
  height: 210px;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.gal-grid figure:hover .shot { opacity: 0.95; box-shadow: var(--shadow-md); transform: scale(1.02); }
.gal-grid figcaption {
  font-size: 0.82rem;
  color: var(--ink-soft);
  padding-top: 9px;
}

@media (max-width: 900px) { .gal-grid { grid-template-columns: 1fr 1fr; } .gal-feature { height: 260px; } }

/* ---------- amenities ---------- */
.am-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px 30px; }
.am {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.am .ic {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--brass);
  color: var(--brass);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
}
.am h4 { font-family: var(--sans); font-weight: 600; font-size: 0.95rem; margin-bottom: 2px; }
.am p { font-size: 0.88rem; margin: 0; }

@media (max-width: 900px) { .am-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .am-grid { grid-template-columns: 1fr; } }

/* ---------- nearby distances ---------- */
.near-list { list-style: none; padding: 0; margin: 0; max-width: 620px; }
.near-list li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(251,248,242,0.25);
  font-size: 0.98rem;
  color: rgba(251,248,242,0.9);
}
.near-list li b { color: var(--brass-light); font-weight: 600; white-space: nowrap; }

/* ---------- reviews ---------- */
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.rev {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.rev:hover { box-shadow: var(--shadow-md); }
.rev .stars { color: var(--brass); letter-spacing: 3px; font-size: 0.95rem; margin-bottom: 14px; }
.rev p { font-size: 0.97rem; margin-bottom: 16px; line-height: 1.7; }
.rev .who { font-size: 0.84rem; font-weight: 600; color: var(--ink-soft); }

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

/* ---------- faq ---------- */
.faq { max-width: 780px; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--brass); font-size: 1.3rem; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 12px 0 0; font-size: 0.95rem; }

/* ---------- location ---------- */
.loc-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 44px; align-items: start; }
.loc-info dt { color: var(--brass); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 20px; }
.loc-info dt:first-child { margin-top: 0; }
.loc-info dd { margin: 5px 0 0; color: var(--ink-soft); }
.map-embed { border: 1px solid var(--line); border-radius: 3px; overflow: hidden; min-height: 340px; }
.map-embed iframe { width: 100%; height: 100%; min-height: 340px; border: 0; }

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

/* ---------- final cta ---------- */
.cta {
  background: var(--teal);
  padding: 64px 0;
}
.cta h2 { color: var(--paper); font-size: clamp(1.7rem, 3vw, 2.2rem); margin-bottom: 12px; }
.cta p { color: rgba(251,248,242,0.82); margin-bottom: 26px; }
.cta .btn-line { border-color: rgba(251,248,242,0.55); color: var(--paper); }
.cta .btn-line:hover { background: rgba(251,248,242,0.1); }
.cta .btn-teal { background: var(--paper); color: var(--teal-deep); }
.cta .btn-teal:hover { background: #fff; }

/* ---------- footer ---------- */
footer.site {
  background: var(--ink);
  color: rgba(251,248,242,0.7);
  padding: 40px 0 26px;
  font-size: 0.9rem;
}
footer.site .f-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(251,248,242,0.15);
  margin-bottom: 18px;
}
footer.site a { color: rgba(251,248,242,0.7); text-decoration: none; }
footer.site a:hover { color: var(--brass-light); }
footer.site .fine { font-size: 0.8rem; color: rgba(251,248,242,0.45); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
