:root {
  --bg: #faf8f4;
  --paper: #ffffff;
  --ink: #1f352f;
  --muted: #64736f;
  --green: #2d4a3f;
  --green-soft: #e8efe9;
  --gold: #dfa83d;
  --gold-soft: #fff6dc;
  --line: rgba(31, 53, 47, 0.10);
  --shadow: 0 22px 55px rgba(31, 53, 47, 0.09);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

img,
video {
  display: block;
  width: 100%;
  max-width: 100%;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 clamp(18px, 4vw, 56px);
  background: rgba(250, 248, 244, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.brand img {
  width: auto;
  height: 72px;
  object-fit: contain;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.phone-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--green);
  color: white;
  box-shadow: 0 10px 28px rgba(45, 74, 63, 0.18);
}

.btn-ghost {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}

.btn-small {
  min-height: 40px;
  padding: 0 18px;
}

/* GENERAL */

.section {
  padding: clamp(62px, 8vw, 105px) clamp(20px, 5vw, 72px);
}

.narrow {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.center {
  text-align: center;
  margin-top: 28px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #a87218;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
  color: var(--green);
}

h1 {
  font-size: clamp(54px, 8vw, 108px);
  letter-spacing: -0.05em;
}

h2 {
  font-size: clamp(34px, 5vw, 62px);
  letter-spacing: -0.035em;
}

p {
  margin: 0;
  color: var(--muted);
}

/* HERO */

.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(38px, 6vw, 72px) clamp(20px, 5vw, 72px);
}

.hero-copy {
  max-width: 590px;
}

.hero-line {
  margin-top: 14px;
  font-family: var(--serif);
  font-size: clamp(20px, 2.35vw, 32px);
  color: var(--ink);
  line-height: 1.12;
}

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

.hero-media {
  margin: 0;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: var(--shadow);
  background: var(--green-soft);
}

.hero-media img {
  height: min(76vh, 730px);
  object-fit: cover;
}

/* INTRO */

.intro {
  background: var(--green-soft);
}

.intro p {
  margin-top: 22px;
  font-size: clamp(17px, 2.2vw, 22px);
  color: var(--ink);
}

/* EXPERIENCE */

.split {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
}

.soft-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(26px, 4vw, 46px);
  box-shadow: 0 12px 35px rgba(31, 53, 47, 0.04);
}

.soft-panel p {
  color: var(--ink);
  font-size: 18px;
}

.mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.mini-list span,
.event-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--gold-soft);
  color: #8a6419;
  font-weight: 800;
  font-size: 13px;
}

/* PACKAGE */

.package {
  background: #f3efe8;
}

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

.section-head p:last-child {
  margin-top: 12px;
}

.package-card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--paper);
  border-radius: 30px;
  padding: clamp(28px, 5vw, 52px);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.package-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.package-card li {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(31, 53, 47, 0.08);
  color: var(--ink);
}

.package-card li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 900;
}

.package-card li:last-child {
  border-bottom: 0;
}

.package-card .btn {
  width: 100%;
}

/* SLIDER */

.slider {
  position: relative;
  max-width: 930px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 30px;
  background: var(--green-soft);
  box-shadow: var(--shadow);
}

.slider-track {
  display: flex;
  transition: transform 450ms ease;
}

.slider-track img {
  flex: 0 0 100%;
  height: clamp(330px, 58vw, 640px);
  object-fit: cover;
}

.slider-control {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.92);
  color: var(--green);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.10);
}

.slider-control.prev {
  left: 16px;
}

.slider-control.next {
  right: 16px;
}

/* EVENTS */

.events {
  background: var(--green-soft);
}

.event-tags {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.event-tags span {
  background: white;
  color: var(--green);
  border: 1px solid rgba(45, 74, 63, 0.08);
}

/* VIDEO */

.video-box {
width: min(100%, 420px);
margin: 0 auto;
border-radius: 30px;
overflow: hidden;
background: #111;
box-shadow: var(--shadow);
aspect-ratio: 9 / 16;
}

.video-box video {
width: 100%;
height: 100%;
object-fit: cover;
}

/* CONTACT */

.contact {
  background: #fcfbf8;
  border-top: 1px solid var(--line);
}

.contact-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(30px, 6vw, 78px);
  align-items: start;
}

.contact-copy p:not(.eyebrow) {
  margin-top: 18px;
  font-size: 17px;
}

.contact-links {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-links a {
  display: block;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 18px;
  font-weight: 800;
  color: var(--green);
}

.contact-links a i {
  margin-right: 8px;
}

/* FORM */

.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: clamp(22px, 4vw, 42px);
  box-shadow: 0 14px 40px rgba(31, 53, 47, 0.05);
}

.booking-form label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 900;
  color: var(--ink);
}

.booking-form .full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(31, 53, 47, 0.18);
  border-radius: 14px;
  padding: 14px 15px;
  font: inherit;
  background: #fbfcfb;
  color: var(--ink);
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(45, 74, 63, 0.08);
  background: white;
}

/* FOOTER */

.site-footer {
  padding: 34px 20px;
  background: var(--green);
  text-align: center;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.76);
}

.site-footer strong {
  color: white;
}

/* GALLERY PAGE */

.gallery-page {
  padding-top: 90px;
}

.gallery-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-grid img {
  height: 310px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(31, 53, 47, 0.06);
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .phone-link {
    display: none;
  }

  .hero,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 18px;
    gap: 20px;
  }

  .hero-copy {
    text-align: center;
    margin: 0 auto;
  }

  .hero-media img {
    height: 70vh;
    min-height: 540px;
    object-position: center;
  }

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

@media (max-width: 560px) {
  .site-header {
    height: 66px;
    padding: 0 14px;
  }

  .brand img {
    height: 58px;
  }

  .btn-small {
    min-height: 38px;
    padding: 0 14px;
    font-size: 12px;
  }

  .hero {
    padding: 18px 18px 42px;
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 0.10em;
    margin-bottom: 10px;
  }

  h1 {
    font-size: 50px;
  }

  .hero-line {
    font-size: 21px;
    max-width: 310px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-media {
    border-radius: 26px;
  }

  .hero-media img {
    height: 70vh;
    min-height: 540px;
  }

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

  .booking-form {
    grid-template-columns: 1fr;
  }

  .booking-form .full {
    grid-column: auto;
  }

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

  .gallery-grid img {
    height: 330px;
  }
}
  .gallery-grid img { height: 330px; }
}
