:root{
  --bg: #ece7dc;
  --topbar: #f7f4ed;
  --sidebar: #f8f5ef;
  --white: #ffffff;
  --text: #3f4a41;
  --muted: #727b72;
  --sage-dark: #8A9272;
  --sage: #7D8668;
  --sage-soft: #F0F1E8;
  --border: rgba(63, 74, 65, 0.10);
  --border-soft: rgba(63, 74, 65, 0.07);
  --shadow-soft: 0 16px 40px rgba(0,0,0,.07);
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Quicksand', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height:100vh;
}


img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul { list-style: none; }
a { text-decoration: none; }
section { overflow-x: hidden; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
}

/* =========================================================
   KEYFRAMES
========================================================= */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(38px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroZoomSoft {
  from {
    opacity: 0;
    transform: scale(1.04);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeLeftSoft {
  from {
    opacity: 0;
    transform: translateX(-42px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRightSoft {
  from {
    opacity: 0;
    transform: translateX(42px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* =========================================================
   HERO ANIMATION
========================================================= */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-center > * {
  opacity: 0;
}

body.is-ready .hero-eyebrow {
  animation: heroFadeUp 0.8s ease 0.12s forwards;
}

body.is-ready .hero-title {
  animation: heroFadeUp 1s ease 0.32s forwards;
}

body.is-ready .hero-sub {
  animation: heroFadeUp 1s ease 0.56s forwards;
}

body.is-ready .hero-actions {
  animation: heroFadeUp 1s ease 0.8s forwards;
}

/* =========================================================
   SCROLL REVEAL
========================================================= */
.scroll-animate {
  opacity: 0;
  transition: opacity 0.9s ease, transform 0.9s ease;
  will-change: opacity, transform;
}

.fade-up {
  transform: translateY(42px);
}

.fade-left {
  transform: translateX(-42px);
}

.fade-right {
  transform: translateX(42px);
}

.scale-up {
  transform: scale(0.96);
}

.scroll-animate.active {
  opacity: 1;
}

.scroll-animate.active.fade-up {
  transform: translateY(0);
}

.scroll-animate.active.fade-left {
  transform: translateX(0);
}

.scroll-animate.active.fade-right {
  transform: translateX(0);
}

.scroll-animate.active.scale-up {
  transform: scale(1);
}

/* =========================================================
   SIDEBAR SCROLLBAR
========================================================= */
.sidebar {
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(116, 140, 116, 0.8) rgba(255, 255, 255, 0.08);
}

.sidebar::-webkit-scrollbar {
  width: 8px;
}

.sidebar::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
}

.sidebar::-webkit-scrollbar-thumb {
  background: rgba(116, 140, 116, 0.82);
  border-radius: 12px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
  background: rgba(116, 140, 116, 1);
}

.has-dropdown.open .dropdown-menu{
  display: flex;
}

.has-dropdown.open .dropdown-icon{
  transform: rotate(180deg);
}

/* =========================================================
   OPTIONAL: smoother navbar transition
========================================================= */
.top-bar {
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: .3px;
}

h1, h2 {
  font-weight: 700;
}

p {
  color: rgba(27, 24, 22, .72);
}

.sub {
  color: rgba(27, 24, 22, .62);
}

.sub.light {
  color: rgba(255, 255, 255, .72);
}

/* =========================
   TOP BAR
========================= */
.top-bar{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 86px;
  background: var(--topbar);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.nav-left{
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  display:flex;
  align-items:center;
  padding-left: 34px;
}

.hamburger{
  width: 34px;
  height: 34px;
  border: none;
  background: transparent;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap: 6px;
  cursor:pointer;
}

.hamburger span{
  display:block;
  width: 28px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

.nav-mid{
  width: 100%;
  height: 100%;
}

.nav-mid-grid{
  width: 100%;
  height: 100%;
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  align-items:center;
  column-gap: 44px;
}

.nav-links{
  list-style:none;
  display:flex;
  align-items:center;
  gap: 84px;
}

.nav-links-left{
  justify-content:flex-end;
  padding-left: 0;
  padding-right: 70px;
}

.nav-links-right{
  justify-content:flex-start;
  padding-right: 0;
  padding-left: 70px;
}

.nav-links li{
  position: relative;
}

.nav-links a,
.nav-dd-toggle{
  text-decoration:none;
  border:none;
  background:transparent;
  color: var(--text);
  font-family:'Quicksand', sans-serif;
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor:pointer;
  transition: .25s ease;
}

.nav-links a:hover,
.nav-dd-toggle:hover{
  color: var(--sage-dark);
}

.nav-links a.active{
  background: #748C74;
  color: #fff;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(116, 140, 116, 0.18);
}

.logo{
  display:flex;
  align-items:center;
  justify-content:center;
}

.logo a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
}

.logo img{
  height: 42px;
  width: auto;
  object-fit: contain;
  display:block;
}

.nav-dd{
  position: relative;
}

.nav-dd-toggle{
  display:flex;
  align-items:center;
  gap: 8px;
}

.nav-dd-toggle i{
  font-size: .72rem;
  transition: transform .25s ease;
}

.nav-dd-toggle.open i{
  transform: rotate(180deg);
}

.nav-dd-menu{
  position:absolute;
  top: calc(100% + 18px);
  left: 0;
  min-width: 210px;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  padding: 8px;
  display:none;
  flex-direction:column;
  gap: 2px;
}

.nav-dd-menu.show{
  display:flex;
}

.nav-dd-menu a{
  display:block;
  width:100%;
  padding: 11px 12px;
  border-radius: 10px;
  text-decoration:none;
  color: var(--text);
  font-family:'Quicksand', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform:none;
}

.nav-dd-menu a:hover{
  background: var(--sage-soft);
  color: var(--sage-dark);
}

/* =========================
   OVERLAY
========================= */
.overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.20);
  opacity:0;
  visibility:hidden;
  transition:.3s ease;
  z-index:1090;
}

.overlay.active{
  opacity:1;
  visibility:visible;
}

/* =========================
   SIDEBAR
========================= */
.sidebar{
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  height: 100vh;
  background: var(--sidebar);
  box-shadow: var(--shadow-soft);
  z-index:1100;
  transition:left .35s ease;
  padding: 24px 18px 18px 24px;
  display:flex;
  flex-direction:column;
  overflow-y:auto;
}

.sidebar.active{
  left:0;
}

.sidebar-header{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap: 12px;
  margin-bottom: 38px;
}

.s-eyebrow{
  display:block;
  font-family:'Quicksand', sans-serif;
  font-size:.76rem;
  font-weight:600;
  letter-spacing:.18em;
  text-transform:uppercase;
  color: var(--muted);
  margin-bottom:6px;
}

.s-brand{
  font-family:'Cormorant Garamond', serif;
  font-size: 1.35rem;
  line-height:1.08;
  color: var(--sage-dark);
  max-width: 165px;
}

.close-sidebar{
  width:42px;
  height:42px;
  border-radius:50%;
  border:1px solid var(--border);
  background:transparent;
  color:var(--text);
  cursor:pointer;
  font-size:.95rem;
  flex-shrink:0;
}

.sidebar-links{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap: 8px;
  margin-bottom: 18px;
  padding-left: 2px;
}

.sidebar-links > li > a,
.sidebar-links .dropdown-toggle{
  width:100%;
  min-height: 46px;
  padding: 12px 14px;
  border-radius: 13px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  text-decoration:none;
  color: var(--text);
  border:none;
  background:transparent;
  cursor:pointer;
  font-size: 0.95rem;
  font-weight:600;
  font-family:'Quicksand', sans-serif;
  transition:.25s ease;
}

.sidebar-links > li > a .link-left,
.sidebar-links .dropdown-toggle .link-left{
  display:flex;
  align-items:center;
  gap: 12px;
}

.sidebar-links > li > a i:first-child,
.sidebar-links .dropdown-toggle .link-left i{
  width: 18px;
  min-width: 18px;
  text-align:center;
  font-size: 0.92rem;
}

.sidebar-links > li > a span:last-child,
.sidebar-links .dropdown-toggle .link-left span:last-child{
  line-height: 1;
}

.sidebar-links > li > a:hover,
.sidebar-links .dropdown-toggle:hover{
  background: #edf1eb;
}

.sidebar-links > li > a.active{
  background: var(--sage-dark);
  color:#fff;
  font-weight:700;
}

.sidebar-links > li > a.active i{
  color:#fff;
}
.sidebar-links > li > a,
.sidebar-links .dropdown-toggle{
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.dropdown-menu li a{
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.has-dropdown .dropdown-toggle{
  position:relative;
}

.dropdown-icon{
  font-size:.7rem;
  transition: transform .25s ease;
  margin-left: 10px;
}

.dropdown-toggle.open .dropdown-icon{
  transform: rotate(180deg);
}

.dropdown-menu{
  list-style:none;
  display:none;
  flex-direction:column;
  gap: 3px;
  padding-left: 18px;
  margin-top: 2px;
  margin-bottom: 2px;
}

.dropdown-menu.show{
  display:flex;
}

.dropdown-menu li a{
  display:block;
  text-decoration:none;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 10px;
  transition:.25s ease;
  font-size:.9rem;
  font-family:'Quicksand', sans-serif;
  font-weight:500;
}

.dropdown-menu li a:hover{
  background:#edf1eb;
  color: var(--sage-dark);
}

/* =========================
   SIDEBAR HELP
========================= */
.sidebar-help{
  margin-top:auto;
  background: linear-gradient(180deg, #eef2ec 0%, #efe8dc 100%);
  border: 1px solid #dde3db;
  border-radius: 18px;
  padding: 16px;
  margin-bottom: 2px;
}

.help-icon{
  width:42px;
  height:42px;
  border-radius:12px;
  background: var(--sage-dark);
  color:#fff;
  display:grid;
  place-items:center;
  margin-bottom:12px;
  font-size:.9rem;
}

.help-title{
  font-family:'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--sage-dark);
  margin-bottom:6px;
}

.help-sub{
  color: var(--muted);
  line-height:1.5;
  margin-bottom:12px;
  font-size:.88rem;
  font-family:'Quicksand', sans-serif;
}

.help-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  text-decoration:none;
  background: var(--sage-dark);
  color:#fff;
  padding: 9px 14px;
  border-radius:999px;
  font-weight:700;
  font-size: 0.86rem;
  font-family:'Quicksand', sans-serif;
  transition:.25s ease;
}

.help-btn:hover{
  background: var(--sage);
}

/* =========================
   MAIN
========================= */
main{
  min-height:100vh;
  padding-top:86px;
}

/* =========================
   RESPONSIVE
========================= */

/* 1024px and below */
@media (max-width: 1024px){
  .top-bar{
    height: 82px;
  }

  .nav-left{
    padding-left: 24px;
  }

  .nav-mid-grid{
    column-gap: 24px;
  }

  .nav-links{
    gap: 42px;
  }

  .nav-links-left{
    padding-right: 40px;
  }

  .nav-links-right{
    padding-left: 40px;
  }

  .nav-links a,
  .nav-dd-toggle{
    font-size: 0.92rem;
    letter-spacing: 0.06em;
  }

  .logo img{
    height: 38px;
  }

  main{
    padding-top: 82px;
  }
}

/* 900px and below */
@media (max-width: 900px){
  .nav-links-left,
  .nav-links-right{
    display: none;
  }

  .nav-mid-grid{
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .logo{
    justify-content: center;
  }

  .logo img{
    height: 36px;
  }

  .top-bar{
    height: 78px;
  }

  .nav-left{
    padding-left: 22px;
    z-index: 2;
  }

  main{
    padding-top: 78px;
  }

  .sidebar{
    width: 320px;
    left: -340px;
  }

  .sidebar.active{
    left: 0;
  }
}

/* 600px and below */
@media (max-width: 600px){
  .top-bar{
    height: 74px;
  }

  .nav-left{
    padding-left: 18px;
  }

  .hamburger{
    width: 32px;
    height: 32px;
    gap: 5px;
  }

  .hamburger span{
    width: 24px;
  }

  .logo img{
    height: 32px;
    max-width: 150px;
  }

  main{
    padding-top: 74px;
  }

  .sidebar{
    width: 86%;
    left: -100%;
    padding: 22px 16px 16px 18px;
  }

  .sidebar-header{
    margin-bottom: 28px;
  }

  .s-brand{
    font-size: 1.22rem;
    max-width: 150px;
  }

  .sidebar-links > li > a,
  .sidebar-links .dropdown-toggle{
    min-height: 44px;
    padding: 11px 12px;
    font-size: 0.88rem;
  }

  .dropdown-menu{
    padding-left: 12px;
  }

  .dropdown-menu li a{
    font-size: 0.84rem;
    padding: 8px 10px;
  }

  .sidebar-help{
    padding: 14px;
    border-radius: 16px;
  }

  .help-title{
    font-size: 1.08rem;
  }

  .help-sub{
    font-size: 0.84rem;
  }

  .help-btn{
    width: 100%;
    justify-content: center;
    font-size: 0.82rem;
    padding: 10px 12px;
  }
}

/* 420px and below */
@media (max-width: 420px){
  .top-bar{
    height: 70px;
  }

  .nav-left{
    padding-left: 14px;
  }

  .hamburger{
    width: 30px;
    height: 30px;
  }

  .hamburger span{
    width: 22px;
    height: 2px;
  }

  .logo img{
    height: 29px;
    max-width: 130px;
  }

  main{
    padding-top: 70px;
  }

  .sidebar{
    width: 90%;
    padding: 20px 14px 14px 16px;
  }

  .close-sidebar{
    width: 38px;
    height: 38px;
    font-size: 0.88rem;
  }

  .s-eyebrow{
    font-size: 0.7rem;
    letter-spacing: 0.14em;
  }

  .s-brand{
    font-size: 1.1rem;
    max-width: 135px;
  }

  .sidebar-links{
    gap: 6px;
    padding-left: 0;
  }

  .sidebar-links > li > a,
  .sidebar-links .dropdown-toggle{
    min-height: 42px;
    padding: 10px 11px;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
  }

  .sidebar-links > li > a .link-left,
  .sidebar-links .dropdown-toggle .link-left{
    gap: 10px;
  }

  .sidebar-links > li > a i:first-child,
  .sidebar-links .dropdown-toggle .link-left i{
    width: 16px;
    min-width: 16px;
    font-size: 0.82rem;
  }

  .dropdown-icon{
    font-size: 0.62rem;
    margin-left: 6px;
  }

  .dropdown-menu li a{
    font-size: 0.8rem;
    padding: 7px 9px;
  }

  .sidebar-help{
    padding: 12px;
  }

  .help-icon{
    width: 38px;
    height: 38px;
    border-radius: 10px;
    margin-bottom: 10px;
  }

  .help-title{
    font-size: 1rem;
  }

  .help-sub{
    font-size: 0.8rem;
    line-height: 1.45;
  }

  .help-btn{
    font-size: 0.78rem;
    padding: 9px 10px;
  }
}

/* 360px and below */
@media (max-width: 360px){
  .top-bar{
    height: 68px;
  }

  .nav-left{
    padding-left: 12px;
  }

  .hamburger{
    width: 28px;
    height: 28px;
    gap: 4px;
  }

  .hamburger span{
    width: 20px;
  }

  .logo img{
    height: 26px;
    max-width: 118px;
  }

  main{
    padding-top: 68px;
  }

  .sidebar{
    width: 92%;
    padding: 18px 12px 12px 14px;
  }

  .sidebar-header{
    margin-bottom: 22px;
  }

  .s-eyebrow{
    font-size: 0.66rem;
  }

  .s-brand{
    font-size: 1rem;
    max-width: 120px;
  }

  .close-sidebar{
    width: 36px;
    height: 36px;
  }

  .sidebar-links > li > a,
  .sidebar-links .dropdown-toggle{
    min-height: 40px;
    padding: 9px 10px;
    font-size: 0.76rem;
    letter-spacing: 0.05em;
    border-radius: 11px;
  }

  .dropdown-menu{
    padding-left: 8px;
  }

  .dropdown-menu li a{
    font-size: 0.76rem;
    padding: 6px 8px;
  }

  .sidebar-help{
    padding: 10px;
    border-radius: 14px;
  }

  .help-icon{
    width: 34px;
    height: 34px;
    font-size: 0.8rem;
  }

  .help-title{
    font-size: 0.94rem;
  }

  .help-sub{
    font-size: 0.76rem;
  }

  .help-btn{
    font-size: 0.74rem;
    padding: 8px 10px;
    gap: 6px;
  }
}

/* =====================================================
   HERO SECTION
===================================================== */
.hero{
  position: relative;
  margin-top: 86px;
  min-height: calc(100vh - 86px);
  width: 100%;
  background: url("../images/hero.jpg") center center / cover no-repeat;
  overflow: hidden;
}

.hero-overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(22, 22, 25, 0.22) 0%, rgba(22, 25, 22, 0.14) 26%, rgba(22, 25, 22, 0.06) 48%, rgba(22, 25, 22, 0.10) 100%),
    linear-gradient(180deg, rgba(31, 34, 36, 0.18) 0%, rgba(31, 36, 31, 0.20) 30%, rgba(31, 36, 31, 0.30) 100%),
    linear-gradient(135deg, rgba(116, 119, 140, 0.1) 0%, rgba(244, 238, 226, 0.03) 42%, rgba(116, 140, 116, 0.07) 100%);
}

.hero-center{
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 86px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 70px 20px 82px;
  max-width: 920px;
  margin: 0 auto;
}

.hero-eyebrow{
  display: inline-block;
  font-family: 'Quicksand', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.98);
  margin-bottom: 18px;
  text-shadow: 0 2px 10px rgba(0,0,0,.22);
}

.hero-title{
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5.4vw, 4.5rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0.01em;
  color: #fffdf9;
  margin-bottom: 16px;
  text-shadow: 0 10px 28px rgba(0,0,0,.24);
}

.hero-sub{
  max-width: 700px;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.8;
  color: rgba(255,255,255,0.96);
  margin-bottom: 26px;
  text-shadow: 0 4px 16px rgba(0,0,0,.22);
}

.hero-title .accent{
  color: #E6F0E4;
}

.hero-actions{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* BUTTONS */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: all .25s ease;
  text-decoration: none;
}


.btn-sage{
  background: #748C74;
  color: #ffffff;
  border: none;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}

.btn-sage:hover{
  background: #698169;
  transform: translateY(-2px);
}

.btn-ghost{
  background: rgba(255,255,255,0.18);
  color: #ffffff;
  border: none;
  box-shadow: 0 8px 20px rgba(0,0,0,.10);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.btn-ghost:hover{
  background: rgba(255,255,255,0.20);
  transform: translateY(-2px);
}

/* =====================================================
   HERO RESPONSIVE
===================================================== */

/* 1024px and below */
@media (max-width: 1024px){
  .hero{
    margin-top: 82px;
    min-height: calc(92vh - 82px);
    background-position: center center;
  }

  .hero-center{
    min-height: calc(92vh - 82px);
    max-width: 820px;
    padding: 84px 28px 64px;
  }

  .hero-eyebrow{
    font-size: 10px;
    letter-spacing: .22em;
    margin-bottom: 16px;
  }

  .hero-title{
    font-size: clamp(2.6rem, 5.4vw, 4rem);
    margin-bottom: 14px;
  }

  .hero-sub{
    max-width: 640px;
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 24px;
  }

  .btn{
    height: 46px;
    padding: 0 20px;
    font-size: 0.82rem;
  }
}

/* 900px and below */
@media (max-width: 900px){
  .hero{
    margin-top: 78px;
    min-height: calc(90vh - 78px);
    background-position: center center;
  }

  .hero-center{
    min-height: calc(90vh - 78px);
    max-width: 720px;
    padding: 78px 24px 58px;
  }

  .hero-eyebrow{
    font-size: 10px;
    letter-spacing: .2em;
    margin-bottom: 15px;
  }

  .hero-title{
    font-size: clamp(2.35rem, 6.5vw, 3.6rem);
    line-height: 1.04;
    margin-bottom: 14px;
  }

  .hero-sub{
    max-width: 560px;
    font-size: 0.93rem;
    line-height: 1.72;
    margin-bottom: 22px;
  }

  .hero-actions{
    gap: 12px;
  }

  .btn{
    height: 45px;
    padding: 0 18px;
    font-size: 0.8rem;
    letter-spacing: .1em;
  }
}

/* 600px and below */
@media (max-width: 600px){
  .hero{
    margin-top: 74px;
    min-height: calc(86svh - 74px);
    background-position: center center;
  }

  .hero-center{
    min-height: calc(86svh - 74px);
    padding: 70px 18px 50px;
    max-width: 100%;
  }

  .hero-eyebrow{
    font-size: 9px;
    letter-spacing: .17em;
    margin-bottom: 13px;
  }

  .hero-title{
    font-size: clamp(2.1rem, 10vw, 3.2rem);
    line-height: 1.04;
    margin-bottom: 12px;
  }

  .hero-sub{
    max-width: 35ch;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 22px;
  }

  .hero-actions{
    gap: 10px;
  }

  .btn{
    height: 44px;
    padding: 0 17px;
    font-size: 0.77rem;
    letter-spacing: .09em;
  }
}

/* 420px and below */
@media (max-width: 420px){
  .hero{
    margin-top: 70px;
    min-height: calc(84svh - 70px);
    background-position: center center;
  }

  .hero-center{
    min-height: calc(84svh - 70px);
    padding: 62px 16px 44px;
  }

  .hero-eyebrow{
    font-size: 8.5px;
    letter-spacing: .14em;
    margin-bottom: 12px;
  }

  .hero-title{
    font-size: clamp(1.9rem, 10.5vw, 2.8rem);
    line-height: 1.06;
    margin-bottom: 12px;
  }

  .hero-sub{
    max-width: 31ch;
    font-size: 0.84rem;
    line-height: 1.65;
    margin-bottom: 20px;
  }

  .hero-actions{
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .btn{
    width: 100%;
    max-width: 260px;
    height: 43px;
    padding: 0 16px;
    font-size: 0.74rem;
    letter-spacing: .08em;
  }
}

/* 360px and below */
@media (max-width: 360px){
  .hero{
    margin-top: 68px;
    min-height: calc(82svh - 68px);
    background-position: center center;
  }

  .hero-center{
    min-height: calc(82svh - 68px);
    padding: 56px 14px 38px;
  }

  .hero-eyebrow{
    font-size: 8px;
    letter-spacing: .12em;
    margin-bottom: 10px;
  }

  .hero-title{
    font-size: clamp(1.7rem, 10vw, 2.35rem);
    line-height: 1.08;
    margin-bottom: 10px;
  }

  .hero-sub{
    max-width: 29ch;
    font-size: 0.79rem;
    line-height: 1.58;
    margin-bottom: 18px;
  }

  .hero-actions{
    width: 100%;
    gap: 8px;
  }

  .btn{
    width: 100%;
    max-width: 230px;
    height: 41px;
    padding: 0 14px;
    font-size: 0.7rem;
    letter-spacing: .07em;
  }
}
/* =====================================================
   ABOUT SECTION
===================================================== */
.about{
  background: #F8F5EE;
  padding: 130px 0;
  border-top: 1px solid rgba(39, 39, 39, 0.06);
}

.about-grid-simple{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-frame{
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(39, 39, 39, 0.08);
  background: #ffffff;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.about-frame img{
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-text{
  max-width: 560px;
}

.about-text .eyebrow{
  display: inline-block;
  font-family: 'Quicksand', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(116, 140, 116, 0.95);
  margin-bottom: 14px;
}

.about-text h2{
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.15rem, 3.6vw, 3rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0.01em;
  color: #2B2B2B;
  margin: 0 0 20px;
}

.about-text h2 span{
  display: block;
}

.about-text p{
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.9;
  color: rgba(43, 43, 43, 0.72);
  margin: 0 0 14px;
  max-width: 520px;
}

.about-text p:last-child{
  margin-bottom: 0;
}

/* =====================================================
   ABOUT RESPONSIVE
===================================================== */

/* 1024px and below */
@media (max-width: 1024px){
  .about{
    padding: 108px 0;
  }

  .about-grid-simple{
    gap: 42px;
    align-items: center;
  }

  .about-frame{
    border-radius: 24px;
  }

  .about-frame img{
    height: 380px;
  }

  .about-text{
    max-width: 100%;
  }

  .about-text .eyebrow{
    font-size: 10px;
    margin-bottom: 12px;
  }

  .about-text h2{
    font-size: clamp(2.2rem, 4vw, 2.9rem);
    margin: 0 0 18px;
  }

  .about-text p{
    font-size: 0.97rem;
    line-height: 1.82;
    max-width: 100%;
  }
}

/* 900px and below */
@media (max-width: 900px){
  .about{
    padding: 88px 0;
  }

  .about-grid-simple{
    grid-template-columns: 0.98fr 1.02fr;
    gap: 28px;
    align-items: center;
  }

  .about-frame{
    border-radius: 22px;
  }

  .about-frame img{
    height: 320px;
  }

  .about-text .eyebrow{
    font-size: 10px;
    letter-spacing: .2em;
    margin-bottom: 10px;
  }

  .about-text h2{
    font-size: clamp(2rem, 4.8vw, 2.55rem);
    line-height: 1.08;
    margin: 0 0 14px;
  }

  .about-text p{
    font-size: 0.94rem;
    line-height: 1.75;
    margin: 0 0 10px;
  }
}

/* 600px and below */
@media (max-width: 600px){
  .about{
    padding: 66px 0;
  }

  .about-grid-simple{
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
  }

  .about-text{
    order: 1;
    max-width: 100%;
  }

  .about-media{
    order: 2;
  }

  .about-text .eyebrow{
    font-size: 9px;
    letter-spacing: .18em;
    margin-bottom: 10px;
  }

  .about-text h2{
    font-size: clamp(1.95rem, 8vw, 2.55rem);
    line-height: 1.08;
    margin: 0 0 12px;
  }

  .about-text h2 span{
    display: inline;
  }

  .about-text h2 span + span::before{
    content: " ";
  }

  .about-text p{
    font-size: 0.9rem;
    line-height: 1.72;
    margin: 0 0 11px;
  }

  .about-frame{
    border-radius: 20px;
  }

  .about-frame img{
    height: 280px;
  }
}

/* 420px and below */
@media (max-width: 420px){
  .about{
    padding: 58px 0;
  }

  .about-grid-simple{
    gap: 16px;
  }

  .about-text .eyebrow{
    font-size: 8.5px;
    letter-spacing: .15em;
    margin-bottom: 9px;
  }

  .about-text h2{
    font-size: clamp(1.75rem, 8.6vw, 2.2rem);
    line-height: 1.1;
    margin: 0 0 10px;
  }

  .about-text p{
    font-size: 0.84rem;
    line-height: 1.65;
    margin: 0 0 10px;
  }

  .about-frame{
    border-radius: 18px;
  }

  .about-frame img{
    height: 240px;
  }
}

/* 360px and below */
@media (max-width: 360px){
  .about{
    padding: 50px 0;
  }

  .about-grid-simple{
    gap: 14px;
  }

  .about-text .eyebrow{
    font-size: 8px;
    letter-spacing: .13em;
    margin-bottom: 8px;
  }

  .about-text h2{
    font-size: clamp(1.6rem, 8.8vw, 1.95rem);
    line-height: 1.12;
    margin: 0 0 10px;
  }

  .about-text p{
    font-size: 0.79rem;
    line-height: 1.58;
    margin: 0 0 9px;
  }

  .about-frame{
    border-radius: 16px;
  }

  .about-frame img{
    height: 210px;
  }
}

/* =====================================================
   SERVICES SECTION
===================================================== */
.services{
  background: #ffffff;
  padding: 130px 0;
  border-top: 1px solid rgba(39, 39, 39, 0.06);
}

.services-heading{
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

.services-heading .eyebrow{
  display: inline-block;
  font-family: 'Quicksand', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(116, 140, 116, 0.95);
  margin-bottom: 14px;
}

.services-heading h2{
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.1rem, 3.2vw, 3rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: 0.01em;
  color: #2B2B2B;
  margin: 0 0 18px;
}

.services-heading h2 span{
  display: block;
}

.services-heading p{
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.9;
  color: rgba(43, 43, 43, 0.72);
  max-width: 620px;
  margin: 0 auto;
}

.services-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card{
  position: relative;
  background: #F8F5EE;
  border: 1px solid rgba(39, 39, 39, 0.07);
  border-radius: 24px;
  padding: 28px 24px 24px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.05);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.service-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.08);
  border-color: rgba(116, 140, 116, 0.18);
}

.service-number{
  font-family: 'Quicksand', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(116, 140, 116, 0.95);
  margin-bottom: 18px;
}

.service-card h3{
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  font-weight: 600;
  line-height: 1.1;
  color: #2B2B2B;
  margin: 0 0 14px;
}

.service-card p{
  font-family: 'Quicksand', sans-serif;
  font-size: 0.97rem;
  font-weight: 500;
  line-height: 1.82;
  color: rgba(43, 43, 43, 0.72);
  margin: 0;
}

/* =====================================================
   SERVICES RESPONSIVE
===================================================== */

/* 1024px and below */
@media (max-width: 1024px){
  .services{
    padding: 108px 0;
  }

  .services-heading{
    max-width: 700px;
    margin: 0 auto 46px;
  }

  .services-heading .eyebrow{
    font-size: 10px;
    margin-bottom: 12px;
  }

  .services-heading h2{
    font-size: clamp(2.2rem, 4vw, 2.9rem);
    margin: 0 0 16px;
  }

  .services-heading p{
    font-size: 0.97rem;
    line-height: 1.8;
    max-width: 620px;
  }

  .services-grid{
    gap: 20px;
  }

  .service-card{
    padding: 28px 24px 24px;
    border-radius: 22px;
  }

  .service-number{
    min-width: 48px;
    height: 48px;
    font-size: 0.8rem;
    margin-bottom: 18px;
  }

  .service-card h3{
    font-size: 1.5rem;
    margin: 0 0 10px;
  }

  .service-card p{
    font-size: 0.92rem;
    line-height: 1.75;
  }
}

/* 900px and below */
@media (max-width: 900px){
  .services{
    padding: 88px 0;
  }

  .services-heading{
    max-width: 650px;
    margin: 0 auto 38px;
  }

  .services-heading .eyebrow{
    font-size: 10px;
    letter-spacing: .2em;
    margin-bottom: 10px;
  }

  .services-heading h2{
    font-size: clamp(2rem, 5vw, 2.5rem);
    line-height: 1.08;
    margin: 0 0 14px;
  }

  .services-heading p{
    font-size: 0.93rem;
    line-height: 1.72;
    max-width: 560px;
  }

  .services-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .service-card{
    padding: 24px 22px 22px;
    border-radius: 20px;
  }

  .service-number{
    min-width: 44px;
    height: 44px;
    font-size: 0.76rem;
    margin-bottom: 16px;
  }

  .service-card h3{
    font-size: 1.35rem;
    line-height: 1.14;
    margin: 0 0 10px;
  }

  .service-card p{
    font-size: 0.9rem;
    line-height: 1.68;
  }
}

/* 600px and below */
@media (max-width: 600px){
  .services{
    padding: 66px 0;
  }

  .services-heading{
    margin: 0 auto 28px;
  }

  .services-heading .eyebrow{
    font-size: 9px;
    letter-spacing: .18em;
    margin-bottom: 10px;
  }

  .services-heading h2{
    font-size: clamp(1.95rem, 8vw, 2.45rem);
    line-height: 1.08;
    margin: 0 0 12px;
  }

  .services-heading h2 span{
    display: inline;
  }

  .services-heading h2 span + span::before{
    content: " ";
  }

  .services-heading p{
    font-size: 0.9rem;
    line-height: 1.68;
    max-width: 100%;
  }

  .services-grid{
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card{
    padding: 22px 18px 18px;
    border-radius: 18px;
  }

  .service-number{
    min-width: 42px;
    height: 42px;
    font-size: 0.74rem;
    margin-bottom: 14px;
  }

  .service-card h3{
    font-size: 1.28rem;
    margin: 0 0 8px;
  }

  .service-card p{
    font-size: 0.88rem;
    line-height: 1.65;
  }
}

/* 420px and below */
@media (max-width: 420px){
  .services{
    padding: 58px 0;
  }

  .services-heading{
    margin: 0 auto 24px;
  }

  .services-heading .eyebrow{
    font-size: 8.5px;
    letter-spacing: .15em;
    margin-bottom: 8px;
  }

  .services-heading h2{
    font-size: clamp(1.75rem, 8.5vw, 2.1rem);
    line-height: 1.1;
    margin: 0 0 10px;
  }

  .services-heading p{
    font-size: 0.84rem;
    line-height: 1.62;
  }

  .service-card{
    padding: 20px 16px 16px;
    border-radius: 16px;
  }

  .service-number{
    min-width: 40px;
    height: 40px;
    font-size: 0.7rem;
    margin-bottom: 12px;
  }

  .service-card h3{
    font-size: 1.16rem;
    line-height: 1.15;
    margin: 0 0 8px;
  }

  .service-card p{
    font-size: 0.82rem;
    line-height: 1.58;
  }
}

/* 360px and below */
@media (max-width: 360px){
  .services{
    padding: 50px 0;
  }

  .services-heading{
    margin: 0 auto 20px;
  }

  .services-heading .eyebrow{
    font-size: 8px;
    letter-spacing: .13em;
    margin-bottom: 8px;
  }

  .services-heading h2{
    font-size: clamp(1.55rem, 8.8vw, 1.9rem);
    line-height: 1.12;
    margin: 0 0 9px;
  }

  .services-heading p{
    font-size: 0.79rem;
    line-height: 1.55;
  }

  .service-card{
    padding: 18px 14px 15px;
    border-radius: 15px;
  }

  .service-number{
    min-width: 36px;
    height: 36px;
    font-size: 0.66rem;
    margin-bottom: 10px;
  }

  .service-card h3{
    font-size: 1.05rem;
    margin: 0 0 7px;
  }

  .service-card p{
    font-size: 0.77rem;
    line-height: 1.52;
  }
}

/* =====================================================
   PACKAGE PREVIEW SECTION
===================================================== */
.package-preview{
  position: relative;
  padding: 140px 0 130px;
  background: url("../images/packages.jpg") center center / cover no-repeat;
  border-top: 1px solid rgba(27, 24, 22, .08);
  border-bottom: 1px solid rgba(27, 24, 22, .08);
  overflow: hidden;
}

.package-preview-overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 50% 22%, rgba(116, 140, 116, .16) 0%, rgba(0, 0, 0, 0) 55%),
    radial-gradient(1100px 680px at 50% 60%, rgba(0, 0, 0, .34) 0%, rgba(0, 0, 0, .70) 72%, rgba(0, 0, 0, .80) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .44) 45%, rgba(0, 0, 0, .82) 100%);
}

.package-preview .container{
  position: relative;
  z-index: 1;
}

.package-preview-head{
  text-align: left;
  max-width: none;
  margin: 0 0 28px;
  width: 100%;
}

.package-preview-head .eyebrow{
  color: rgba(220, 234, 216, .90);
}

.package-preview-head h2{
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 3.05rem;
  line-height: 1.05;
  letter-spacing: .01em;
  color: rgba(255, 255, 255, .96);
  margin: 10px 0 12px 0;
  text-shadow: 0 26px 80px rgba(0, 0, 0, .55);
  max-width: 760px;
}

.package-preview-head .sub.light{
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, .82);
  text-shadow: 0 16px 40px rgba(0, 0, 0, .35);
}

.package-preview-grid{
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}

.package-preview-card{
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: rgba(255, 255, 255, .92);
  min-height: 260px;
  padding: 22px 18px 20px;
  background: rgba(251, 247, 239, .09);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 24px;
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .28);
  transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.package-preview-card:hover{
  transform: translateY(-6px);
  background: rgba(251, 247, 239, .14);
  border-color: rgba(116, 140, 116, .40);
  box-shadow: 0 28px 90px rgba(0, 0, 0, .32);
}

.package-preview-icon{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(116, 140, 116, .20);
  border: 1px solid rgba(220, 234, 216, .22);
  color: rgba(236, 244, 232, .96);
  margin-bottom: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18);
}

.package-preview-card h3{
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  line-height: 1.1;
  margin-bottom: 10px;
  color: rgba(236, 244, 232, .96);
  letter-spacing: .01em;
}

.package-preview-card p{
  color: rgba(255, 255, 255, .76);
  line-height: 1.85;
  margin-bottom: 14px;
}

.package-preview-link{
  margin-top: auto;
  padding-top: 10px;
  color: rgba(255, 255, 255, .88);
}

.package-preview-card:hover .package-preview-link{
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-color: rgba(220, 234, 216, .55);
}

.package-preview-card:hover .package-preview-link i{
  transform: translateX(2px);
  transition: transform .2s ease;
}

.package-preview-card:focus-visible{
  outline: none;
  box-shadow: 0 0 0 6px rgba(116, 140, 116, .22), 0 28px 90px rgba(0, 0, 0, .32);
  border-color: rgba(220, 234, 216, .45);
}

/* =====================================================
   PACKAGE PREVIEW RESPONSIVE
===================================================== */

/* 1024px and below */
@media (max-width: 1024px){
  .package-preview{
    padding: 112px 0 106px;
    background-position: center 40%;
  }

  .package-preview-head{
    margin: 0 0 24px;
  }

  .package-preview-head .eyebrow{
    font-size: 10px;
    margin-bottom: 12px;
  }

  .package-preview-head h2{
    font-size: clamp(2.35rem, 4.6vw, 2.95rem);
    line-height: 1.08;
    margin: 8px 0 12px;
    max-width: 700px;
  }

  .package-preview-head .sub.light{
    max-width: 620px;
    font-size: 0.97rem;
    line-height: 1.8;
  }

  .package-preview-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 24px;
  }

  .package-preview-card{
    min-height: 238px;
    padding: 20px 16px 18px;
    border-radius: 22px;
  }

  .package-preview-icon{
    width: 44px;
    height: 44px;
    border-radius: 13px;
    margin-bottom: 10px;
  }

  .package-preview-card h3{
    font-size: 1.58rem;
    margin-bottom: 8px;
  }

  .package-preview-card p{
    font-size: 0.92rem;
    line-height: 1.75;
    margin-bottom: 12px;
  }
}

/* 900px and below */
@media (max-width: 900px){
  .package-preview{
    padding: 90px 0 86px;
    background-position: center 42%;
  }

  .package-preview-head{
    margin: 0 0 20px;
  }

  .package-preview-head .eyebrow{
    font-size: 10px;
    letter-spacing: .2em;
    margin-bottom: 10px;
  }

  .package-preview-head h2{
    font-size: clamp(2rem, 5vw, 2.5rem);
    line-height: 1.1;
    margin: 8px 0 10px;
    max-width: 620px;
  }

  .package-preview-head .sub.light{
    max-width: 560px;
    font-size: 0.93rem;
    line-height: 1.72;
  }

  .package-preview-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 20px;
  }

  .package-preview-card{
    min-height: 220px;
    padding: 18px 15px 17px;
    border-radius: 20px;
  }

  .package-preview-icon{
    width: 42px;
    height: 42px;
    border-radius: 12px;
    margin-bottom: 10px;
  }

  .package-preview-card h3{
    font-size: 1.42rem;
    margin-bottom: 8px;
  }

  .package-preview-card p{
    font-size: 0.88rem;
    line-height: 1.68;
    margin-bottom: 12px;
  }
}

/* 600px and below */
@media (max-width: 600px){
  .package-preview{
    padding: 68px 0 66px;
    background-position: center 44%;
  }

  .package-preview-head{
    text-align: left;
    margin: 0 0 18px;
  }

  .package-preview-head .eyebrow{
    font-size: 9px;
    letter-spacing: .18em;
    margin-bottom: 10px;
  }

  .package-preview-head h2{
    font-size: clamp(1.95rem, 8vw, 2.4rem);
    line-height: 1.1;
    margin: 8px 0 10px;
    max-width: 100%;
  }

  .package-preview-head .sub.light{
    max-width: 100%;
    font-size: 0.9rem;
    line-height: 1.68;
  }

  .package-preview-grid{
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 18px;
  }

  .package-preview-card{
    min-height: auto;
    padding: 18px 16px 17px;
    border-radius: 18px;
  }

  .package-preview-icon{
    width: 40px;
    height: 40px;
    border-radius: 12px;
    margin-bottom: 10px;
  }

  .package-preview-card h3{
    font-size: 1.32rem;
    margin-bottom: 8px;
  }

  .package-preview-card p{
    font-size: 0.86rem;
    line-height: 1.65;
    margin-bottom: 12px;
  }
}

/* 420px and below */
@media (max-width: 420px){
  .package-preview{
    padding: 58px 0 56px;
    background-position: center 45%;
  }

  .package-preview-head{
    margin: 0 0 16px;
  }

  .package-preview-head .eyebrow{
    font-size: 8.5px;
    letter-spacing: .15em;
    margin-bottom: 8px;
  }

  .package-preview-head h2{
    font-size: clamp(1.72rem, 8.6vw, 2.05rem);
    line-height: 1.12;
    margin: 6px 0 9px;
  }

  .package-preview-head .sub.light{
    font-size: 0.84rem;
    line-height: 1.6;
  }

  .package-preview-grid{
    gap: 12px;
    margin-top: 16px;
  }

  .package-preview-card{
    padding: 16px 14px 15px;
    border-radius: 16px;
  }

  .package-preview-icon{
    width: 38px;
    height: 38px;
    border-radius: 11px;
    margin-bottom: 9px;
  }

  .package-preview-card h3{
    font-size: 1.18rem;
    margin-bottom: 7px;
  }

  .package-preview-card p{
    font-size: 0.81rem;
    line-height: 1.56;
    margin-bottom: 10px;
  }

  .package-preview-link{
    padding-top: 8px;
    font-size: 0.82rem;
  }
}

/* 360px and below */
@media (max-width: 360px){
  .package-preview{
    padding: 50px 0 48px;
  }

  .package-preview-head{
    margin: 0 0 14px;
  }

  .package-preview-head .eyebrow{
    font-size: 8px;
    letter-spacing: .13em;
    margin-bottom: 8px;
  }

  .package-preview-head h2{
    font-size: clamp(1.52rem, 8.8vw, 1.85rem);
    line-height: 1.14;
    margin: 6px 0 8px;
  }

  .package-preview-head .sub.light{
    font-size: 0.79rem;
    line-height: 1.55;
  }

  .package-preview-grid{
    gap: 10px;
    margin-top: 14px;
  }

  .package-preview-card{
    padding: 14px 12px 14px;
    border-radius: 15px;
  }

  .package-preview-icon{
    width: 36px;
    height: 36px;
    border-radius: 10px;
    margin-bottom: 8px;
  }

  .package-preview-card h3{
    font-size: 1.05rem;
    margin-bottom: 6px;
  }

  .package-preview-card p{
    font-size: 0.77rem;
    line-height: 1.5;
    margin-bottom: 9px;
  }

  .package-preview-link{
    padding-top: 6px;
    font-size: 0.78rem;
  }
}

/* =====================================================
   WHY CHOOSE US
===================================================== */
.why-us{
  background: #F8F5EE;
  padding: 130px 0;
  border-top: 1px solid rgba(39, 39, 39, 0.06);
}

.why-us-head{
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}

.why-us-head .eyebrow{
  display: inline-block;
  font-family: 'Quicksand', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(116, 140, 116, 0.95);
  margin-bottom: 14px;
}

.why-us-head h2{
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.1rem, 3.2vw, 3rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: 0.01em;
  color: #2B2B2B;
  margin: 0 0 18px;
}

.why-us-head h2 span{
  display: block;
}

.why-us-head p{
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.9;
  color: rgba(43, 43, 43, 0.72);
  max-width: 640px;
  margin: 0 auto;
}

/* =====================================================
   WHY GRID
===================================================== */
.why-us-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.why-card{
  background: #ffffff;
  border: 1px solid rgba(39, 39, 39, 0.07);
  border-radius: 24px;
  padding: 26px 22px 22px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.05);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.why-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.08);
  border-color: rgba(116, 140, 116, 0.18);
}

.why-icon{
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(116, 140, 116, 0.10);
  border: 1px solid rgba(116, 140, 116, 0.14);
  color: rgba(116, 140, 116, 0.96);
  margin-bottom: 14px;
  font-size: 1rem;
}

.why-card h3{
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  font-weight: 600;
  line-height: 1.1;
  color: #2B2B2B;
  margin: 0 0 12px;
}

.why-card p{
  font-family: 'Quicksand', sans-serif;
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.82;
  color: rgba(43, 43, 43, 0.72);
  margin: 0;
}

/* =====================================================
   WHY RESPONSIVE
===================================================== */

/* 1024px and below */
@media (max-width: 1024px){
  .why-us{
    padding: 108px 0;
  }

  .why-us-head{
    max-width: 700px;
    margin: 0 auto 42px;
  }

  .why-us-head .eyebrow{
    font-size: 10px;
    margin-bottom: 12px;
  }

  .why-us-head h2{
    font-size: clamp(2.05rem, 4vw, 2.75rem);
    margin: 0 0 16px;
  }

  .why-us-head p{
    max-width: 610px;
    font-size: 0.97rem;
    line-height: 1.8;
  }

  .why-us-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .why-card{
    padding: 24px 20px 20px;
    border-radius: 22px;
  }

  .why-icon{
    width: 46px;
    height: 46px;
    border-radius: 15px;
    margin-bottom: 12px;
    font-size: 0.95rem;
  }

  .why-card h3{
    font-size: 1.52rem;
    margin: 0 0 10px;
  }

  .why-card p{
    font-size: 0.92rem;
    line-height: 1.75;
  }
}

/* 900px and below */
@media (max-width: 900px){
  .why-us{
    padding: 88px 0;
  }

  .why-us-head{
    max-width: 650px;
    margin: 0 auto 34px;
  }

  .why-us-head .eyebrow{
    font-size: 10px;
    letter-spacing: .2em;
    margin-bottom: 10px;
  }

  .why-us-head h2{
    font-size: clamp(1.95rem, 5vw, 2.45rem);
    line-height: 1.08;
    margin: 0 0 14px;
  }

  .why-us-head p{
    max-width: 560px;
    font-size: 0.93rem;
    line-height: 1.72;
  }

  .why-us-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .why-card{
    padding: 22px 18px 18px;
    border-radius: 20px;
  }

  .why-icon{
    width: 42px;
    height: 42px;
    border-radius: 13px;
    margin-bottom: 10px;
    font-size: 0.9rem;
  }

  .why-card h3{
    font-size: 1.35rem;
    line-height: 1.12;
    margin: 0 0 8px;
  }

  .why-card p{
    font-size: 0.88rem;
    line-height: 1.66;
  }
}

/* 600px and below */
@media (max-width: 600px){
  .why-us{
    padding: 66px 0;
  }

  .why-us-head{
    margin: 0 auto 26px;
  }

  .why-us-head .eyebrow{
    font-size: 9px;
    letter-spacing: .18em;
    margin-bottom: 10px;
  }

  .why-us-head h2{
    font-size: clamp(1.9rem, 8vw, 2.35rem);
    line-height: 1.08;
    margin: 0 0 12px;
  }

  .why-us-head h2 span{
    display: inline;
  }

  .why-us-head h2 span + span::before{
    content: " ";
  }

  .why-us-head p{
    max-width: 100%;
    font-size: 0.9rem;
    line-height: 1.68;
  }

  .why-us-grid{
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .why-card{
    padding: 20px 16px 16px;
    border-radius: 18px;
  }

  .why-icon{
    width: 40px;
    height: 40px;
    border-radius: 12px;
    margin-bottom: 10px;
    font-size: 0.84rem;
  }

  .why-card h3{
    font-size: 1.24rem;
    margin: 0 0 8px;
  }

  .why-card p{
    font-size: 0.86rem;
    line-height: 1.63;
  }
}

/* 420px and below */
@media (max-width: 420px){
  .why-us{
    padding: 58px 0;
  }

  .why-us-head{
    margin: 0 auto 22px;
  }

  .why-us-head .eyebrow{
    font-size: 8.5px;
    letter-spacing: .15em;
    margin-bottom: 8px;
  }

  .why-us-head h2{
    font-size: clamp(1.72rem, 8.5vw, 2.05rem);
    line-height: 1.1;
    margin: 0 0 10px;
  }

  .why-us-head p{
    font-size: 0.84rem;
    line-height: 1.6;
  }

  .why-card{
    padding: 18px 14px 14px;
    border-radius: 16px;
  }

  .why-icon{
    width: 38px;
    height: 38px;
    border-radius: 11px;
    margin-bottom: 9px;
    font-size: 0.8rem;
  }

  .why-card h3{
    font-size: 1.12rem;
    margin: 0 0 7px;
  }

  .why-card p{
    font-size: 0.81rem;
    line-height: 1.56;
  }
}

/* 360px and below */
@media (max-width: 360px){
  .why-us{
    padding: 50px 0;
  }

  .why-us-head{
    margin: 0 auto 18px;
  }

  .why-us-head .eyebrow{
    font-size: 8px;
    letter-spacing: .13em;
    margin-bottom: 8px;
  }

  .why-us-head h2{
    font-size: clamp(1.52rem, 8.8vw, 1.85rem);
    line-height: 1.12;
    margin: 0 0 8px;
  }

  .why-us-head p{
    font-size: 0.79rem;
    line-height: 1.55;
  }

  .why-card{
    padding: 16px 12px 13px;
    border-radius: 15px;
  }

  .why-icon{
    width: 36px;
    height: 36px;
    border-radius: 10px;
    margin-bottom: 8px;
    font-size: 0.76rem;
  }

  .why-card h3{
    font-size: 1rem;
    margin: 0 0 6px;
  }

  .why-card p{
    font-size: 0.77rem;
    line-height: 1.5;
  }
}

/* =====================================================
   CONTACT SECTION
===================================================== */
.contact-split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 92vh;
  background: #F8F5EE;
}

.contact-image-full{
  position: relative;
  background: url("../images/contact.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  color: #fff;
  padding: 110px 80px 110px 110px;
}

.contact-overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.658) 0%, rgba(0, 0, 0, 0.36) 42%, rgba(0, 0, 0, 0.18) 100%);
}

