:root{
  --bg: #ffffff;
  --text: #1f1f1f;
  --muted: #6b6b6b;
  --border: #ececec;
  --accent: #d9a2b2;
  --accent-dark: #c8879a;
  --max: 1120px;
  --radius: 18px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a{ color: inherit; text-decoration: none; }
img{ max-width: 100%; display:block; }

button,
input,
select,
textarea{
  font: inherit;
}

.container{
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 18px;
}

.brand{
  display:flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand .name{
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  letter-spacing: 0.6px;
  font-size: 18px;
}

.brand .tag{
  font-size: 12px;
  color: var(--muted);
}

.navlinks{
  display:flex;
  gap: 18px;
  align-items:center;
}

.navlinks a{
  font-size: 14px;
  color: var(--text);
  opacity: 0.88;
}

.navlinks a:hover{
  opacity: 1;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 14px;
  border: 1px solid var(--border);
  gap: 10px;
  background: #fff;
  color: var(--text);
}

.btn-primary{
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

.btn-primary:hover{
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn-ghost-dark{
  background:#fff;
  color: var(--text);
  border-color: var(--border);
}

.btn-ghost-dark:hover{
  border-color:#d9d9d9;
}

/* HERO */
.hero-video{
  position: relative;
  width: 100%;
  height: calc(100svh - 72px);
  min-height: 620px;
  overflow: hidden;
  background: #000;
}

.hero-video-wrapper{
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-video-wrapper iframe{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}

.hero-copy-below{
  padding: 28px 0 14px;
  background: #fff;
}

.kicker{
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.h1{
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.08;
  margin: 0 0 14px;
}

.lead{
  color: var(--muted);
  font-size: 16px;
  max-width: 52ch;
}

.hero-kicker-below{
  color: var(--muted);
  margin-bottom: 10px;
}

.hero-title-below{
  color: var(--text);
  max-width: 14ch;
  margin-bottom: 12px;
}

.hero-lead-below{
  color: var(--muted);
  max-width: 34ch;
  margin: 0;
  font-size: 16px;
}

/* FEATURES */
.section{
  padding: 56px 0;
}

.features{
  padding-top: 42px;
  padding-bottom: 30px;
}

.features-head{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  margin-bottom:24px;
}

.features-title{
  margin:0;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--muted);
}

.features-line{
  height:1px;
  width:120px;
  background: var(--border);
  opacity:.9;
}

.features-grid{
  display:grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap:18px;
}

.card{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.feature-card{
  text-align:center;
  padding:22px 16px;
}

.feature-ico{
  width:72px;
  height:72px;
  margin:0 auto 14px;
  display:grid;
  place-items:center;
  border-radius:18px;
  background: rgba(217,162,178,.12);
  border: 1px solid rgba(217,162,178,.25);
  color: #b9778c;
}

.feature-ico svg{
  width:36px;
  height:36px;
}

.feature-card h3{
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.feature-card p{
  margin:0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

/* QUOTE */
.section h2{
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: 28px;
  margin: 0 0 10px;
}

.section p{
  color: var(--muted);
  margin: 0;
}

.quote-old-grid{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap:16px;
}

.old-field-select{
  width:100%;
  justify-content:space-between;
  border-radius:14px;
  background:#fff;
}

.old-field-input{
  width:100%;
  border-radius:14px;
  justify-content:flex-start;
  background:#fff;
}

.old-qty-input{
  text-align:center;
}

.old-textarea{
  width:100%;
  border-radius:14px;
  justify-content:flex-start;
  padding:12px 16px;
  min-height:110px;
  resize:vertical;
  background:#fff;
}

/* FOOTER */
.footer{
  padding: 28px 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
}

.footer-inner{
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* TABLET */
@media (max-width: 1100px){
  .features-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* MOBILE */
@media (max-width: 900px){
  .navlinks{
    display:none;
  }

  .quote-old-grid{
    grid-template-columns: 1fr;
  }

  .features-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-video{
    height: 58svh;
    min-height: 360px;
  }
}

@media (max-width: 560px){
  .container{
    width: min(var(--max), calc(100% - 24px));
  }

  .nav{
    padding: 12px 0;
    gap: 12px;
  }

  .brand .name{
    font-size: 17px;
  }

  .brand .tag{
    font-size: 11px;
  }

  .btn{
    font-size: 13px;
  }

  .hero-video{
    height: 50svh;
    min-height: 300px;
  }

  .hero-copy-below{
    padding: 24px 0 10px;
  }

  .hero-kicker-below{
    font-size: 11px;
    letter-spacing: .16em;
  }

  .hero-title-below{
    font-size: clamp(1.9rem, 8.2vw, 2.5rem);
    line-height: 1.06;
    max-width: 11ch;
    margin-bottom: 10px;
  }

  .hero-lead-below{
    font-size: 13px;
    line-height: 1.55;
    max-width: 27ch;
  }

  .features{
    padding-top: 32px;
  }

  .features-grid{
    grid-template-columns: 1fr;
    gap:14px;
  }

  .features-line{
    width:60px;
  }

  .feature-card{
    text-align:left;
    display:flex;
    align-items:flex-start;
    gap:14px;
  }

  .feature-ico{
    width:56px;
    height:56px;
    margin:0;
    flex: 0 0 56px;
  }

  .feature-ico svg{
    width:28px;
    height:28px;
  }

  .feature-card h3{
    font-size: 13px;
    margin-bottom: 4px;
  }

  .feature-card p{
    font-size: 12px;
  }
}

.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
}

.hamburger span {
  width: 20px;
  height: 2px;
  background: #111;
  border-radius: 999px;
  display: block;
}

@media (max-width: 768px) {
  .nav {
    position: relative;
  }

  .hamburger {
    display: flex;
  }

  .desktop-booking-btn {
    display: none;
  }

  .navlinks {
    display: none;
    position: absolute;
    top: 64px;
    left: 16px;
    right: 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 16px;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 14px 40px rgba(0,0,0,0.10);
    z-index: 999;
  }

  .navlinks.show {
    display: flex;
  }

  .navlinks a {
    padding: 10px 12px;
    border-radius: 12px;
  }

  .navlinks a:hover {
    background: #f7f7f7;
  }
}