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

:root {
  --cream: #F7F5F0;
  --off-white: #FAFAF8;
  --ink: #1A1A18;
  --ink-muted: #5A5A56;
  --ink-faint: #9A9A96;
  --border: rgba(26,26,24,0.12);
  --border-mid: rgba(26,26,24,0.22);
  --accent: #1A1A18;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--off-white);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 0.5px solid var(--border);
  background: var(--off-white);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 19px;
  color: var(--ink);
  letter-spacing: -0.01em;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--ink); }

.btn-primary {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 22px;
  background: var(--ink);
  color: #fff;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s;
}

.btn-primary:hover { opacity: 0.82; }

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 360px;
  border-bottom: 0.5px solid var(--border);
}

.hero-left {
  padding: 80px 56px 72px;
  border-right: 0.5px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 22px;
}

.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 50px;
  line-height: 1.08;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 22px;
  max-width: 560px;
}

.hero-sub {
  font-size: 16px;
  color: var(--ink-muted);
  font-weight: 300;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  font-size: 12px;
  color: var(--ink-muted);
  border: 0.5px solid var(--border-mid);
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.02em;
}

/* BOOKING PANEL */
.booking-panel {
  background: var(--cream);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-content: center;
}

.booking-panel h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
}

.booking-panel p.sub {
  font-size: 13px;
  color: var(--ink-faint);
  margin-top: 4px;
}

.field-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 7px;
}

.field-input {
  width: 100%;
  padding: 11px 14px;
  border: 0.5px solid var(--border-mid);
  border-radius: 3px;
  background: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--ink);
  outline: none;
}

.field-input:focus { border-color: var(--ink); }

select.field-input {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A5A56' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.btn-book {
  width: 100%;
  padding: 14px;
  background: var(--ink);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-book:hover { opacity: 0.82; }

.booking-note {
  font-size: 12px;
  color: var(--ink-faint);
  text-align: center;
}

/* STATS */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 0.5px solid var(--border);
}

.stat {
  padding: 30px 36px;
  border-right: 0.5px solid var(--border);
}

.stat:last-child { border-right: none; }

.stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 6px;
}

.stat-unit { font-size: 20px; }

.stat-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* SECTIONS */
.section {
  padding: 80px 56px;
  border-bottom: 0.5px solid var(--border);
}

.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: 34px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 18px;
  line-height: 1.18;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 40px;
  align-items: start;
}

.about-body {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.8;
  font-weight: 300;
}

.highlight-list {
  list-style: disc;
  padding-left: 18px;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.highlight-list li {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.7;
  font-weight: 300;
}

.highlight-list li strong {
  color: var(--ink);
  font-weight: 500;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 0.5px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.feat {
  background: var(--off-white);
  padding: 20px 22px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feat i {
  font-size: 18px;
  color: var(--ink-faint);
  margin-top: 1px;
  flex-shrink: 0;
}

.feat-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 2px;
}

.feat-desc {
  font-size: 12px;
  color: var(--ink-faint);
  line-height: 1.45;
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 40px;
  border: 0.5px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.pricing-card {
  padding: 40px 32px;
  border-right: 0.5px solid var(--border);
  background: var(--off-white);
  display: flex;
  flex-direction: column;
}

.pricing-card:last-child { border-right: none; }

.pricing-card--featured {
  background: var(--ink);
}

.pricing-size {
  font-family: 'DM Serif Display', serif;
  font-size: 30px;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 6px;
}

.pricing-size-unit {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-muted);
}

.pricing-card--featured .pricing-size,
.pricing-card--featured .pricing-size-unit { color: #fff; }

.pricing-tier {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 32px;
}

.pricing-card--featured .pricing-tier { color: rgba(255,255,255,0.45); }

.pricing-total {
  font-family: 'DM Serif Display', serif;
  font-size: 38px;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 6px;
}

.pricing-total span {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-muted);
}

.pricing-card--featured .pricing-total { color: #fff; }
.pricing-card--featured .pricing-total span { color: rgba(255,255,255,0.55); }

.pricing-total-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 28px;
}

.pricing-card--featured .pricing-total-label { color: rgba(255,255,255,0.45); }

.pricing-divider {
  height: 0.5px;
  background: var(--border);
  margin-bottom: 20px;
}

.pricing-card--featured .pricing-divider { background: rgba(255,255,255,0.15); }

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  font-size: 13px;
  color: var(--ink-muted);
  border-bottom: 0.5px solid var(--border);
}

.pricing-row:last-child { border-bottom: none; }

.pricing-row span:last-child {
  font-weight: 500;
  color: var(--ink);
}

.pricing-card--featured .pricing-row {
  color: rgba(255,255,255,0.6);
  border-bottom-color: rgba(255,255,255,0.1);
}

.pricing-card--featured .pricing-row span:last-child { color: #fff; }

.pricing-note {
  font-size: 12px;
  color: var(--ink-faint);
  margin-top: 16px;
}

/* LOCATION */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 40px;
  align-items: start;
}

.loc-list { display: flex; flex-direction: column; }

.loc-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 0.5px solid var(--border);
}

.loc-item:last-child { border-bottom: none; }