.contact-text{
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.contact-text .eyebrow{
  display: inline-block;
  font-family: 'Quicksand', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(230, 239, 227, .94);
  margin-bottom: 14px;
}

.contact-text h2{
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.25rem, 4vw, 3.35rem);
  line-height: 1.02;
  font-weight: 600;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, .98);
  text-shadow:
    0 0 14px rgba(0, 0, 0, 0.95),
    0 0 28px rgba(0, 0, 0, 0.80),
    0 10px 30px rgba(0, 0, 0, 0.65);
}

.contact-text .sub.light{
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.9;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, .92);
  max-width: 470px;
  text-shadow:
    0 0 30px rgba(0, 0, 0, 0.92),
    0 0 52px rgba(0, 0, 0, 0.72),
    0 18px 40px rgba(0, 0, 0, 0.55);
}


.contact-info{
  display: grid;
  gap: 14px;
  max-width: 520px;
}


.contact-info.light .c-item{
  color: rgba(255, 255, 255, .95);
  text-shadow:
    0 0 18px rgba(0, 0, 0, 0.921),
    0 0 18px rgba(0, 0, 0, 0.738),
    0 6px 16px rgba(0, 0, 0, 0.589);
}

.c-item{
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: start;
  column-gap: 14px;
  font-size: 0.98rem;
  font-family: 'Quicksand', sans-serif;
  line-height: 1.7;
}

