/* ===== GLOBAL ===== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}
body, html {
    overflow-x: hidden;
}
body {
  background: #f7f3ec;
  color: #151a1e;
  overflow-x: hidden;
}

.page-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img {
  max-width: 100%;
  display: block;
}

.sv2-container {
  width: 92%;
  max-width: 1120px;
  margin: 0 auto;
}

/* ===== HEADER ===== */

.sv2-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(252, 248, 242, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid #e0d7ca;
}

.sv2-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 16px;
}

.sv2-logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.sv2-logo-main {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1c2620;
}

.sv2-logo-sub {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #7c8b7f;
}

.sv2-nav {
  display: flex;
  gap: 18px;
  font-size: 13px;
}

.sv2-nav a {
  text-decoration: none;
  color: #414b45;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: 0.2s ease;
}

.sv2-nav a:hover,
.sv2-nav .active {
  color: #2f5d3e;
  border-bottom-color: #2f5d3e;
}

.sv2-header-contact {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}

.sv2-header-contact i {
  color: #2f5d3e;
}

.sv2-header-contact a {
  color: #1c2620;
  text-decoration: none;
}

/* Burger */

.sv2-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.sv2-menu-btn span {
  width: 22px;
  height: 2.5px;
  border-radius: 999px;
  background: #1c2620;
}

/* Mobile menu */

.sv2-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 230px;
  height: 100vh;
  background: #1f2720;
  padding-top: 80px;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: 0.3s ease;
  z-index: 200;
}

.sv2-mobile-menu a {
  color: #f3f4f6;
  text-decoration: none;
  font-size: 15px;
}

.sv2-mobile-menu.open {
  right: 0;
}

/* ===== HERO ===== */

.sv2-hero {
  background: radial-gradient(circle at top left, #e9f4e7 0, #f7f3ec 45%, #fbeedc 100%);
  padding: 26px 0 28px;
  position: relative;
  overflow: hidden;
}

.sv2-hero::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(251, 237, 213, 0.7);
  top: -120px;
  right: -80px;
  filter: blur(4px);
  z-index: 0;
}

.sv2-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.sv2-pill-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: #1f2720;
  color: #f9fafb;
  margin-bottom: 8px;
}

.sv2-hero-text h1 {
  font-size: 30px;
  line-height: 1.3;
  margin-bottom: 10px;
}

.sv2-hero-text p {
  font-size: 14px;
  color: #4a5a4e;
  line-height: 1.7;
  max-width: 520px;
}

.sv2-hero-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sv2-hero-meta {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: #1c2620;
}

.sv2-hero-meta i {
  color: #2f5d3e;
  margin-right: 4px;
}

/* Hero media */

.sv2-hero-media {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.sv2-hero-circle {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  overflow: hidden;
  background: #1f2720;
  box-shadow: 0 18px 40px rgba(24, 32, 27, 0.65);
  animation: sv2Float 10s ease-in-out infinite alternate;
}

.sv2-hero-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sv2-hero-note {
  font-size: 12px;
  color: #4a5a4e;
}

/* Buttons & pills */

.sv2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: 0.2s ease, transform 0.15s ease;
}

.sv2-btn-primary {
  background: #1f2720;
  color: #f9fafb;
  box-shadow: 0 12px 30px rgba(24, 32, 27, 0.55);
}

.sv2-btn-primary:hover {
  background: #171f19;
  transform: translateY(-1px);
}

.sv2-ghost-pill {
  border-radius: 999px;
  border: 1px solid #1f2720;
  background: transparent;
  color: #1f2720;
  font-size: 12px;
  padding: 7px 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.sv2-ghost-pill i {
  color: #2f5d3e;
}

/* ===== SECTIONS ===== */

.sv2-section {
  padding: 26px 0 24px;
}

.sv2-section-alt {
  background: #f1ebe3;
}

.sv2-section-head {
  margin-bottom: 14px;
}

.sv2-section-head h2 {
  font-size: 20px;
  margin-bottom: 4px;
}

.sv2-section-head p {
  font-size: 13px;
  color: #5c6b60;
}

/* ===== GRID / CARDS ===== */

.sv2-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.sv2-card {
  background: #fffdf9;
  border-radius: 18px;
  padding: 14px 14px 15px;
  box-shadow: 0 10px 26px rgba(24, 32, 27, 0.08);
  border: 1px solid #eadfce;
  font-size: 13px;
  color: #4a5a4e;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.sv2-card h3 {
  font-size: 15px;
  margin-bottom: 4px;
}

.sv2-card i {
  color: #2f5d3e;
  margin-right: 6px;
}

.sv2-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(24, 32, 27, 0.2);
}