.loc-icon {
  width: 38px;
  height: 38px;
  background: var(--cream);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.loc-icon i { font-size: 18px; color: var(--ink-muted); }

.loc-name { font-size: 14px; font-weight: 500; color: var(--ink); margin-bottom: 2px; }
.loc-dist { font-size: 12px; color: var(--ink-faint); }

.map-embed {
  border-radius: 6px;
  overflow: hidden;
  border: 0.5px solid var(--border);
  height: 280px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 40px;
  align-items: start;
}

.contact-details { display: flex; flex-direction: column; gap: 22px; }

.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-item i { font-size: 18px; color: var(--ink-faint); margin-top: 3px; }
.contact-lbl { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 4px; }
.contact-val { font-size: 15px; color: var(--ink); }
.contact-val a { color: var(--ink); text-decoration: none; }
.contact-val a:hover { text-decoration: underline; }

textarea.msg-area {
  width: 100%;
  padding: 12px 14px;
  border: 0.5px solid var(--border-mid);
  border-radius: 3px;
  background: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--ink);
  resize: vertical;
  min-height: 110px;
  outline: none;
  margin-bottom: 14px;
}

textarea.msg-area:focus { border-color: var(--ink); }

/* FOOTER */
footer {
  padding: 28px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--ink-faint);
  border-top: 0.5px solid var(--border);
}

.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 17px;
  color: var(--ink);
}

/* CAROUSEL */
.carousel-section {
  border-bottom: 0.5px solid var(--border);
  background: var(--cream);
  padding: 72px 0;
}

.carousel-header {
  padding: 0 56px 36px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.carousel-header-left .eyebrow { margin-bottom: 10px; }

.carousel-title {
  font-family: 'DM Serif Display', serif;
  font-size: 34px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.18;
}

.carousel-controls {
  display: flex;
  gap: 10px;
  align-items: center;
}

.carousel-btn {
  width: 42px;
  height: 42px;
  border: 0.5px solid var(--border-mid);
  border-radius: 3px;
  background: var(--off-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.carousel-btn:hover {
  background: var(--ink);
  border-color: var(--ink);
}

.carousel-btn:hover i { color: #fff; }

.carousel-btn i {
  font-size: 18px;
  color: var(--ink-muted);
  transition: color 0.2s;
}

.carousel-track-wrap {
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 calc(50% - 12px);
  margin-right: 24px;
  height: 420px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--border);
  position: relative;
}

.carousel-slide:first-child { margin-left: 56px; }

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.carousel-slide:hover img { transform: scale(1.03); }

.carousel-slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 22px;
  background: linear-gradient(to top, rgba(26,26,24,0.55), transparent);
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.04em;
  opacity: 0;
  transition: opacity 0.3s;
}

.carousel-slide:hover .carousel-slide-caption { opacity: 1; }

.carousel-dots {
  display: flex;
  gap: 6px;
  padding: 24px 56px 0;
}

.carousel-dot {
  width: 24px;
  height: 3px;
  background: var(--border-mid);
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.25s, width 0.25s;
  border: none;
  padding: 0;
}

.carousel-dot.active {
  background: var(--ink);
  width: 40px;
}

.carousel-slide .placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--border);
  color: var(--ink-faint);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.carousel-slide .placeholder i { font-size: 28px; opacity: 0.4; }

/* HAMBURGER */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.25s, opacity 0.25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* RESPONSIVE — tablet */
@media (max-width: 1024px) {
  nav { padding: 18px 32px; }
  .section { padding: 64px 32px; }
  .hero-left { padding: 60px 32px 52px; }
  .booking-panel { padding: 36px 28px; }
  .hero h1 { font-size: 40px; }
  .about-grid { gap: 40px; }
  .location-grid { gap: 40px; }
  .contact-grid { gap: 40px; }
  footer { padding: 24px 32px; }
  .carousel-header { padding: 0 32px 28px; }
  .carousel-slide:first-child { margin-left: 32px; }
  .carousel-dots { padding: 18px 32px 0; }
}

/* RESPONSIVE — mobile */
@media (max-width: 768px) {
  nav { padding: 16px 20px; position: relative; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--off-white);
    border-bottom: 0.5px solid var(--border);
    flex-direction: column;
    gap: 0;
    padding: 8px 0 12px;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links li { padding: 0 20px; }
  .nav-links a { display: block; padding: 10px 0; font-size: 13px; border-bottom: 0.5px solid var(--border); }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }

  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 48px 20px 40px; border-right: none; border-bottom: 0.5px solid var(--border); }
  .hero h1 { font-size: 32px; max-width: none; }
  .hero-sub { font-size: 15px; max-width: none; }
  .booking-panel { padding: 32px 20px; }

  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(even) { border-right: none; }
  .stat { padding: 22px 20px; }
  .stat-num { font-size: 28px; }

  .section { padding: 48px 20px; }
  .section-title { font-size: 26px; }

  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .features-grid { grid-template-columns: 1fr; }

  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card { border-right: none; border-bottom: 0.5px solid var(--border); }
  .pricing-card--featured { border-bottom: none; }

  .location-grid { grid-template-columns: 1fr; gap: 28px; }
  .map-embed { height: 240px; }

  .contact-grid { grid-template-columns: 1fr; gap: 32px; }

  .carousel-slide { flex: 0 0 calc(100% - 40px); }
  .carousel-slide:first-child { margin-left: 20px; }
  .carousel-header { padding: 0 20px 24px; }
  .carousel-title { font-size: 26px; }
  .carousel-dots { padding: 16px 20px 0; }

  footer { padding: 24px 20px; flex-direction: column; gap: 6px; text-align: center; }
}