.c-item i{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  color: #ffffff;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.c-item span{
  display: block;
  padding-top: 4px;
}

.c-item-address span{
  max-width: 360px;
  line-height: 1.7;
}

.contact-form-side{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 56px;
  background: linear-gradient(180deg, #FBF7EF 0%, #F6F1E7 100%);
  border-top: 1px solid rgba(39, 39, 39, .06);
}

.contact-card{
  width: 100%;
  max-width: 560px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(39, 39, 39, .08);
  border-radius: 26px;
  padding: 24px 22px 24px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.card-title{
  font-family: 'Quicksand', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(43, 43, 43, .66);
  margin-bottom: 14px;
}

.contact-form .fg{
  margin-bottom: 12px;
}

.contact-form label{
  display: block;
  font-family: 'Quicksand', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(43, 43, 43, .70);
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea,
.contact-form select{
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(39, 39, 39, .12);
  background: rgba(248, 245, 238, .96);
  color: rgba(43, 43, 43, .88);
  padding: 13px 14px;
  outline: none;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.96rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .65);
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus{
  border-color: rgba(116, 140, 116, .45);
  box-shadow: 0 0 0 4px rgba(116, 140, 116, .10);
  background: #fff;
}

.contact-form textarea{
  resize: none;
  min-height: 150px;
}

.contact-form .form-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-submit-btn.full{
  width: 100%;
  margin-top: 4px;
}

.tiny-note{
  margin-top: 10px;
  font-size: 13px;
  color: rgba(43, 43, 43, .62);
  font-family: 'Quicksand', sans-serif;
}

.contact-success{
  background: rgba(67, 130, 91, 0.10);
  border: 1px solid rgba(67, 130, 91, 0.28);
  color: rgba(46, 95, 65, 1);
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.95rem;
  margin-bottom: 12px;
  font-family: 'Quicksand', sans-serif;
}

.contact-error{
  background: rgba(160, 40, 40, 0.08);
  border: 1px solid rgba(160, 40, 40, 0.26);
  color: rgba(120, 20, 20, 0.95);
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.95rem;
  margin-bottom: 12px;
  font-family: 'Quicksand', sans-serif;
}

.contact-submit-btn:disabled{
  opacity: 0.85;
  cursor: not-allowed;
  transform: none;
}

.contact-form input:invalid,
.contact-form textarea:invalid,
.contact-form select:invalid{
  border-color: rgba(160, 40, 40, 0.28);
}

.contact-form input:invalid:focus,
.contact-form textarea:invalid:focus,
.contact-form select:invalid:focus{
  box-shadow: 0 0 0 4px rgba(160, 40, 40, 0.08);
}


/* =====================================================
   FOOTER
===================================================== */
.site-footer{
  background: linear-gradient(180deg, #3a342f 0%, #2f2a26 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 72px 80px 24px;
}

.footer-top{
  display: grid;
  grid-template-columns: 1.08fr 1.42fr;
  gap: 46px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-brand{
  max-width: 430px;
}

.footer-logo{
  margin-bottom: 16px;
}

.footer-logo img{
  height: 54px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-brand h3{
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.05rem;
  font-weight: 600;
  color: #f8f4ed;
  margin: 0 0 12px;
  line-height: 1.05;
}

.footer-brand p{
  font-family: 'Quicksand', sans-serif;
  font-size: 0.97rem;
  line-height: 1.9;
  color: rgba(248, 244, 237, 0.74);
  max-width: 410px;
}

.footer-links-wrap{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.footer-title{
  font-family: 'Quicksand', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(226, 214, 198, 0.72);
  margin-bottom: 16px;
}

.footer-links,
.footer-contact{
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li{
  margin-bottom: 12px;
}

.footer-links a{
  font-family: 'Quicksand', sans-serif;
  font-size: 0.95rem;
  color: rgba(248, 244, 237, 0.80);
  text-decoration: none;
  transition: color .25s ease, transform .25s ease;
}

.footer-links a:hover{
  color: #ffffff;
}

.footer-contact li{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(248, 244, 237, 0.78);
}

.footer-contact i{
  color: #d8c6b3;
  margin-top: 3px;
  min-width: 16px;
}

.footer-bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
}

.footer-bottom p{
  font-family: 'Quicksand', sans-serif;
  font-size: 0.9rem;
  color: rgba(248, 244, 237, 0.56);
  margin: 0;
}

.footer-socials{
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-socials a{
  width: 39px;
  height: 39px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #f8f4ed;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  transition: all .25s ease;
}

.footer-socials a:hover{
  background: #f8f4ed;
  color: #2f2a26;
  transform: translateY(-2px);
}

/* =====================================================
   CONTACT RESPONSIVE
===================================================== */

/* 1024px and below */
@media (max-width: 1024px){
  .contact-split{
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .contact-image-full{
    padding: 96px 34px;
    min-height: 520px;
  }

  .contact-text{
    max-width: 720px;
  }

  .contact-text .eyebrow{
    font-size: 10px;
    margin-bottom: 12px;
  }

  .contact-text h2{
    font-size: clamp(2.15rem, 4.6vw, 2.95rem);
    line-height: 1.08;
    margin: 0 0 16px;
  }

  .contact-text .sub.light{
    font-size: 0.97rem;
    line-height: 1.8;
    margin: 0 0 24px;
    max-width: 600px;
  }

  .contact-info{
    gap: 12px;
    max-width: 620px;
  }

  .c-item{
    font-size: 0.94rem;
    grid-template-columns: 40px 1fr;
    column-gap: 12px;
  }

  .c-item i{
    width: 40px;
    height: 40px;
    border-radius: 13px;
  }

  .contact-form-side{
    padding: 48px 24px 56px;
    border-top: none;
  }

  .contact-card{
    max-width: 720px;
    border-radius: 24px;
    padding: 22px 20px 22px;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form select{
    font-size: 0.94rem;
  }
}

/* 900px and below */
@media (max-width: 900px){
  .contact-image-full{
    padding: 82px 28px;
    min-height: 470px;
  }

  .contact-text{
    max-width: 100%;
  }

  .contact-text .eyebrow{
    font-size: 10px;
    letter-spacing: .2em;
    margin-bottom: 10px;
  }

  .contact-text h2{
    font-size: clamp(2rem, 5vw, 2.45rem);
    line-height: 1.08;
    margin: 0 0 14px;
  }

  .contact-text .sub.light{
    font-size: 0.93rem;
    line-height: 1.72;
    margin: 0 0 20px;
    max-width: 520px;
  }

  .contact-info{
    gap: 10px;
  }

  .c-item{
    font-size: 0.9rem;
    grid-template-columns: 38px 1fr;
    column-gap: 10px;
    line-height: 1.62;
  }

  .c-item i{
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .c-item-address span{
    max-width: 100%;
  }

  .contact-form-side{
    padding: 40px 22px 50px;
  }

  .contact-card{
    border-radius: 22px;
    padding: 20px 18px 20px;
  }

  .card-title{
    font-size: 10px;
    margin-bottom: 12px;
  }

  .contact-form label{
    font-size: 10px;
    margin-bottom: 7px;
  }

  .contact-form .form-row{
    gap: 10px;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form select{
    border-radius: 14px;
    padding: 12px 13px;
    font-size: 0.9rem;
  }

  .contact-form textarea{
    min-height: 140px;
  }
}

/* 600px and below */
@media (max-width: 600px){
  .contact-image-full{
    padding: 68px 20px;
    min-height: 420px;
    background-position: center;
  }

  .contact-text .eyebrow{
    font-size: 9px;
    letter-spacing: .18em;
    margin-bottom: 10px;
  }

  .contact-text h2{
    font-size: clamp(1.9rem, 8vw, 2.35rem);
    line-height: 1.1;
    margin: 0 0 12px;
  }

  .contact-text .sub.light{
    font-size: 0.9rem;
    line-height: 1.68;
    margin: 0 0 18px;
    max-width: 100%;
  }

  .contact-info{
    gap: 10px;
    max-width: 100%;
  }

  .c-item{
    font-size: 0.86rem;
    grid-template-columns: 36px 1fr;
    column-gap: 10px;
    line-height: 1.58;
  }

  .c-item i{
    width: 36px;
    height: 36px;
    border-radius: 11px;
  }

  .c-item span{
    padding-top: 2px;
  }

  .contact-form-side{
    padding: 26px 16px 44px;
  }

  .contact-card{
    max-width: 100%;
    border-radius: 20px;
    padding: 18px 16px 18px;
  }

  .card-title{
    font-size: 9px;
    letter-spacing: .18em;
    margin-bottom: 10px;
  }

  .contact-form .form-row{
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-form .fg{
    margin-bottom: 10px;
  }

  .contact-form label{
    font-size: 9px;
    letter-spacing: .14em;
    margin-bottom: 6px;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form select{
    border-radius: 13px;
    padding: 11px 12px;
    font-size: 0.86rem;
  }

  .contact-form textarea{
    min-height: 130px;
  }

  .tiny-note{
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.5;
  }

  .contact-success,
  .contact-error{
    font-size: 0.86rem;
    padding: 9px 12px;
    border-radius: 10px;
  }
}

/* 420px and below */
@media (max-width: 420px){
  .contact-image-full{
    padding: 56px 16px;
    min-height: 370px;
  }

  .contact-text .eyebrow{
    font-size: 8.5px;
    letter-spacing: .15em;
    margin-bottom: 8px;
  }

  .contact-text h2{
    font-size: clamp(1.72rem, 8.5vw, 2.02rem);
    line-height: 1.12;
    margin: 0 0 10px;
  }

  .contact-text .sub.light{
    font-size: 0.84rem;
    line-height: 1.6;
    margin: 0 0 16px;
  }

  .contact-info{
    gap: 9px;
  }

  .c-item{
    font-size: 0.81rem;
    grid-template-columns: 34px 1fr;
    column-gap: 9px;
    line-height: 1.52;
  }

  .c-item i{
    width: 34px;
    height: 34px;
    border-radius: 10px;
    font-size: 0.78rem;
  }

  .contact-form-side{
    padding: 22px 14px 38px;
  }

  .contact-card{
    border-radius: 18px;
    padding: 16px 14px 16px;
  }

  .card-title{
    font-size: 8.5px;
    letter-spacing: .15em;
    margin-bottom: 9px;
  }

  .contact-form label{
    font-size: 8.5px;
    letter-spacing: .13em;
    margin-bottom: 6px;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form select{
    border-radius: 12px;
    padding: 10px 11px;
    font-size: 0.81rem;
  }

  .contact-form textarea{
    min-height: 118px;
  }

  .tiny-note{
    font-size: 11px;
  }

  .contact-success,
  .contact-error{
    font-size: 0.8rem;
    padding: 8px 10px;
  }
}

/* 360px and below */
@media (max-width: 360px){
  .contact-image-full{
    padding: 48px 14px;
    min-height: 340px;
  }

  .contact-text .eyebrow{
    font-size: 8px;
    letter-spacing: .13em;
    margin-bottom: 8px;
  }

  .contact-text h2{
    font-size: clamp(1.5rem, 8.8vw, 1.82rem);
    line-height: 1.14;
    margin: 0 0 8px;
  }

  .contact-text .sub.light{
    font-size: 0.79rem;
    line-height: 1.55;
    margin: 0 0 14px;
  }

  .c-item{
    font-size: 0.77rem;
    grid-template-columns: 32px 1fr;
    column-gap: 8px;
    line-height: 1.48;
  }

  .c-item i{
    width: 32px;
    height: 32px;
    border-radius: 9px;
    font-size: 0.74rem;
  }

  .contact-form-side{
    padding: 20px 12px 32px;
  }

  .contact-card{
    border-radius: 16px;
    padding: 14px 12px 14px;
  }

  .card-title{
    font-size: 8px;
    margin-bottom: 8px;
  }

  .contact-form label{
    font-size: 8px;
    margin-bottom: 5px;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form select{
    border-radius: 11px;
    padding: 9px 10px;
    font-size: 0.77rem;
  }

  .contact-form textarea{
    min-height: 108px;
  }

  .tiny-note{
    font-size: 10px;
    line-height: 1.45;
  }

  .contact-success,
  .contact-error{
    font-size: 0.76rem;
    padding: 8px 9px;
    border-radius: 9px;
  }
}

/* =====================================================
   FOOTER RESPONSIVE
===================================================== */

/* 1024px and below */
@media (max-width: 1024px){
  .site-footer{
    padding: 64px 40px 22px;
  }

  .footer-top{
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 26px;
  }

  .footer-brand{
    max-width: 100%;
  }

  .footer-logo img{
    height: 50px;
  }

  .footer-brand h3{
    font-size: 1.95rem;
    margin: 0 0 10px;
  }

  .footer-brand p{
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 520px;
  }

  .footer-links-wrap{
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }

  .footer-title{
    font-size: 10px;
    margin-bottom: 14px;
  }

  .footer-links a,
  .footer-contact li{
    font-size: 0.92rem;
  }

  .footer-contact li{
    line-height: 1.65;
  }
}

/* 900px and below */
@media (max-width: 900px){
  .site-footer{
    padding: 58px 28px 22px;
  }

  .footer-top{
    gap: 28px;
    padding-bottom: 24px;
  }

  .footer-brand h3{
    font-size: 1.75rem;
  }

  .footer-brand p{
    font-size: 0.9rem;
    line-height: 1.72;
  }

  .footer-links-wrap{
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 24px;
  }

  .footer-col:last-child{
    grid-column: 1 / -1;
  }

  .footer-title{
    font-size: 10px;
    letter-spacing: .18em;
    margin-bottom: 12px;
  }

  .footer-links li,
  .footer-contact li{
    margin-bottom: 10px;
  }

  .footer-links a,
  .footer-contact li{
    font-size: 0.88rem;
  }

  .footer-bottom{
    padding-top: 18px;
  }

  .footer-bottom p{
    font-size: 0.84rem;
  }

  .footer-socials a{
    width: 37px;
    height: 37px;
  }
}

/* 600px and below */
@media (max-width: 600px){
  .site-footer{
    padding: 50px 18px 20px;
  }

  .footer-top{
    gap: 24px;
    padding-bottom: 22px;
  }

  .footer-logo{
    margin-bottom: 12px;
  }

  .footer-logo img{
    height: 44px;
  }

  .footer-brand h3{
    font-size: 1.55rem;
    line-height: 1.08;
    margin: 0 0 8px;
  }

  .footer-brand p{
    font-size: 0.86rem;
    line-height: 1.65;
    max-width: 100%;
  }

  .footer-links-wrap{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-col:last-child{
    grid-column: auto;
  }

  .footer-title{
    font-size: 9px;
    letter-spacing: .16em;
    margin-bottom: 10px;
  }

  .footer-links li,
  .footer-contact li{
    margin-bottom: 9px;
  }

  .footer-links a,
  .footer-contact li{
    font-size: 0.84rem;
    line-height: 1.6;
  }

  .footer-contact{
    max-width: 100%;
  }

  .footer-bottom{
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-top: 16px;
  }

  .footer-bottom p{
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .footer-socials{
    gap: 8px;
  }

  .footer-socials a{
    width: 35px;
    height: 35px;
  }
}

/* 420px and below */
@media (max-width: 420px){
  .site-footer{
    padding: 42px 16px 18px;
  }

  .footer-top{
    gap: 20px;
    padding-bottom: 18px;
  }

  .footer-brand h3{
    font-size: 1.38rem;
    margin: 0 0 8px;
  }

  .footer-brand p{
    font-size: 0.81rem;
    line-height: 1.58;
  }

  .footer-title{
    font-size: 8.5px;
    letter-spacing: .14em;
    margin-bottom: 9px;
  }

  .footer-links a,
  .footer-contact li{
    font-size: 0.79rem;
    line-height: 1.55;
  }

  .footer-contact{
    gap: 0;
  }

  .footer-bottom{
    gap: 10px;
    padding-top: 14px;
  }

  .footer-bottom p{
    font-size: 0.76rem;
  }

  .footer-socials a{
    width: 33px;
    height: 33px;
    font-size: 0.86rem;
  }
}

/* 360px and below */
@media (max-width: 360px){
  .site-footer{
    padding: 36px 14px 16px;
  }

  .footer-top{
    gap: 18px;
    padding-bottom: 16px;
  }

  .footer-brand h3{
    font-size: 1.24rem;
  }

  .footer-brand p{
    font-size: 0.77rem;
    line-height: 1.52;
  }

  .footer-title{
    font-size: 8px;
    letter-spacing: .12em;
    margin-bottom: 8px;
  }

  .footer-links a,
  .footer-contact li{
    font-size: 0.75rem;
    line-height: 1.5;
  }

  .footer-links li,
  .footer-contact li{
    margin-bottom: 8px;
  }

  .footer-bottom{
    padding-top: 12px;
  }

  .footer-bottom p{
    font-size: 0.72rem;
    line-height: 1.45;
  }

  .footer-socials a{
    width: 31px;
    height: 31px;
    font-size: 0.8rem;
  }
}
/* =====================================================
   PACKAGE PAGES
===================================================== */
.package-hero{
  position: relative;
  margin-top: 86px;
  min-height: calc(76vh - 86px);
  width: 100%;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.package-hero-emerald{ background-image: url("../images/package.jpg"); }
.package-hero-lavender{ background-image: url("../images/lavender.jpg"); }
.package-hero-openhouse{ background-image: url("../images/open.jpg"); }

.package-hero-overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(22, 22, 25, 0.22) 0%, rgba(22, 25, 22, 0.12) 34%, rgba(22, 25, 22, 0.30) 100%),
    linear-gradient(180deg, rgba(31, 34, 36, 0.18) 0%, rgba(31, 36, 31, 0.40) 100%);
}

.package-hero-center{
  position: relative;
  z-index: 2;
  min-height: calc(76vh - 86px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 70px 20px 82px;
  max-width: 920px;
  margin: 0 auto;
}

.package-page-section{
  padding: 110px 0;
  background: #F8F5EE;
  border-top: 1px solid rgba(39, 39, 39, 0.06);
}

.package-page-head{
  max-width: 740px;
  margin: 0 auto 42px;
  text-align: center;
}

.package-page-head .eyebrow{
  display: inline-block;
  font-family: 'Quicksand', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(116, 140, 116, 0.95);
  margin-bottom: 14px;
}

.package-page-head h2{
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.05;
  color: #2B2B2B;
  margin-bottom: 14px;
}

.package-page-head p{
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(43, 43, 43, 0.72);
}

.package-page-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.package-card-v2{
  background: #ffffff;
  border: 1px solid rgba(39,39,39,.07);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,.06);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.package-card-v2:hover{
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0,0,0,.09);
  border-color: rgba(116, 140, 116, 0.18);
}

.package-card-media{
  position: relative;
  height: 280px;
  overflow: hidden;
}

.package-card-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-view-btn{
  position: absolute;
  right: 14px;
  bottom: 14px;
  border: none;
  background: rgba(255,255,255,.92);
  color: #2b2b2b;
  padding: 10px 14px;
  border-radius: 999px;
  font-family: 'Quicksand', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(0,0,0,.14);
  transition: .25s ease;
}

.image-view-btn:hover{
  background: #ffffff;
  transform: translateY(-2px);
}

.package-card-body{
  padding: 22px 20px 22px;
}

.package-topline{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.package-badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: #F0F1E8;
  color: #748C74;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-family: 'Quicksand', sans-serif;
}

.package-price{
  font-family: 'Quicksand', sans-serif;
  font-size: .96rem;
  font-weight: 700;
  color: #748C74;
}

.package-card-v2 h3{
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  color: #2B2B2B;
  line-height: 1.08;
  margin-bottom: 12px;
}

.package-card-v2 p{
  font-family: 'Quicksand', sans-serif;
  font-size: .97rem;
  line-height: 1.82;
  color: rgba(43, 43, 43, 0.72);
  margin-bottom: 16px;
}

.package-pricing-list{
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.package-pricing-item{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: #F8F5EE;
  border: 1px solid rgba(39,39,39,.07);
  border-radius: 16px;
  padding: 12px 14px;
  font-family: 'Quicksand', sans-serif;
  color: rgba(43,43,43,.80);
}

.package-pricing-item strong{
  color: #748C74;
}

.package-card-actions{
  display: flex;
}

.package-card-actions .btn{
  width: 100%;
}

.package-empty{
  grid-column: 1 / -1;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(39,39,39,.08);
  border-radius: 22px;
  padding: 36px 20px;
  color: rgba(43,43,43,.68);
  font-family: 'Quicksand', sans-serif;
}

.package-flash{
  max-width: 760px;
  margin: 0 auto 22px;
}

.package-modal-summary{
  background: #F8F5EE;
  border: 1px solid rgba(39,39,39,.08);
  border-radius: 18px;
  padding: 14px 16px;
  margin-bottom: 12px;
  display: grid;
  gap: 8px;
  font-family: 'Quicksand', sans-serif;
  color: rgba(43,43,43,.80);
}

.package-modal-description{
  background: #fff;
  border: 1px solid rgba(39,39,39,.08);
  border-radius: 18px;
  padding: 14px 16px;
  margin-bottom: 14px;
  font-family: 'Quicksand', sans-serif;
  color: rgba(43,43,43,.76);
  line-height: 1.8;
}

.package-enquiry-form .fg{
  margin-bottom: 12px;
}

.package-enquiry-form label{
  display: block;
  font-family: 'Quicksand', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(43, 43, 43, .70);
  margin-bottom: 8px;
}

.package-enquiry-form input,
.package-enquiry-form textarea,
.package-enquiry-form select{
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(39, 39, 39, .12);
  background: rgba(248, 245, 238, .96);
  color: rgba(43, 43, 43, .88);
  padding: 13px 14px;
  outline: none;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.96rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .65);
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.package-enquiry-form input:focus,
.package-enquiry-form textarea:focus,
.package-enquiry-form select:focus{
  border-color: rgba(116, 140, 116, .45);
  box-shadow: 0 0 0 4px rgba(116, 140, 116, .10);
  background: #fff;
}

.package-enquiry-form textarea{
  resize: none;
  min-height: 150px;
}

.package-submit-btn.full{
  width: 100%;
}

.package-submit-btn:disabled{
  opacity: .88;
  cursor: not-allowed;
  transform: none;
}

.image-modal-dialog{
  position: relative;
  z-index: 2;
  width: calc(100% - 26px);
  max-width: 980px;
  margin: 36px auto;
  background: transparent;
}

.image-modal-dialog img{
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(0,0,0,.28);
}

.image-modal-caption{
  text-align: center;
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  margin-top: 12px;
}

/* MODAL */
.custom-modal{
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
}

.custom-modal.active{
  display: block;
}

.custom-modal-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.56);
}

.custom-modal-dialog{
  position: relative;
  z-index: 2;
  width: calc(100% - 32px);
  max-width: 640px;
  max-height: calc(100vh - 32px);
  margin: 16px auto;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(0,0,0,.20);
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0 24px 24px;
  scroll-behavior: smooth;
}

.custom-modal-dialog::-webkit-scrollbar{
  width: 8px;
}

.custom-modal-dialog::-webkit-scrollbar-track{
  background: rgba(0,0,0,0.05);
  border-radius: 12px;
}

.custom-modal-dialog::-webkit-scrollbar-thumb{
  background: rgba(116, 140, 116, 0.75);
  border-radius: 12px;
}

.custom-modal-dialog::-webkit-scrollbar-thumb:hover{
  background: rgba(116, 140, 116, 1);
}

.custom-modal-close{
  position: sticky;
  top: 16px;
  margin-left: auto;
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(39,39,39,.12);
  background: #fff;
  color: #2b2b2b;
  cursor: pointer;
  font-size: 1rem;
  z-index: 5;
}

.custom-modal-head{
  position: sticky;
  top: 0;
  z-index: 4;
  background: #fff;
  padding: 18px 44px 14px 0;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(39,39,39,.08);
}

.custom-modal-head .eyebrow{
  display: inline-block;
  font-family: 'Quicksand', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(116, 140, 116, 0.95);
  margin-bottom: 10px;
}

.custom-modal-head h3{
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  line-height: 1.08;
  margin-bottom: 10px;
  color: #2B2B2B;
}

.custom-modal-head p{
  font-family: 'Quicksand', sans-serif;
  font-size: .96rem;
  line-height: 1.8;
  color: rgba(43,43,43,.70);
}

/* =====================================================
   PACKAGE PAGE RESPONSIVE
===================================================== */

/* 1024px and below */
@media (max-width: 1024px){
  .package-hero{
    margin-top: 82px;
    min-height: calc(70vh - 82px);
    background-position: center center;
  }

  .package-hero-center{
    min-height: calc(70vh - 82px);
    max-width: 820px;
    padding: 80px 24px 60px;
  }

  .package-page-section{
    padding: 96px 0;
  }

  .package-page-head{
    max-width: 680px;
    margin: 0 auto 34px;
  }

  .package-page-head .eyebrow{
    font-size: 10px;
    margin-bottom: 12px;
  }

  .package-page-head h2{
    font-size: clamp(2.1rem, 4vw, 2.8rem);
    margin-bottom: 12px;
  }

  .package-page-head p{
    font-size: 0.97rem;
    line-height: 1.8;
  }

  .package-page-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .package-card-media{
    height: 255px;
  }

  .package-card-body{
    padding: 20px 18px 20px;
  }

  .package-badge{
    min-height: 32px;
    padding: 0 12px;
    font-size: 0.72rem;
  }

  .package-price{
    font-size: 0.9rem;
  }

  .package-card-v2 h3{
    font-size: 1.65rem;
    margin-bottom: 10px;
  }

  .package-card-v2 p{
    font-size: 0.92rem;
    line-height: 1.74;
    margin-bottom: 14px;
  }

  .package-pricing-list{
    gap: 8px;
    margin-bottom: 16px;
  }

  .package-pricing-item{
    padding: 11px 12px;
    border-radius: 14px;
    font-size: 0.88rem;
  }

  .image-view-btn{
    padding: 9px 12px;
    font-size: 0.76rem;
  }

  .custom-modal-dialog{
    max-width: 620px;
    border-radius: 24px;
    padding: 0 20px 22px;
  }

  .custom-modal-head{
    padding: 16px 42px 12px 0;
    margin-bottom: 16px;
  }

  .custom-modal-head .eyebrow{
    font-size: 10px;
  }

  .custom-modal-head h3{
    font-size: 1.8rem;
    margin-bottom: 8px;
  }

  .custom-modal-head p{
    font-size: 0.92rem;
    line-height: 1.72;
  }

  .package-modal-summary,
  .package-modal-description{
    border-radius: 16px;
    padding: 13px 14px;
  }

  .package-enquiry-form label{
    font-size: 10px;
    margin-bottom: 7px;
  }

  .package-enquiry-form input,
  .package-enquiry-form textarea,
  .package-enquiry-form select{
    font-size: 0.92rem;
    padding: 12px 13px;
    border-radius: 14px;
  }

  .image-modal-dialog{
    width: calc(100% - 24px);
    max-width: 900px;
  }

  .image-modal-dialog img{
    border-radius: 20px;
  }
}

/* 900px and below */
@media (max-width: 900px){
  .package-hero{
    margin-top: 78px;
    min-height: calc(64vh - 78px);
  }

  .package-hero-center{
    min-height: calc(64vh - 78px);
    padding: 72px 22px 54px;
    max-width: 720px;
  }

  .package-page-section{
    padding: 82px 0;
  }

  .package-page-head{
    max-width: 620px;
    margin: 0 auto 28px;
  }

  .package-page-head .eyebrow{
    font-size: 10px;
    letter-spacing: .2em;
    margin-bottom: 10px;
  }

  .package-page-head h2{
    font-size: clamp(1.95rem, 5vw, 2.45rem);
    line-height: 1.08;
    margin-bottom: 10px;
  }

  .package-page-head p{
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .package-page-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .package-card-v2{
    border-radius: 20px;
  }

  .package-card-media{
    height: 230px;
  }

  .package-card-body{
    padding: 18px 16px 18px;
  }

  .package-topline{
    margin-bottom: 10px;
  }

  .package-badge{
    min-height: 30px;
    padding: 0 11px;
    font-size: 0.68rem;
    letter-spacing: .12em;
  }

  .package-price{
    font-size: 0.86rem;
  }

  .package-card-v2 h3{
    font-size: 1.45rem;
    margin-bottom: 8px;
  }

  .package-card-v2 p{
    font-size: 0.88rem;
    line-height: 1.66;
    margin-bottom: 12px;
  }

  .package-pricing-item{
    padding: 10px 11px;
    border-radius: 13px;
    font-size: 0.84rem;
  }

  .image-view-btn{
    right: 12px;
    bottom: 12px;
    padding: 8px 11px;
    font-size: 0.72rem;
  }

  .custom-modal-dialog{
    width: calc(100% - 26px);
    max-height: calc(100vh - 26px);
    border-radius: 22px;
    padding: 0 18px 20px;
  }

  .custom-modal-close{
    width: 40px;
    height: 40px;
    margin-top: 14px;
    top: 14px;
  }

  .custom-modal-head{
    padding: 15px 40px 12px 0;
    margin-bottom: 14px;
  }

  .custom-modal-head h3{
    font-size: 1.62rem;
  }

  .custom-modal-head p{
    font-size: 0.88rem;
    line-height: 1.66;
  }

  .package-modal-summary,
  .package-modal-description{
    padding: 12px 13px;
    border-radius: 14px;
  }

  .package-enquiry-form .fg{
    margin-bottom: 10px;
  }

  .package-enquiry-form input,
  .package-enquiry-form textarea,
  .package-enquiry-form select{
    font-size: 0.88rem;
    padding: 11px 12px;
    border-radius: 13px;
  }

  .package-enquiry-form textarea{
    min-height: 135px;
  }

  .image-modal-dialog{
    width: calc(100% - 20px);
    margin: 18px auto;
  }

  .image-modal-dialog img{
    max-height: 78vh;
    border-radius: 18px;
  }

  .image-modal-caption{
    font-size: 0.9rem;
    margin-top: 10px;
  }
}

/* 600px and below */
@media (max-width: 600px){
  .package-hero{
    margin-top: 74px;
    min-height: calc(58vh - 74px);
  }

  .package-hero-center{
    min-height: calc(58vh - 74px);
    padding: 62px 18px 44px;
  }

  .package-page-section{
    padding: 66px 0;
  }

  .package-page-head{
    margin: 0 auto 22px;
  }

  .package-page-head .eyebrow{
    font-size: 9px;
    letter-spacing: .18em;
    margin-bottom: 10px;
  }

  .package-page-head h2{
    font-size: clamp(1.82rem, 8vw, 2.25rem);
    line-height: 1.1;
    margin-bottom: 10px;
  }

  .package-page-head p{
    font-size: 0.88rem;
    line-height: 1.66;
  }

  .package-page-grid{
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .package-card-v2{
    border-radius: 18px;
  }

  .package-card-media{
    height: 220px;
  }

  .package-card-body{
    padding: 16px 14px 16px;
  }

  .package-topline{
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 9px;
  }

  .package-badge{
    min-height: 28px;
    padding: 0 10px;
    font-size: 0.64rem;
    letter-spacing: .1em;
  }

  .package-price{
    font-size: 0.82rem;
  }

  .package-card-v2 h3{
    font-size: 1.28rem;
    margin-bottom: 7px;
  }

  .package-card-v2 p{
    font-size: 0.84rem;
    line-height: 1.6;
    margin-bottom: 11px;
  }

  .package-pricing-list{
    gap: 8px;
    margin-bottom: 14px;
  }

  .package-pricing-item{
    padding: 9px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
  }

  .image-view-btn{
    right: 10px;
    bottom: 10px;
    padding: 8px 10px;
    font-size: 0.68rem;
  }

  .package-empty{
    border-radius: 18px;
    padding: 28px 16px;
    font-size: 0.88rem;
  }

  .custom-modal-dialog{
    width: calc(100% - 20px);
    max-height: calc(100vh - 20px);
    margin: 10px auto;
    border-radius: 18px;
    padding: 0 14px 16px;
  }

  .custom-modal-close{
    width: 38px;
    height: 38px;
    top: 12px;
    margin-top: 12px;
  }

  .custom-modal-head{
    padding: 14px 36px 10px 0;
    margin-bottom: 12px;
  }

  .custom-modal-head .eyebrow{
    font-size: 9px;
    letter-spacing: .18em;
    margin-bottom: 8px;
  }

  .custom-modal-head h3{
    font-size: 1.42rem;
    margin-bottom: 8px;
  }

  .custom-modal-head p{
    font-size: 0.84rem;
    line-height: 1.6;
  }

  .package-modal-summary,
  .package-modal-description{
    padding: 11px 12px;
    border-radius: 13px;
    font-size: 0.84rem;
  }

  .package-enquiry-form .form-row{
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .package-enquiry-form label{
    font-size: 9px;
    letter-spacing: .14em;
    margin-bottom: 6px;
  }

  .package-enquiry-form input,
  .package-enquiry-form textarea,
  .package-enquiry-form select{
    font-size: 0.84rem;
    padding: 10px 11px;
    border-radius: 12px;
  }

  .package-enquiry-form textarea{
    min-height: 120px;
  }

  .image-modal-dialog{
    width: calc(100% - 16px);
    margin: 16px auto;
  }

  .image-modal-dialog img{
    max-height: 72vh;
    border-radius: 16px;
  }

  .image-modal-caption{
    font-size: 0.84rem;
    margin-top: 8px;
  }
}

/* 420px and below */
@media (max-width: 420px){
  .package-hero{
    margin-top: 70px;
    min-height: calc(54vh - 70px);
  }

  .package-hero-center{
    min-height: calc(54vh - 70px);
    padding: 56px 16px 38px;
  }

  .package-page-section{
    padding: 58px 0;
  }

  .package-page-head{
    margin: 0 auto 18px;
  }

  .package-page-head .eyebrow{
    font-size: 8.5px;
    letter-spacing: .15em;
    margin-bottom: 8px;
  }

  .package-page-head h2{
    font-size: clamp(1.62rem, 8.6vw, 1.95rem);
    line-height: 1.12;
    margin-bottom: 8px;
  }

  .package-page-head p{
    font-size: 0.82rem;
    line-height: 1.58;
  }

  .package-page-grid{
    gap: 14px;
  }

  .package-card-v2{
    border-radius: 16px;
  }

  .package-card-media{
    height: 205px;
  }

  .package-card-body{
    padding: 14px 12px 14px;
  }

  .package-badge{
    min-height: 26px;
    padding: 0 9px;
    font-size: 0.6rem;
  }

  .package-price{
    font-size: 0.78rem;
  }

  .package-card-v2 h3{
    font-size: 1.14rem;
    margin-bottom: 6px;
  }

  .package-card-v2 p{
    font-size: 0.8rem;
    line-height: 1.54;
    margin-bottom: 10px;
  }

  .package-pricing-item{
    padding: 8px 9px;
    border-radius: 11px;
    font-size: 0.76rem;
  }

  .image-view-btn{
    padding: 7px 9px;
    font-size: 0.64rem;
    border-radius: 999px;
  }

  .package-empty{
    border-radius: 16px;
    padding: 24px 14px;
    font-size: 0.82rem;
  }

  .custom-modal-dialog{
    width: calc(100% - 16px);
    max-height: calc(100vh - 16px);
    margin: 8px auto;
    border-radius: 16px;
    padding: 0 12px 14px;
  }

  .custom-modal-close{
    width: 36px;
    height: 36px;
    top: 10px;
    margin-top: 10px;
    font-size: 0.9rem;
  }

  .custom-modal-head{
    padding: 12px 34px 10px 0;
    margin-bottom: 10px;
  }

  .custom-modal-head .eyebrow{
    font-size: 8.5px;
    letter-spacing: .15em;
    margin-bottom: 7px;
  }

  .custom-modal-head h3{
    font-size: 1.26rem;
    margin-bottom: 7px;
  }

  .custom-modal-head p{
    font-size: 0.8rem;
    line-height: 1.54;
  }

  .package-modal-summary,
  .package-modal-description{
    padding: 10px 11px;
    border-radius: 12px;
    font-size: 0.8rem;
    margin-bottom: 10px;
  }

  .package-enquiry-form label{
    font-size: 8.5px;
    letter-spacing: .13em;
    margin-bottom: 5px;
  }

  .package-enquiry-form input,
  .package-enquiry-form textarea,
  .package-enquiry-form select{
    font-size: 0.8rem;
    padding: 9px 10px;
    border-radius: 11px;
  }

  .package-enquiry-form textarea{
    min-height: 110px;
  }

  .image-modal-dialog{
    width: calc(100% - 12px);
    margin: 14px auto;
  }

  .image-modal-dialog img{
    max-height: 68vh;
    border-radius: 14px;
  }

  .image-modal-caption{
    font-size: 0.8rem;
  }
}

/* 360px and below */
@media (max-width: 360px){
  .package-hero{
    margin-top: 68px;
    min-height: calc(50vh - 68px);
  }

  .package-hero-center{
    min-height: calc(50vh - 68px);
    padding: 50px 14px 34px;
  }

  .package-page-section{
    padding: 50px 0;
  }

  .package-page-head{
    margin: 0 auto 16px;
  }

  .package-page-head .eyebrow{
    font-size: 8px;
    letter-spacing: .13em;
    margin-bottom: 7px;
  }

  .package-page-head h2{
    font-size: clamp(1.45rem, 8.8vw, 1.72rem);
    line-height: 1.14;
    margin-bottom: 8px;
  }

  .package-page-head p{
    font-size: 0.77rem;
    line-height: 1.52;
  }

  .package-page-grid{
    gap: 12px;
  }

  .package-card-v2{
    border-radius: 15px;
  }

  .package-card-media{
    height: 188px;
  }

  .package-card-body{
    padding: 12px 10px 12px;
  }

  .package-topline{
    gap: 6px;
    margin-bottom: 8px;
  }

  .package-badge{
    min-height: 24px;
    padding: 0 8px;
    font-size: 0.56rem;
    letter-spacing: .09em;
  }

  .package-price{
    font-size: 0.74rem;
  }

  .package-card-v2 h3{
    font-size: 1.02rem;
    margin-bottom: 5px;
  }

  .package-card-v2 p{
    font-size: 0.76rem;
    line-height: 1.48;
    margin-bottom: 9px;
  }

  .package-pricing-list{
    gap: 7px;
    margin-bottom: 12px;
  }

  .package-pricing-item{
    padding: 7px 8px;
    border-radius: 10px;
    font-size: 0.72rem;
  }

  .image-view-btn{
    right: 8px;
    bottom: 8px;
    padding: 6px 8px;
    font-size: 0.6rem;
  }

  .package-empty{
    border-radius: 15px;
    padding: 20px 12px;
    font-size: 0.78rem;
  }

  .custom-modal-dialog{
    width: calc(100% - 12px);
    max-height: calc(100vh - 12px);
    border-radius: 14px;
    padding: 0 10px 12px;
  }

  .custom-modal-close{
    width: 34px;
    height: 34px;
    top: 8px;
    margin-top: 8px;
    font-size: 0.84rem;
  }

  .custom-modal-head{
    padding: 10px 30px 8px 0;
    margin-bottom: 9px;
  }

  .custom-modal-head .eyebrow{
    font-size: 8px;
    margin-bottom: 6px;
  }

  .custom-modal-head h3{
    font-size: 1.12rem;
    margin-bottom: 6px;
  }

  .custom-modal-head p{
    font-size: 0.76rem;
    line-height: 1.48;
  }

  .package-modal-summary,
  .package-modal-description{
    padding: 9px 10px;
    border-radius: 11px;
    font-size: 0.76rem;
    margin-bottom: 9px;
  }

  .package-enquiry-form label{
    font-size: 8px;
    margin-bottom: 5px;
  }

  .package-enquiry-form input,
  .package-enquiry-form textarea,
  .package-enquiry-form select{
    font-size: 0.76rem;
    padding: 8px 9px;
    border-radius: 10px;
  }

  .package-enquiry-form textarea{
    min-height: 100px;
  }

  .image-modal-dialog{
    width: calc(100% - 10px);
    margin: 12px auto;
  }

  .image-modal-dialog img{
    max-height: 64vh;
    border-radius: 12px;
  }

  .image-modal-caption{
    font-size: 0.76rem;
    margin-top: 7px;
  }
}

/* =====================================================
   GALLERY PAGE
===================================================== */
.gallery-hero{
  position: relative;
  margin-top: 86px;
  min-height: calc(76vh - 86px);
  width: 100%;
  background: url("../images/gellery.jpg") center center / cover no-repeat;
  overflow: hidden;
}

.gallery-hero-overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(22, 22, 25, 0.18) 0%, rgba(22, 25, 22, 0.12) 30%, rgba(22, 25, 22, 0.34) 100%),
    linear-gradient(180deg, rgba(31, 34, 36, 0.16) 0%, rgba(31, 36, 31, 0.42) 100%);
}

.gallery-hero-center{
  position: relative;
  z-index: 2;
  min-height: calc(76vh - 86px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 70px 20px 82px;
  max-width: 920px;
  margin: 0 auto;
}

.gallery-intro{
  padding: 110px 0 38px;
  background: #F8F5EE;
}

.gallery-intro-wrap{
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.gallery-intro-wrap .eyebrow{
  display: inline-block;
  font-family: 'Quicksand', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(116, 140, 116, 0.95);
  margin-bottom: 14px;
}

.gallery-intro-wrap h2{
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.25rem, 4vw, 3.2rem);
  line-height: 1.05;
  color: #2B2B2B;
  margin-bottom: 16px;
}

.gallery-intro-wrap p{
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(43, 43, 43, 0.72);
}

.gallery-section{
  padding: 34px 0 120px;
  background: #F8F5EE;
}

.gallery-grid-masonry{
  column-count: 3;
  column-gap: 22px;
}

.gallery-card{
  break-inside: avoid;
  margin-bottom: 22px;
}

.gallery-card-btn{
  position: relative;
  width: 100%;
  border: none;
  background: #fff;
  border-radius: 26px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
  border: 1px solid rgba(39,39,39,.07);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  padding: 0;
}

.gallery-card-btn:hover{
  transform: translateY(-6px);
  box-shadow: 0 26px 52px rgba(0,0,0,.12);
  border-color: rgba(116, 140, 116, 0.18);
}

.gallery-card-btn img{
  width: 100%;
  display: block;
  object-fit: cover;
}

.gallery-overlay-text{
  position: absolute;
  inset: auto 16px 16px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: #2b2b2b;
  font-family: 'Quicksand', sans-serif;
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: .25s ease;
  box-shadow: 0 10px 22px rgba(0,0,0,.14);
}

.gallery-card-btn:hover .gallery-overlay-text{
  opacity: 1;
  transform: translateY(0);
}

.gallery-cta{
  padding: 0 0 120px;
  background: #F8F5EE;
}

.gallery-cta-box{
  position: relative;
  background:
    linear-gradient(135deg, rgba(125,134,104,.12) 0%, rgba(240,241,232,.72) 55%, rgba(255,255,255,.96) 100%);
  border: 1px solid rgba(39,39,39,.08);
  border-radius: 34px;
  padding: 44px 38px;
  box-shadow: 0 20px 50px rgba(0,0,0,.07);
  text-align: center;
  overflow: hidden;
}

.gallery-cta-box::before{
  content: "";
  position: absolute;
  top: -80px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(116, 140, 116, 0.10);
  filter: blur(10px);
}

.gallery-cta-box .eyebrow{
  display: inline-block;
  font-family: 'Quicksand', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(116, 140, 116, 0.95);
  margin-bottom: 14px;
}

.gallery-cta-box h2{
  position: relative;
  z-index: 1;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.08;
  color: #2B2B2B;
  margin-bottom: 14px;
}

.gallery-cta-box p{
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(43,43,43,.72);
}

.gallery-cta-actions{
  position: relative;
  z-index: 1;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.gallery-btn-outline{
  background: transparent;
  color: #748C74;
  border: 1px solid rgba(116, 140, 116, 0.28);
  box-shadow: none;
}

.gallery-btn-outline:hover{
  background: rgba(116, 140, 116, 0.08);
  transform: translateY(-2px);
}

.gallery-image-dialog{
  max-width: 1100px;
}

.gallery-image-dialog img{
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(0,0,0,.28);
}

/* =====================================================
   GALLERY PAGE RESPONSIVE
===================================================== */

/* 1024px and below */
@media (max-width: 1024px){
  .gallery-hero{
    margin-top: 82px;
    min-height: calc(70vh - 82px);
    background-position: center center;
  }

  .gallery-hero-center{
    min-height: calc(70vh - 82px);
    max-width: 820px;
    padding: 80px 24px 60px;
  }

  .gallery-intro{
    padding: 96px 0 32px;
  }

  .gallery-intro-wrap{
    max-width: 680px;
  }

  .gallery-intro-wrap .eyebrow{
    font-size: 10px;
    margin-bottom: 12px;
  }

  .gallery-intro-wrap h2{
    font-size: clamp(2.1rem, 4vw, 2.8rem);
    margin-bottom: 14px;
  }

  .gallery-intro-wrap p{
    font-size: 0.97rem;
    line-height: 1.8;
  }

  .gallery-section{
    padding: 28px 0 96px;
  }

  .gallery-grid-masonry{
    column-count: 2;
    column-gap: 18px;
  }

  .gallery-card{
    margin-bottom: 18px;
  }

  .gallery-card-btn{
    border-radius: 22px;
  }

  .gallery-overlay-text{
    min-height: 42px;
    padding: 0 16px;
    font-size: 0.78rem;
    inset: auto 14px 14px 14px;
  }

  .gallery-cta{
    padding: 0 0 96px;
  }

  .gallery-cta-box{
    border-radius: 28px;
    padding: 38px 30px;
  }

  .gallery-cta-box .eyebrow{
    font-size: 10px;
    margin-bottom: 12px;
  }

  .gallery-cta-box h2{
    font-size: clamp(1.95rem, 4vw, 2.65rem);
    margin-bottom: 12px;
  }

  .gallery-cta-box p{
    font-size: 0.97rem;
    line-height: 1.8;
    max-width: 680px;
  }

  .gallery-cta-actions{
    margin-top: 20px;
    gap: 12px;
  }

  .gallery-image-dialog{
    width: calc(100% - 24px);
    max-width: 960px;
  }

  .gallery-image-dialog img{
    border-radius: 20px;
  }
}

/* 900px and below */
@media (max-width: 900px){
  .gallery-hero{
    margin-top: 78px;
    min-height: calc(64vh - 78px);
  }

  .gallery-hero-center{
    min-height: calc(64vh - 78px);
    max-width: 720px;
    padding: 72px 22px 54px;
  }

  .gallery-intro{
    padding: 82px 0 28px;
  }

  .gallery-intro-wrap{
    max-width: 620px;
  }

  .gallery-intro-wrap .eyebrow{
    font-size: 10px;
    letter-spacing: .2em;
    margin-bottom: 10px;
  }

  .gallery-intro-wrap h2{
    font-size: clamp(1.95rem, 5vw, 2.4rem);
    line-height: 1.08;
    margin-bottom: 12px;
  }

  .gallery-intro-wrap p{
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .gallery-section{
    padding: 24px 0 82px;
  }

  .gallery-grid-masonry{
    column-count: 2;
    column-gap: 16px;
  }

  .gallery-card{
    margin-bottom: 16px;
  }

  .gallery-card-btn{
    border-radius: 20px;
  }

  .gallery-overlay-text{
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.74rem;
    inset: auto 12px 12px 12px;
  }

  .gallery-cta{
    padding: 0 0 82px;
  }

  .gallery-cta-box{
    border-radius: 24px;
    padding: 32px 24px;
  }

  .gallery-cta-box .eyebrow{
    font-size: 10px;
    letter-spacing: .2em;
    margin-bottom: 10px;
  }

  .gallery-cta-box h2{
    font-size: clamp(1.85rem, 5vw, 2.3rem);
    line-height: 1.1;
    margin-bottom: 10px;
  }

  .gallery-cta-box p{
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .gallery-cta-actions{
    margin-top: 18px;
    gap: 10px;
  }

  .gallery-image-dialog{
    width: calc(100% - 20px);
    margin: 18px auto;
  }

  .gallery-image-dialog img{
    max-height: 78vh;
    border-radius: 18px;
  }
}

/* 600px and below */
@media (max-width: 600px){
  .gallery-hero{
    margin-top: 74px;
    min-height: calc(58vh - 74px);
    background-position: center;
  }

  .gallery-hero-center{
    min-height: calc(58vh - 74px);
    padding: 62px 18px 44px;
  }

  .gallery-intro{
    padding: 66px 0 24px;
  }

  .gallery-intro-wrap .eyebrow{
    font-size: 9px;
    letter-spacing: .18em;
    margin-bottom: 10px;
  }

  .gallery-intro-wrap h2{
    font-size: clamp(1.82rem, 8vw, 2.2rem);
    line-height: 1.1;
    margin-bottom: 10px;
  }

  .gallery-intro-wrap p{
    font-size: 0.88rem;
    line-height: 1.66;
  }

  .gallery-section{
    padding: 22px 0 66px;
  }

  .gallery-grid-masonry{
    column-count: 1;
    column-gap: 0;
  }

  .gallery-card{
    margin-bottom: 14px;
  }

  .gallery-card-btn{
    border-radius: 18px;
  }

  .gallery-overlay-text{
    opacity: 1;
    transform: translateY(0);
    min-height: 38px;
    padding: 0 13px;
    font-size: 0.72rem;
    inset: auto 10px 10px 10px;
  }

  .gallery-cta{
    padding: 0 0 66px;
  }

  .gallery-cta-box{
    border-radius: 20px;
    padding: 26px 18px;
  }

  .gallery-cta-box .eyebrow{
    font-size: 9px;
    letter-spacing: .18em;
    margin-bottom: 10px;
  }

  .gallery-cta-box h2{
    font-size: clamp(1.72rem, 8vw, 2.05rem);
    line-height: 1.1;
    margin-bottom: 10px;
  }

  .gallery-cta-box p{
    font-size: 0.86rem;
    line-height: 1.64;
  }

  .gallery-cta-actions{
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
  }

  .gallery-cta-actions .btn{
    width: 100%;
    max-width: 260px;
  }

  .gallery-image-dialog{
    width: calc(100% - 16px);
    margin: 16px auto;
  }

  .gallery-image-dialog img{
    max-height: 72vh;
    border-radius: 16px;
  }
}

/* 420px and below */
@media (max-width: 420px){
  .gallery-hero{
    margin-top: 70px;
    min-height: calc(54vh - 70px);
  }

  .gallery-hero-center{
    min-height: calc(54vh - 70px);
    padding: 56px 16px 38px;
  }

  .gallery-intro{
    padding: 58px 0 20px;
  }

  .gallery-intro-wrap .eyebrow{
    font-size: 8.5px;
    letter-spacing: .15em;
    margin-bottom: 8px;
  }

  .gallery-intro-wrap h2{
    font-size: clamp(1.62rem, 8.6vw, 1.92rem);
    line-height: 1.12;
    margin-bottom: 8px;
  }

  .gallery-intro-wrap p{
    font-size: 0.82rem;
    line-height: 1.58;
  }

  .gallery-section{
    padding: 18px 0 58px;
  }

  .gallery-card{
    margin-bottom: 12px;
  }

  .gallery-card-btn{
    border-radius: 16px;
  }

  .gallery-overlay-text{
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.66rem;
    inset: auto 9px 9px 9px;
    gap: 6px;
  }

  .gallery-cta{
    padding: 0 0 58px;
  }

  .gallery-cta-box{
    border-radius: 18px;
    padding: 22px 16px;
  }

  .gallery-cta-box .eyebrow{
    font-size: 8.5px;
    letter-spacing: .15em;
    margin-bottom: 8px;
  }

  .gallery-cta-box h2{
    font-size: clamp(1.52rem, 8.6vw, 1.82rem);
    line-height: 1.12;
    margin-bottom: 8px;
  }

  .gallery-cta-box p{
    font-size: 0.81rem;
    line-height: 1.56;
  }

  .gallery-cta-actions{
    margin-top: 16px;
    gap: 8px;
  }

  .gallery-cta-actions .btn{
    max-width: 240px;
  }

  .gallery-image-dialog{
    width: calc(100% - 12px);
    margin: 14px auto;
  }

  .gallery-image-dialog img{
    max-height: 68vh;
    border-radius: 14px;
  }
}

/* 360px and below */
@media (max-width: 360px){
  .gallery-hero{
    margin-top: 68px;
    min-height: calc(50vh - 68px);
  }

  .gallery-hero-center{
    min-height: calc(50vh - 68px);
    padding: 50px 14px 34px;
  }

  .gallery-intro{
    padding: 50px 0 18px;
  }

  .gallery-intro-wrap .eyebrow{
    font-size: 8px;
    letter-spacing: .13em;
    margin-bottom: 7px;
  }

  .gallery-intro-wrap h2{
    font-size: clamp(1.42rem, 8.8vw, 1.68rem);
    line-height: 1.14;
    margin-bottom: 8px;
  }

  .gallery-intro-wrap p{
    font-size: 0.77rem;
    line-height: 1.52;
  }

  .gallery-section{
    padding: 16px 0 50px;
  }

  .gallery-card{
    margin-bottom: 10px;
  }

  .gallery-card-btn{
    border-radius: 15px;
  }

  .gallery-overlay-text{
    min-height: 34px;
    padding: 0 10px;
    font-size: 0.62rem;
    inset: auto 8px 8px 8px;
    gap: 5px;
  }

  .gallery-cta{
    padding: 0 0 50px;
  }

  .gallery-cta-box{
    border-radius: 16px;
    padding: 18px 14px;
  }

  .gallery-cta-box .eyebrow{
    font-size: 8px;
    letter-spacing: .13em;
    margin-bottom: 7px;
  }

  .gallery-cta-box h2{
    font-size: clamp(1.34rem, 8.8vw, 1.58rem);
    line-height: 1.14;
    margin-bottom: 8px;
  }

  .gallery-cta-box p{
    font-size: 0.77rem;
    line-height: 1.5;
  }

  .gallery-cta-actions .btn{
    max-width: 220px;
  }

  .gallery-image-dialog{
    width: calc(100% - 10px);
    margin: 12px auto;
  }

  .gallery-image-dialog img{
    max-height: 64vh;
    border-radius: 12px;
  }
}