/* ===== TIMELINE ===== */

.sv2-timeline-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
}

.sv2-timeline-intro p {
  font-size: 14px;
  color: #4a5a4e;
  line-height: 1.7;
}

.sv2-timeline {
  border-left: 1px dashed #c5b59f;
  padding-left: 20px;
  position: relative;
}

.sv2-step {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.sv2-step-marker {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #1f2720;
  color: #f9fafb;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -31px;
  margin-top: 4px;
}

.sv2-step-body h3 {
  font-size: 15px;
  margin-bottom: 4px;
}

.sv2-step-body p {
  font-size: 13px;
  color: #4a5a4e;
}

/* ===== PACKAGES ===== */

.sv2-grid-cards {
  align-items: stretch;
}

.sv2-package-card {
  background: #fffdf9;
  border-radius: 18px;
  padding: 14px 14px 15px;
  box-shadow: 0 12px 30px rgba(24, 32, 27, 0.09);
  border: 1px solid #eadfce;
  font-size: 13px;
  color: #4a5a4e;
}

.sv2-package-card h3 {
  font-size: 16px;
  margin-bottom: 4px;
}

.sv2-package-card ul {
  margin-top: 6px;
  margin-left: 18px;
  line-height: 1.7;
}

.sv2-package-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #7c8b7f;
  margin-bottom: 4px;
}

.sv2-package-label-main {
  color: #2f5d3e;
}

/* ===== LOCATION SECTION ===== */

.sv2-location-section {
  background: #f1ebe3;
}

.sv2-location-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.sv2-location-inner h2 {
  font-size: 18px;
  margin-bottom: 4px;
}

.sv2-location-inner p {
  font-size: 14px;
  color: #4a5a4e;
  max-width: 520px;
}

.sv2-location-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: #1f2720;
  color: #f9fafb;
  font-size: 12px;
}

/* ===== CONTACT INVITE ===== */

.sv2-contact-invite {
  background: #1f2720;
  color: #f9fafb;
}

.sv2-contact-invite-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.sv2-contact-invite-inner h2 {
  font-size: 18px;
  margin-bottom: 4px;
}

.sv2-contact-invite-inner p {
  font-size: 13px;
}

.sv2-contact-inline {
  font-size: 13px;
  margin-top: 6px;
}

.sv2-contact-inline i {
  margin-right: 6px;
}

/* ===== PAGES LAYOUT ===== */

.sv2-page-hero {
  padding: 26px 0 10px;
}

.sv2-page-hero h1 {
  font-size: 22px;
  margin-bottom: 6px;
}

.sv2-page-hero p {
  font-size: 14px;
  color: #4a5a4e;
  max-width: 620px;
}

/* Services layout */

.sv2-services-layout {
  padding: 8px 0 26px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 24px;
  align-items: flex-start;
}

.sv2-services-main {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sv2-service-block {
  background: #fffdf9;
  border-radius: 18px;
  padding: 14px 14px 15px;
  border: 1px solid #eadfce;
  font-size: 14px;
  color: #4a5a4e;
  line-height: 1.7;
}

.sv2-service-block h2 {
  font-size: 18px;
  margin-bottom: 4px;
  color: #1c2620;
}

.sv2-service-block ul {
  margin-top: 6px;
  margin-left: 18px;
}

.sv2-services-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sv2-side-note {
  background: #f1ebe3;
  border-radius: 16px;
  padding: 12px 12px 13px;
  font-size: 13px;
  color: #4a5a4e;
}

.sv2-side-note-soft {
  background: #e6e0d7;
}

.sv2-side-note h3 {
  font-size: 15px;
  margin-bottom: 4px;
}

.sv2-link {
  display: inline-block;
  margin-top: 6px;
  font-size: 13px;
  color: #1f2720;
  text-decoration: none;
  border-bottom: 1px solid #1f2720;
}

.sv2-link:hover {
  color: #2f5d3e;
  border-bottom-color: #2f5d3e;
}

/* Directions */

.sv2-directions-grid {
  padding: 8px 0 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.sv2-direction-card {
  background: #fffdf9;
  border-radius: 18px;
  padding: 14px 14px 15px;
  border: 1px solid #eadfce;
  font-size: 14px;
  color: #4a5a4e;
  line-height: 1.7;
}

.sv2-direction-card h2 {
  font-size: 18px;
  margin-bottom: 4px;
  color: #1c2620;
}

.sv2-direction-card ul {
  margin-top: 6px;
  margin-left: 18px;
}

/* About */

.sv2-about-layout {
  padding: 8px 0 26px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  font-size: 14px;
  color: #4a5a4e;
  line-height: 1.7;
}

.sv2-about-column h2 {
  font-size: 18px;
  margin-bottom: 4px;
  color: #1c2620;
}

.sv2-about-column ul,
.sv2-about-steps {
  margin-left: 18px;
  margin-bottom: 6px;
}

/* Contact layout */

.sv2-contact-layout {
  padding: 8px 0 26px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 22px;
}

.sv2-contact-panel {
  background: #fffdf9;
  border-radius: 18px;
  padding: 14px 14px 15px;
  box-shadow: 0 10px 30px rgba(24, 32, 27, 0.12);
  border: 1px solid #eadfce;
  font-size: 14px;
  color: #4a5a4e;
}

.sv2-contact-panel h1 {
  font-size: 20px;
  margin-bottom: 6px;
}

.sv2-contact-panel p {
  margin-bottom: 4px;
}

.sv2-contact-note {
  margin-top: 8px;
  margin-bottom: 10px;
}

/* Form */

.sv2-contact-panel form {
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sv2-contact-panel label {
  font-size: 13px;
  font-weight: 500;
  color: #1c2620;
}

.sv2-contact-panel input,
.sv2-contact-panel textarea {
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid #d8cdbf;
  background: #ffffff;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.sv2-contact-panel textarea {
  resize: vertical;
  min-height: 110px;
}

.sv2-contact-panel input:focus,
.sv2-contact-panel textarea:focus {
  border-color: #2f5d3e;
  box-shadow: 0 0 0 1px rgba(47, 93, 62, 0.3);
}

.sv2-map-panel {
  border-radius: 18px;
  overflow: hidden;
  min-height: 260px;
  box-shadow: 0 10px 30px rgba(24, 32, 27, 0.12);
}

/* Policy */

.sv2-policy-card {
  background: #fffdf9;
  border-radius: 18px;
  padding: 16px 16px 18px;
  margin: 26px auto 32px;
  max-width: 820px;
  box-shadow: 0 8px 24px rgba(24, 32, 27, 0.08);
  font-size: 14px;
  color: #4a5a4e;
  line-height: 1.7;
}

.sv2-policy-card h1 {
  font-size: 22px;
  margin-bottom: 6px;
  color: #1c2620;
}

.sv2-policy-card h2 {
  font-size: 17px;
  margin-top: 12px;
  margin-bottom: 4px;
  color: #1c2620;
}

.sv2-policy-card ul {
  margin-left: 18px;
}

/* ===== FOOTER ===== */

.sv2-footer {
  background: #1c2620;
  color: #bdc6bd;
  padding: 14px 0 18px;
  font-size: 12px;
  margin-top: auto;
}

.sv2-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sv2-footer-links a {
  color: #f3f4f6;
  text-decoration: none;
  margin-left: 8px;
}

/* ===== COOKIE BANNER ===== */

#cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  max-width: 320px;
  z-index: 190;
}

.cookie-box {
  background: #1c2620;
  color: #f3f4f6;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 13px;
  box-shadow: 0 16px 34px rgba(24, 32, 27, 0.7);
}

.cookie-box button {
  margin-top: 8px;
  width: 100%;
  padding: 8px 0;
  border-radius: 999px;
  border: none;
  background: #e4d0b6;
  color: #1c2620;
  font-weight: 600;
  cursor: pointer;
}

/* ===== ANIMATIONS ===== */

@keyframes sv2Float {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10px);
  }
}

/* Scroll reveal */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 960px) {
  .sv2-hero-inner {
    grid-template-columns: 1fr;
  }

  .sv2-hero-media {
    align-items: flex-start;
  }

  .sv2-hero-circle {
    width: 220px;
    height: 220px;
  }

  .sv2-timeline-wrap {
    grid-template-columns: 1fr;
  }

  .sv2-services-layout,
  .sv2-contact-layout,
  .sv2-about-layout {
    grid-template-columns: 1fr;
  }

  .sv2-directions-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sv2-location-inner,
  .sv2-contact-invite-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 780px) {
  .sv2-nav {
    display: none;
  }

  .sv2-header-contact {
    display: none;
  }

  .sv2-menu-btn {
    display: flex;
  }

  .sv2-grid-3,
  .sv2-directions-grid {
    grid-template-columns: 1fr;
  }

  #cookie-banner {
    right: 12px;
    left: 12px;
    max-width: none;
  }
}
