:root{
  --bg: #fbf6ea;
  --bg-soft: #f2e7d2;
  --surface: #fffaf0;
  --surface-solid: #fff7e8;

  --text: #1b281d;
  --muted: #64705f;
  --muted-2: #7b806f;

  --primary: #123822;
  --primary-2: #1f5635;
  --primary-3: #2f7047;

  --accent: #b87535;
  --accent-2: #d9a45f;
  --accent-dark: #8c5425;

  --border: rgba(31, 86, 53, .16);
  --border-strong: rgba(31, 86, 53, .28);

  --shadow: 0 22px 60px rgba(31, 45, 28, .16);
  --shadow-soft: 0 12px 34px rgba(31, 45, 28, .10);

  --radius: 18px;
  --radius-sm: 12px;
  --container: 1160px;
}

/* Base */
*{box-sizing:border-box}

html,body{height:100%}

html{scroll-behavior:smooth}

body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(780px 420px at 10% 0%, rgba(217,164,95,.20), transparent 60%),
    radial-gradient(880px 460px at 92% 0%, rgba(31,86,53,.14), transparent 62%),
    linear-gradient(180deg, #fffaf0 0%, var(--bg) 42%, #f5ead7 100%);
  color: var(--text);
  line-height:1.62;
  text-rendering: optimizeLegibility;
}

a{color:inherit; text-decoration:none}
a:hover{opacity:.96}
img{max-width:100%; display:block}

.container{
  width:min(var(--container), 92vw);
  margin-inline:auto;
}

.mt-2{margin-top:.75rem}
.mt-3{margin-top:1.25rem}
.mt-4{margin-top:1.75rem}
.mb-3{margin-bottom:1.25rem}

.muted{color:var(--muted)}

/* Common Elements */
.badge{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  padding:.42rem .82rem;
  border-radius:999px;
  background: rgba(255,250,240,.88);
  border:1px solid rgba(184,117,53,.25);
  color: var(--primary);
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  min-height:46px;
  padding:.84rem 1.18rem;
  border-radius:999px;
  border:1px solid rgba(18,56,34,.24);
  background: rgba(255,250,240,.88);
  color: var(--primary);
  font-weight:800;
  line-height:1;
  white-space:nowrap;
  transition:
    transform .16s ease,
    background .16s ease,
    border-color .16s ease,
    box-shadow .16s ease,
    color .16s ease;
}

.btn:hover{
  transform: translateY(-1px);
  border-color: rgba(18,56,34,.38);
  box-shadow: var(--shadow-soft);
}

.btn-primary{
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color:#fffaf0;
  border-color: transparent;
  box-shadow: 0 14px 30px rgba(18,56,34,.25);
}

.btn-primary:hover{
  transform: translateY(-2px);
  background: linear-gradient(135deg, #0f301d, var(--primary-3));
  color:#fffaf0;
  box-shadow: 0 18px 42px rgba(18,56,34,.32);
}

.btn-ghost{
  background: rgba(255,250,240,.84);
  color: var(--primary);
}

/* Cards / Layout */
.card{
  background: rgba(255,250,240,.9);
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.card-pad{padding: 1.15rem}

.grid{
  display:grid;
  gap:1rem;
}

.grid-2{grid-template-columns: repeat(2, minmax(0,1fr))}
.grid-3{grid-template-columns: repeat(3, minmax(0,1fr))}

@media (max-width: 860px){
  .grid-2,
  .grid-3{grid-template-columns: 1fr}
}

/* Header */
.skip-link{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}

.skip-link:focus{
  left:1rem;
  top:1rem;
  width:auto;
  height:auto;
  padding:.65rem .95rem;
  background:#fff;
  color:#000;
  border-radius:12px;
  z-index:200;
}

.site-header{
  position: sticky;
  top:0;
  z-index:50;
  background: rgba(255,247,232,.96);
  backdrop-filter: blur(18px);
  border-bottom:1px solid rgba(18,56,34,.14);
  box-shadow: 0 8px 24px rgba(31,45,28,.08);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  padding:.76rem 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:.76rem;
  min-width:0;
}

.brand-logo{
  width:50px;
  height:50px;
  object-fit:contain;
  background:transparent;
  box-shadow:none;
  border-radius:0;
}

.brand-mark{
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  border-radius:14px;
  background: linear-gradient(135deg, rgba(18,56,34,.12), rgba(184,117,53,.18));
  border:1px solid var(--border);
  color: var(--accent);
}

.brand-text{
  min-width:0;
}

.brand-text strong{
  display:block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size:1.3rem;
  line-height:1;
  color: var(--primary);
  letter-spacing:.01em;
}

.brand-text small{
  display:block;
  margin-top:.18rem;
  color:#6b725f;
  font-size:.78rem;
  white-space:nowrap;
}

/* Navbar - visibility fixed */
.site-nav{
  display:flex;
  align-items:center;
  gap:.38rem;
}

.site-nav a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:40px;
  padding:.58rem .72rem;
  border-radius:999px;
  color: var(--primary);
  font-weight:800;
  font-size:.88rem;
  line-height:1;
  background: transparent;
}

.site-nav a:hover{
  color: var(--primary);
  background: rgba(18,56,34,.08);
  opacity:1;
}

/* Important: keeps navbar button text white and clear */
.site-nav .nav-cta,
.site-nav a.nav-cta,
.site-nav .btn-primary,
.site-nav a.btn-primary{
  margin-left:.45rem;
  padding:.72rem 1rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color:#fffaf0 !important;
  border:1px solid rgba(255,255,255,.10);
  box-shadow: 0 12px 26px rgba(18,56,34,.24);
}

.site-nav .nav-cta:hover,
.site-nav a.nav-cta:hover,
.site-nav .btn-primary:hover,
.site-nav a.btn-primary:hover{
  background: linear-gradient(135deg, #0f301d, #2b7047);
  color:#fffaf0 !important;
  box-shadow: 0 16px 34px rgba(18,56,34,.32);
}

.nav-toggle{
  display:none;
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid var(--border-strong);
  background: #fffaf0;
  cursor:pointer;
  box-shadow: 0 8px 20px rgba(31,45,28,.08);
}

.nav-toggle span{
  display:block;
  width:18px;
  height:2px;
  background: var(--primary);
  margin:4px auto;
  border-radius:99px;
}

@media (max-width: 1080px){
  .site-nav{
    gap:.18rem;
  }

  .site-nav a{
    padding:.54rem .56rem;
    font-size:.84rem;
  }
}

@media (max-width: 980px){
  .nav-toggle{display:block}

  .site-nav{
    position: fixed;
    inset: 74px 14px auto 14px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:.45rem;
    padding:14px;
    border-radius:20px;
    background: rgba(255,247,232,.99);
    border:1px solid rgba(18,56,34,.18);
    box-shadow: var(--shadow);
  }

  .site-nav.open{display:flex}

  .site-nav a{
    justify-content:flex-start;
    min-height:46px;
    padding:.85rem .95rem;
    border-radius:14px;
    background: rgba(18,56,34,.06);
    color: var(--primary);
  }

  .site-nav a:hover{
    background: rgba(18,56,34,.11);
  }

  .site-nav .nav-cta,
  .site-nav a.nav-cta,
  .site-nav .btn-primary,
  .site-nav a.btn-primary{
    justify-content:center;
    margin-left:0;
    margin-top:.25rem;
    min-height:48px;
  }
}

/* Sections */
.section{
  padding:4.2rem 0;
}

.section-sm{
  padding:2.4rem 0;
}

.section-title{
  margin:0 0 .7rem 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.05rem, 3.4vw, 3.3rem);
  line-height:1.02;
  color: var(--primary);
  letter-spacing:-.015em;
}

.section-subtitle{
  max-width:70ch;
  color:var(--muted);
  font-size:1.03rem;
}

/* Hero */
.hero{
  padding:2rem 0 4.2rem 0;
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.12fr .88fr;
  gap:1.25rem;
  align-items:stretch;
}

.hero-card{
  position:relative;
  overflow:hidden;
  min-height:540px;
  padding:clamp(1.45rem, 4vw, 3.6rem);
  border-radius:30px;
  background:
    linear-gradient(90deg, rgba(13,37,23,.90) 0%, rgba(13,37,23,.72) 42%, rgba(13,37,23,.20) 100%),
    url("images/hero-palm-grove.jpg");
  background-size:cover;
  background-position:center;
  border:1px solid rgba(255,255,255,.22);
  box-shadow: var(--shadow);
  color:#fffaf0;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
}

.hero-card::after{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:38%;
  background: linear-gradient(180deg, transparent, rgba(8,24,14,.42));
  pointer-events:none;
}

.hero-card > *{
  position:relative;
  z-index:1;
}

.hero-card .badge{
  width:max-content;
  background: rgba(255,250,240,.15);
  border-color: rgba(255,250,240,.34);
  color:#fff7e8;
}

.hero h1{
  max-width:850px;
  margin:.65rem 0 .9rem 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.8rem, 5.9vw, 5.75rem);
  line-height:.92;
  letter-spacing:-.03em;
  color:#fffaf0;
  text-wrap:balance;
}

.hero p,
.hero-card .muted{
  max-width:63ch;
  color: rgba(255,250,240,.86);
  font-size:1.06rem;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:.75rem;
  margin-top:1.35rem;
}

.hero-actions .btn-ghost{
  background: rgba(255,250,240,.14);
  color:#fffaf0;
  border-color: rgba(255,250,240,.35);
}

.hero-actions .btn-ghost:hover{
  background: rgba(255,250,240,.22);
  color:#fffaf0;
}

.hero-media{
  overflow:hidden;
  border-radius:30px;
  border:1px solid rgba(31,86,53,.13);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.hero-media .media{
  min-height:540px;
  aspect-ratio:4 / 5;
  background:
    linear-gradient(180deg, rgba(18,56,34,.03), rgba(18,56,34,.14)),
    url("images/hero-palm-grove.jpg");
  background-size:cover;
  background-position:center;
}

.kpis{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:.75rem;
  margin-top:1rem;
}

.kpi{
  padding:1rem;
  border-radius:18px;
  background: rgba(255,250,240,.82);
  border:1px solid rgba(31,86,53,.14);
  box-shadow: 0 8px 20px rgba(31,45,28,.06);
}

.kpi strong{
  display:block;
  color:var(--primary);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size:1.55rem;
  line-height:1;
}

.kpi span{
  color:var(--muted);
  font-size:.86rem;
}

@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr}
  .hero-card{min-height:500px}
  .hero-media .media{min-height:420px}
}

@media (max-width: 700px){
  .brand-text strong{font-size:1.08rem}
  .brand-text small{font-size:.72rem}
  .hero{padding-top:1.2rem}
  .hero-card{min-height:450px; border-radius:24px}
  .hero-media .media{min-height:340px}
  .kpis{grid-template-columns:1fr}
}

/* Image Tiles */
.tile{
  position:relative;
  overflow:hidden;
  border-radius:var(--radius);
  border:1px solid rgba(31,86,53,.14);
  background: rgba(255,250,240,.92);
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.tile:hover{
  transform:translateY(-4px);
  border-color: rgba(184,117,53,.30);
  box-shadow: var(--shadow);
}

.tile .thumb{
  aspect-ratio:16/10;
  background-size:cover;
  background-position:center;
  transition: transform .45s ease;
}

.tile:hover .thumb{
  transform:scale(1.035);
}

.tile .meta{
  padding:1.08rem 1.12rem 1.18rem;
}

.tile h3{
  margin:.1rem 0 .28rem 0;
  color:var(--primary);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size:1.48rem;
  line-height:1.05;
}

.tile p{
  margin:0;
  color:var(--muted);
}

.pill-row{
  display:flex;
  flex-wrap:wrap;
  gap:.45rem;
  margin-top:.78rem;
}

.pill{
  padding:.32rem .64rem;
  border-radius:999px;
  background: rgba(184,117,53,.10);
  border:1px solid rgba(184,117,53,.18);
  color: #784820;
  font-size:.78rem;
  font-weight:800;
}

/* Testimonials */
.quote{
  padding:1.25rem;
  border-radius:var(--radius);
  background: rgba(255,250,240,.88);
  border:1px solid rgba(31,86,53,.14);
  box-shadow: var(--shadow-soft);
}

.quote p{
  margin:0 0 .85rem 0;
  color: var(--text);
}

.quote .who{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  color:var(--muted);
  font-size:.92rem;
}

/* Footer */
.site-footer{
  padding:2.8rem 0 1.45rem 0;
  background:
    radial-gradient(600px 260px at 10% 0%, rgba(217,164,95,.16), transparent 60%),
    linear-gradient(180deg, #173a26 0%, #0f2819 100%);
  border-top:1px solid rgba(31,86,53,.14);
  color:#fffaf0;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.45fr 1fr 1fr 1fr;
  gap:1.35rem;
}

.footer-title{
  margin-bottom:.6rem;
  color:#fff7e8;
  font-weight:900;
}

.site-footer .muted{
  color:rgba(255,250,240,.68);
}

.site-footer a{
  display:block;
  padding:.25rem 0;
  color:rgba(255,250,240,.74);
}

.site-footer a:hover{
  color:#fffaf0;
}

.footer-brand{
  display:flex;
  align-items:center;
  gap:.75rem;
}

.footer-logo{
  width:54px;
  height:54px;
  object-fit:contain;
  background:transparent;
  border-radius:0;
}

.footer-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:.75rem;
  margin-top:1.4rem;
  padding-top:1rem;
  border-top:1px solid rgba(255,250,240,.15);
}

.footer-legal{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:1rem;
}

@media (max-width: 980px){
  .footer-grid{grid-template-columns:1fr}
}

/* Modal Lightbox */
.modal{
  position:fixed;
  inset:0;
  display:none;
  z-index:100;
}

.modal.open{display:block}

.modal-backdrop{
  position:absolute;
  inset:0;
  background:rgba(8,20,13,.74);
}

.modal-dialog{
  position:relative;
  width:min(920px, 92vw);
  margin:10vh auto 0 auto;
  overflow:hidden;
  border-radius:20px;
  background:#fffaf0;
  border:1px solid rgba(255,255,255,.22);
  box-shadow:var(--shadow);
}

.modal-image{
  width:100%;
  height:auto;
  max-height:64vh;
  object-fit:contain;
  background:#0f2819;
}

.modal-caption{
  padding:.9rem 1rem;
  color:var(--muted);
}

.modal-close{
  position:absolute;
  top:10px;
  right:10px;
  width:40px;
  height:40px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.34);
  background:rgba(18,56,34,.78);
  color:#fffaf0;
  font-size:22px;
  cursor:pointer;
}


.eyebrow{
  display:inline-flex;
  margin-bottom:.75rem;
  color:#fff4dc;
  font-size:.78rem;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.eyebrow.dark{
  color:var(--accent-dark);
}

.home-hero{
  position:relative;
  min-height:calc(100svh - 74px);
  display:grid;
  align-items:end;
  overflow:hidden;
  background:#10281b;
}

.home-hero-bg,
.home-hero-overlay{
  position:absolute;
  inset:0;
}

.home-hero-bg{
  background-size:cover;
  background-position:center;
  transform:scale(1.02);
}

.home-hero-overlay{
  background:
    linear-gradient(90deg, rgba(10,30,18,.92) 0%, rgba(10,30,18,.68) 42%, rgba(10,30,18,.18) 100%),
    linear-gradient(180deg, rgba(10,30,18,.05) 0%, rgba(10,30,18,.72) 100%);
}

.home-hero-inner{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:1fr 320px;
  gap:2rem;
  align-items:end;
  padding:clamp(4rem, 9vw, 8rem) 0 4rem;
}

.home-hero-copy{
  max-width:820px;
  color:#fffaf0;
}

.home-hero h1{
  margin:0 0 1rem;
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:clamp(3.4rem, 8vw, 7.6rem);
  line-height:.88;
  letter-spacing:-.04em;
  color:#fffaf0;
}

.home-hero p{
  max-width:58ch;
  margin:0;
  color:rgba(255,250,240,.86);
  font-size:1.08rem;
}

.hero-light-btn{
  color:#fffaf0;
  border-color:rgba(255,250,240,.35);
  background:rgba(255,250,240,.14);
}

.hero-note{
  padding:1.25rem;
  border-radius:20px;
  background:rgba(255,250,240,.14);
  border:1px solid rgba(255,250,240,.25);
  backdrop-filter:blur(14px);
  color:#fffaf0;
}

.hero-note strong{
  display:block;
  margin-bottom:.35rem;
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:1.55rem;
}

.hero-note span{
  color:rgba(255,250,240,.78);
}

.intro-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:3rem;
  align-items:start;
}

.intro-copy{
  color:var(--muted);
  font-size:1.04rem;
}

.intro-copy p:first-child{
  margin-top:0;
}

.highlight-strip{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:1px;
  margin-top:2.5rem;
  overflow:hidden;
  border-radius:22px;
  background:rgba(31,86,53,.16);
  border:1px solid rgba(31,86,53,.14);
  box-shadow:var(--shadow-soft);
}

.highlight-strip div{
  padding:1.35rem;
  background:rgba(255,250,240,.9);
}

.highlight-strip strong{
  display:block;
  margin-bottom:.35rem;
  color:var(--primary);
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:1.5rem;
  line-height:1;
}

.highlight-strip span{
  color:var(--muted);
  font-size:.94rem;
}

.section-head-row{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:1.5rem;
}

.premium-card-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:1.1rem;
}

.premium-tile{
  overflow:hidden;
  border-radius:24px;
  background:rgba(255,250,240,.92);
  border:1px solid rgba(31,86,53,.14);
  box-shadow:var(--shadow-soft);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.premium-tile:hover{
  transform:translateY(-5px);
  border-color:rgba(184,117,53,.32);
  box-shadow:var(--shadow);
}

.premium-thumb{
  min-height:280px;
  background-size:cover;
  background-position:center;
  transition:transform .5s ease;
}

.premium-tile:hover .premium-thumb{
  transform:scale(1.035);
}

.premium-meta{
  padding:1.25rem;
}

.premium-meta h3{
  margin:0 0 .45rem;
  color:var(--primary);
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:1.65rem;
  line-height:1;
}

.premium-meta p{
  margin:0;
  color:var(--muted);
}

.text-link{
  display:inline-flex;
  margin-top:1rem;
  color:var(--primary);
  font-weight:900;
}

.text-link::after{
  content:"";
  width:32px;
  height:1px;
  margin:auto 0 auto .6rem;
  background:var(--accent);
  transition:width .18s ease;
}

.text-link:hover::after{
  width:48px;
}

.experience-band{
  background:
    radial-gradient(700px 320px at 20% 0%, rgba(217,164,95,.16), transparent 60%),
    linear-gradient(135deg, #173a26, #0f2819);
  color:#fffaf0;
}

.experience-layout{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:3rem;
  align-items:center;
}

.experience-layout h2{
  margin:0 0 1rem;
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:clamp(2.3rem, 4vw, 4rem);
  line-height:.98;
}

.experience-layout p{
  max-width:58ch;
  color:rgba(255,250,240,.78);
}

.experience-list{
  display:grid;
  gap:.85rem;
}

.experience-list div{
  padding:1rem 1.1rem;
  border-radius:18px;
  background:rgba(255,250,240,.1);
  border:1px solid rgba(255,250,240,.16);
}

.experience-list strong{
  display:block;
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:1.35rem;
  color:#fffaf0;
}

.experience-list span{
  color:rgba(255,250,240,.72);
}

.final-cta{
  padding-top:5rem;
}

.final-cta-inner{
  text-align:center;
  padding:clamp(2rem, 5vw, 4rem);
  border-radius:30px;
  background:
    linear-gradient(180deg, rgba(255,250,240,.92), rgba(243,231,210,.92));
  border:1px solid rgba(31,86,53,.14);
  box-shadow:var(--shadow-soft);
}

.final-cta h2{
  max-width:760px;
  margin:.2rem auto .8rem;
  color:var(--primary);
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:clamp(2.4rem, 5vw, 4.5rem);
  line-height:.95;
}

.final-cta p{
  max-width:620px;
  margin:0 auto;
  color:var(--muted);
}

.center-actions{
  justify-content:center;
}

@media (max-width:980px){
  .home-hero-inner,
  .intro-grid,
  .experience-layout{
    grid-template-columns:1fr;
  }

  .home-hero-inner{
    padding-top:5rem;
  }

  .hero-note{
    max-width:520px;
  }

  .section-head-row{
    align-items:flex-start;
    flex-direction:column;
  }

  .premium-card-grid,
  .highlight-strip{
    grid-template-columns:1fr;
  }
}

@media (max-width:640px){
  .home-hero{
    min-height:620px;
  }

  .home-hero h1{
    font-size:clamp(3rem, 17vw, 4.4rem);
  }

  .premium-thumb{
    min-height:230px;
  }
}

.btn-outline-dark{
  background: rgba(255,250,240,.92);
  color: var(--primary) !important;
  border: 1px solid rgba(18,56,34,.28);
}

.btn-outline-dark:hover{
  background: var(--primary);
  color: #fffaf0 !important;
  border-color: var(--primary);
}

.about-hero{
  position:relative;
  min-height:560px;
  display:grid;
  align-items:end;
  overflow:hidden;
  background:#10281b;
}

.about-hero-bg,
.about-hero-overlay{
  position:absolute;
  inset:0;
}

.about-hero-bg{
  background-size:cover;
  background-position:center;
  transform:scale(1.02);
}

.about-hero-overlay{
  background:
    linear-gradient(90deg, rgba(10,30,18,.90) 0%, rgba(10,30,18,.66) 44%, rgba(10,30,18,.18) 100%),
    linear-gradient(180deg, rgba(10,30,18,.05) 0%, rgba(10,30,18,.72) 100%);
}

.about-hero-inner{
  position:relative;
  z-index:1;
  max-width:900px;
  margin-left:auto;
  margin-right:auto;
  padding:clamp(4rem, 9vw, 8rem) 0 4rem;
  color:#fffaf0;
}

.about-hero h1{
  margin:0 0 1rem;
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:clamp(3rem, 6.8vw, 6.4rem);
  line-height:.9;
  letter-spacing:-.04em;
  color:#fffaf0;
}

.about-hero p{
  max-width:66ch;
  margin:0;
  color:rgba(255,250,240,.84);
  font-size:1.08rem;
}

.about-story-grid,
.about-experience-grid,
.about-location-inner{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:3rem;
  align-items:start;
}

.about-copy{
  color:var(--muted);
  font-size:1.04rem;
}

.about-copy p:first-child{
  margin-top:0;
}

.about-values-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:1rem;
}

.about-value{
  padding:1.35rem;
  border-radius:24px;
  background:rgba(255,250,240,.92);
  border:1px solid rgba(31,86,53,.14);
  box-shadow:var(--shadow-soft);
}

.about-value span{
  display:inline-flex;
  margin-bottom:1rem;
  color:var(--accent-dark);
  font-weight:900;
  letter-spacing:.12em;
}

.about-value h3{
  margin:0 0 .5rem;
  color:var(--primary);
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:1.7rem;
  line-height:1;
}

.about-value p{
  margin:0;
  color:var(--muted);
}

.about-experience-band{
  background:
    radial-gradient(700px 320px at 15% 0%, rgba(217,164,95,.16), transparent 60%),
    linear-gradient(135deg, #173a26, #0f2819);
  color:#fffaf0;
}

.about-image-panel{
  min-height:520px;
  border-radius:30px;
  background-size:cover;
  background-position:center;
  box-shadow:0 22px 60px rgba(0,0,0,.22);
}

.about-experience-copy h2{
  margin:0 0 1rem;
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:clamp(2.3rem, 4vw, 4rem);
  line-height:.98;
  color:#fffaf0;
}

.about-experience-copy p{
  color:rgba(255,250,240,.78);
}

.about-feature-list{
  display:grid;
  gap:.75rem;
  margin:1.4rem 0;
}

.about-feature-list div{
  padding:1rem 1.1rem;
  border-radius:18px;
  background:rgba(255,250,240,.10);
  border:1px solid rgba(255,250,240,.16);
}

.about-feature-list strong{
  display:block;
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:1.35rem;
  color:#fffaf0;
}

.about-feature-list span{
  color:rgba(255,250,240,.72);
}

.location-points{
  display:grid;
  gap:.85rem;
}

.location-points div{
  padding:1.15rem 1.25rem;
  border-radius:20px;
  background:rgba(255,250,240,.92);
  border:1px solid rgba(31,86,53,.14);
  box-shadow:var(--shadow-soft);
}

.location-points strong{
  display:block;
  color:var(--primary);
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:1.4rem;
  line-height:1;
  margin-bottom:.35rem;
}

.location-points span{
  color:var(--muted);
}

@media (max-width:980px){
  .about-story-grid,
  .about-experience-grid,
  .about-location-inner,
  .about-values-grid{
    grid-template-columns:1fr;
  }

  .about-image-panel{
    min-height:360px;
  }
}

@media (max-width:640px){
  .about-hero{
    min-height:560px;
  }

  .about-hero h1{
    font-size:clamp(3rem, 16vw, 4.3rem);
  }
}

.stay-hero{
  position:relative;
  min-height:560px;
  display:grid;
  align-items:end;
  overflow:hidden;
  background:#10281b;
}

.stay-hero-bg,
.stay-hero-overlay{
  position:absolute;
  inset:0;
}

.stay-hero-bg{
  background-size:cover;
  background-position:center;
  transform:scale(1.02);
}

.stay-hero-overlay{
  background:
    linear-gradient(90deg, rgba(10,30,18,.92) 0%, rgba(10,30,18,.70) 44%, rgba(10,30,18,.22) 100%),
    linear-gradient(180deg, rgba(10,30,18,.08) 0%, rgba(10,30,18,.76) 100%);
}

.stay-hero-inner{
  position:relative;
  z-index:1;
  max-width:920px;
  padding:clamp(4rem, 9vw, 8rem) 0 4rem;
  color:#fffaf0;
}

.stay-hero h1{
  margin:0 0 1rem;
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:clamp(3rem, 7vw, 6.8rem);
  line-height:.9;
  letter-spacing:-.04em;
  color:#fffaf0;
}

.stay-hero p{
  max-width:66ch;
  margin:0;
  color:rgba(255,250,240,.84);
  font-size:1.08rem;
}

.stay-card-grid{
  display:grid;
  gap:1.25rem;
}

.stay-card{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  overflow:hidden;
  border-radius:28px;
  background:rgba(255,250,240,.94);
  border:1px solid rgba(31,86,53,.14);
  box-shadow:var(--shadow-soft);
}

.stay-card-image{
  min-height:380px;
  background-size:cover;
  background-position:center;
}

.stay-card-body{
  padding:1.5rem;
}

.stay-card-top{
  display:flex;
  justify-content:space-between;
  gap:1rem;
  align-items:start;
}

.stay-type{
  display:inline-flex;
  margin-bottom:.5rem;
  color:var(--accent-dark);
  font-size:.75rem;
  font-weight:900;
  letter-spacing:.1em;
  text-transform:uppercase;
}

.stay-card h3{
  margin:0;
  color:var(--primary);
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:clamp(2rem, 3vw, 3rem);
  line-height:.95;
}

.stay-card p{
  color:var(--muted);
}

.stay-price{
  min-width:120px;
  text-align:right;
}

.stay-price span{
  display:block;
  color:var(--muted);
  font-size:.78rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.stay-price strong{
  display:block;
  color:var(--primary);
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:1.45rem;
  line-height:1;
}

.stay-detail-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:.75rem;
  margin:1rem 0;
}

.stay-detail-grid div{
  padding:.85rem;
  border-radius:16px;
  background:rgba(31,86,53,.06);
  border:1px solid rgba(31,86,53,.10);
}

.stay-detail-grid strong{
  display:block;
  color:var(--primary);
  line-height:1.2;
}

.stay-detail-grid span{
  display:block;
  margin-top:.2rem;
  color:var(--muted);
  font-size:.82rem;
}

.stay-actions{
  display:flex;
  flex-wrap:wrap;
  gap:.7rem;
  margin-top:1.2rem;
}

.empty-stay-box{
  max-width:760px;
  padding:clamp(1.5rem, 4vw, 3rem);
  border-radius:28px;
  background:rgba(255,250,240,.94);
  border:1px solid rgba(31,86,53,.14);
  box-shadow:var(--shadow-soft);
}

.empty-stay-box h3{
  margin:.2rem 0 .6rem;
  color:var(--primary);
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:2.3rem;
  line-height:1;
}

.empty-stay-box p{
  max-width:58ch;
  color:var(--muted);
}

.included-box{
  padding:clamp(1.5rem, 4vw, 3rem);
  border-radius:30px;
  background:
    linear-gradient(180deg, rgba(255,250,240,.94), rgba(243,231,210,.92));
  border:1px solid rgba(31,86,53,.14);
  box-shadow:var(--shadow-soft);
}

.included-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:.85rem;
  margin:1.5rem 0;
}

.included-grid div{
  padding:1rem;
  border-radius:18px;
  background:rgba(255,250,240,.78);
  border:1px solid rgba(31,86,53,.12);
}

.included-grid strong{
  display:block;
  color:var(--primary);
  margin-bottom:.25rem;
}

.included-grid span{
  color:var(--muted);
  font-size:.92rem;
}

.stay-experience-band{
  background:
    radial-gradient(700px 320px at 18% 0%, rgba(217,164,95,.16), transparent 60%),
    linear-gradient(135deg, #173a26, #0f2819);
  color:#fffaf0;
}

.stay-experience-inner{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:3rem;
  align-items:center;
}

.stay-experience-inner h2{
  margin:0 0 1rem;
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:clamp(2.3rem, 4vw, 4rem);
  line-height:.98;
  color:#fffaf0;
}

.stay-experience-inner p{
  color:rgba(255,250,240,.78);
}

.stay-experience-points{
  display:grid;
  gap:.8rem;
}

.stay-experience-points div{
  padding:1rem 1.1rem;
  border-radius:18px;
  background:rgba(255,250,240,.10);
  border:1px solid rgba(255,250,240,.16);
}

.stay-experience-points strong{
  display:block;
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:1.35rem;
  color:#fffaf0;
}

.stay-experience-points span{
  color:rgba(255,250,240,.72);
}

@media (max-width:980px){
  .stay-card,
  .stay-experience-inner{
    grid-template-columns:1fr;
  }

  .stay-card-image{
    min-height:320px;
  }

  .stay-detail-grid,
  .included-grid{
    grid-template-columns:1fr;
  }

  .stay-card-top{
    flex-direction:column;
  }

  .stay-price{
    text-align:left;
  }
}

@media (max-width:640px){
  .stay-hero{
    min-height:560px;
  }

  .stay-hero h1{
    font-size:clamp(3rem, 16vw, 4.4rem);
  }

  .stay-card-body{
    padding:1.15rem;
  }
}

.contact-hero{
  position:relative;
  min-height:520px;
  display:grid;
  align-items:end;
  overflow:hidden;
  background:#10281b;
}

.contact-hero-bg,
.contact-hero-overlay{
  position:absolute;
  inset:0;
}

.contact-hero-bg{
  background-size:cover;
  background-position:center;
  transform:scale(1.02);
}

.contact-hero-overlay{
  background:
    linear-gradient(90deg, rgba(10,30,18,.92) 0%, rgba(10,30,18,.70) 45%, rgba(10,30,18,.20) 100%),
    linear-gradient(180deg, rgba(10,30,18,.06) 0%, rgba(10,30,18,.76) 100%);
}

.contact-hero-inner{
  position:relative;
  z-index:1;
  max-width:880px;
  padding:clamp(4rem, 9vw, 7rem) 0 4rem;
  color:#fffaf0;
}

.contact-hero h1{
  margin:0 0 1rem;
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:clamp(3rem, 7vw, 6.4rem);
  line-height:.9;
  letter-spacing:-.04em;
  color:#fffaf0;
}

.contact-hero p{
  max-width:64ch;
  margin:0;
  color:rgba(255,250,240,.84);
  font-size:1.08rem;
}

.contact-messages{
  display:grid;
  gap:.75rem;
  margin-bottom:1.25rem;
}

.contact-message-card{
  padding:1rem 1.1rem;
  border-radius:18px;
  background:rgba(255,250,240,.94);
  border:1px solid rgba(31,86,53,.14);
  box-shadow:var(--shadow-soft);
}

.contact-message-card strong{
  display:block;
  color:var(--primary);
}

.contact-message-card span{
  color:var(--muted);
}

.contact-grid{
  display:grid;
  grid-template-columns:.82fr 1.18fr;
  gap:1.25rem;
  align-items:start;
}

.contact-info-panel,
.contact-form-card,
.map-card{
  border-radius:28px;
  background:rgba(255,250,240,.94);
  border:1px solid rgba(31,86,53,.14);
  box-shadow:var(--shadow-soft);
  overflow:hidden;
}

.contact-info-panel{
  padding:1.5rem;
  position:sticky;
  top:96px;
}

.contact-info-panel h2,
.contact-form-card h2{
  margin:.2rem 0 .65rem;
  color:var(--primary);
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:clamp(2.2rem, 3.5vw, 3.4rem);
  line-height:.95;
}

.contact-info-panel p,
.contact-form-card p,
.map-card p{
  color:var(--muted);
}

.contact-action-list{
  display:grid;
  gap:.7rem;
  margin:1.25rem 0;
}

.contact-action{
  display:block;
  padding:1rem;
  border-radius:18px;
  background:rgba(31,86,53,.06);
  border:1px solid rgba(31,86,53,.12);
}

.contact-action.primary{
  background:linear-gradient(135deg, var(--primary), var(--primary-2));
  color:#fffaf0;
}

.contact-action strong{
  display:block;
}

.contact-action span{
  display:block;
  margin-top:.15rem;
  color:var(--muted);
  font-size:.9rem;
}

.contact-action.primary span{
  color:rgba(255,250,240,.75);
}

.suggested-message{
  padding:1rem;
  border-radius:18px;
  background:rgba(184,117,53,.10);
  border:1px solid rgba(184,117,53,.18);
}

.suggested-message span{
  display:block;
  color:var(--accent-dark);
  font-size:.75rem;
  font-weight:900;
  letter-spacing:.1em;
  text-transform:uppercase;
}

.suggested-message p{
  margin:.4rem 0 0;
}

.business-details{
  margin-top:1.4rem;
  padding-top:1.2rem;
  border-top:1px solid rgba(31,86,53,.13);
}

.business-details h3{
  margin:0 0 .8rem;
  color:var(--primary);
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:1.7rem;
}

.detail-list{
  display:grid;
  gap:.75rem;
}

.detail-list div{
  padding:.85rem;
  border-radius:16px;
  background:rgba(255,255,255,.45);
  border:1px solid rgba(31,86,53,.10);
}

.detail-list strong{
  display:block;
  color:var(--primary);
}

.detail-list span{
  display:block;
  margin-top:.15rem;
  color:var(--muted);
  font-size:.88rem;
}

.contact-main-panel{
  display:grid;
  gap:1.25rem;
}

.map-card{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
}

.map-visual{
  min-height:340px;
  background-size:cover;
  background-position:center;
}

.map-content{
  padding:1.35rem;
}

.map-content h3{
  margin:.2rem 0 .6rem;
  color:var(--primary);
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:2.4rem;
  line-height:1;
}

.map-points{
  display:flex;
  flex-wrap:wrap;
  gap:.45rem;
  margin:1rem 0;
}

.map-points span{
  padding:.32rem .65rem;
  border-radius:999px;
  background:rgba(31,86,53,.07);
  border:1px solid rgba(31,86,53,.12);
  color:var(--primary);
  font-size:.82rem;
  font-weight:800;
}

.contact-form-card{
  padding:1.5rem;
}

.contact-form{
  display:grid;
  gap:.95rem;
  margin-top:1.2rem;
}

.honeypot{
  position:absolute;
  left:-10000px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}

.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:.85rem;
}

.form-field label{
  display:block;
  margin-bottom:.35rem;
  color:var(--primary);
  font-size:.88rem;
  font-weight:900;
}

.form-field input,
.form-field textarea{
  width:100%;
  padding:.9rem .95rem;
  border-radius:16px;
  border:1px solid rgba(31,86,53,.18);
  background:rgba(255,255,255,.55);
  color:var(--text);
  font:inherit;
  outline:none;
  transition:border-color .16s ease, box-shadow .16s ease, background .16s ease;
}

.form-field input:focus,
.form-field textarea:focus{
  border-color:rgba(184,117,53,.55);
  background:#fffaf0;
  box-shadow:0 0 0 4px rgba(184,117,53,.12);
}

.form-actions{
  display:flex;
  gap:.65rem;
  flex-wrap:wrap;
  align-items:center;
}

.form-tip{
  margin:.2rem 0 0;
  color:var(--muted);
  font-size:.9rem;
}

@media (max-width:980px){
  .contact-grid,
  .map-card{
    grid-template-columns:1fr;
  }

  .contact-info-panel{
    position:relative;
    top:auto;
  }

  .map-visual{
    min-height:260px;
  }
}

@media (max-width:640px){
  .contact-hero{
    min-height:540px;
  }

  .contact-hero h1{
    font-size:clamp(3rem, 16vw, 4.4rem);
  }

  .form-row{
    grid-template-columns:1fr;
  }
}

.experience-hero{
  position:relative;
  min-height:560px;
  display:grid;
  align-items:end;
  overflow:hidden;
  background:#10281b;
}

.experience-hero-bg,
.experience-hero-overlay{
  position:absolute;
  inset:0;
}

.experience-hero-bg{
  background-size:cover;
  background-position:center;
  transform:scale(1.02);
}

.experience-hero-overlay{
  background:
    linear-gradient(90deg, rgba(10,30,18,.92) 0%, rgba(10,30,18,.70) 44%, rgba(10,30,18,.22) 100%),
    linear-gradient(180deg, rgba(10,30,18,.08) 0%, rgba(10,30,18,.76) 100%);
}

.experience-hero-inner{
  position:relative;
  z-index:1;
  max-width:940px;
  padding:clamp(4rem, 9vw, 8rem) 0 4rem;
  color:#fffaf0;
}

.experience-hero h1{
  margin:0 0 1rem;
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:clamp(3rem, 7vw, 6.8rem);
  line-height:.9;
  letter-spacing:-.04em;
  color:#fffaf0;
}

.experience-hero p{
  max-width:68ch;
  margin:0;
  color:rgba(255,250,240,.84);
  font-size:1.08rem;
}

.experience-theme-strip{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:1px;
  margin-top:2.5rem;
  overflow:hidden;
  border-radius:24px;
  background:rgba(31,86,53,.16);
  border:1px solid rgba(31,86,53,.14);
  box-shadow:var(--shadow-soft);
}

.experience-theme-strip div{
  padding:1.25rem;
  background:rgba(255,250,240,.92);
}

.experience-theme-strip strong{
  display:block;
  margin-bottom:.35rem;
  color:var(--primary);
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:1.45rem;
  line-height:1;
}

.experience-theme-strip span{
  color:var(--muted);
  font-size:.92rem;
}

.experience-card-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:1.1rem;
}

.experience-card{
  display:flex;
  flex-direction:column;
  overflow:hidden;
  border-radius:26px;
  background:rgba(255,250,240,.94);
  border:1px solid rgba(31,86,53,.14);
  box-shadow:var(--shadow-soft);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.experience-card:hover{
  transform:translateY(-5px);
  border-color:rgba(184,117,53,.32);
  box-shadow:var(--shadow);
}

.experience-card-image{
  min-height:250px;
  background-size:cover;
  background-position:center;
  transition:transform .5s ease;
}

.experience-card:hover .experience-card-image{
  transform:scale(1.035);
}

.experience-card-body{
  display:flex;
  flex:1;
  flex-direction:column;
  padding:1.2rem;
}

.experience-card-top{
  display:flex;
  justify-content:space-between;
  gap:.75rem;
  align-items:flex-start;
  margin-bottom:.7rem;
}

.experience-type{
  color:var(--accent-dark);
  font-size:.74rem;
  font-weight:900;
  letter-spacing:.1em;
  text-transform:uppercase;
}

.experience-price{
  display:inline-flex;
  padding:.3rem .6rem;
  border-radius:999px;
  background:rgba(184,117,53,.10);
  border:1px solid rgba(184,117,53,.18);
  color:var(--accent-dark);
  font-size:.76rem;
  font-weight:900;
  white-space:nowrap;
}

.experience-card h3{
  margin:0 0 .5rem;
  color:var(--primary);
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:1.75rem;
  line-height:1;
}

.experience-card p{
  margin:0;
  color:var(--muted);
}

.experience-facts{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:.65rem;
  margin:1rem 0 1.15rem;
}

.experience-facts div{
  padding:.75rem;
  border-radius:15px;
  background:rgba(31,86,53,.06);
  border:1px solid rgba(31,86,53,.10);
}

.experience-facts strong{
  display:block;
  color:var(--primary);
  line-height:1.2;
}

.experience-facts span{
  display:block;
  margin-top:.15rem;
  color:var(--muted);
  font-size:.8rem;
}

.experience-card .btn{
  margin-top:auto;
}

.empty-experience-box{
  max-width:760px;
  padding:clamp(1.5rem, 4vw, 3rem);
  border-radius:28px;
  background:rgba(255,250,240,.94);
  border:1px solid rgba(31,86,53,.14);
  box-shadow:var(--shadow-soft);
}

.empty-experience-box h3{
  margin:.2rem 0 .6rem;
  color:var(--primary);
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:2.3rem;
  line-height:1;
}

.empty-experience-box p{
  max-width:58ch;
  color:var(--muted);
}

.experience-category-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:1rem;
}

.experience-category-card{
  padding:1.25rem;
  border-radius:24px;
  background:rgba(255,250,240,.92);
  border:1px solid rgba(31,86,53,.14);
  box-shadow:var(--shadow-soft);
}

.experience-category-card span{
  display:inline-flex;
  margin-bottom:1rem;
  color:var(--accent-dark);
  font-weight:900;
  letter-spacing:.12em;
}

.experience-category-card h3{
  margin:0 0 .5rem;
  color:var(--primary);
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:1.65rem;
  line-height:1;
}

.experience-category-card p{
  margin:0;
  color:var(--muted);
}

.experience-note-band{
  background:
    radial-gradient(700px 320px at 18% 0%, rgba(217,164,95,.16), transparent 60%),
    linear-gradient(135deg, #173a26, #0f2819);
  color:#fffaf0;
}

.experience-note-inner{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:3rem;
  align-items:center;
}

.experience-note-inner h2{
  margin:0;
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:clamp(2.3rem, 4vw, 4rem);
  line-height:.98;
  color:#fffaf0;
}

.experience-note-inner p{
  color:rgba(255,250,240,.78);
}

@media (max-width:1080px){
  .experience-card-grid,
  .experience-category-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .experience-theme-strip{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media (max-width:980px){
  .experience-note-inner{
    grid-template-columns:1fr;
  }
}

@media (max-width:640px){
  .experience-hero{
    min-height:560px;
  }

  .experience-hero h1{
    font-size:clamp(3rem, 16vw, 4.4rem);
  }

  .experience-card-grid,
  .experience-category-grid,
  .experience-theme-strip{
    grid-template-columns:1fr;
  }

  .experience-facts{
    grid-template-columns:1fr;
  }
}

.policies-hero{
  position:relative;
  min-height:520px;
  display:grid;
  align-items:end;
  overflow:hidden;
  background:#10281b;
}

.policies-hero-bg,
.policies-hero-overlay{
  position:absolute;
  inset:0;
}

.policies-hero-bg{
  background-size:cover;
  background-position:center;
  transform:scale(1.02);
}

.policies-hero-overlay{
  background:
    linear-gradient(90deg, rgba(10,30,18,.92) 0%, rgba(10,30,18,.70) 45%, rgba(10,30,18,.20) 100%),
    linear-gradient(180deg, rgba(10,30,18,.06) 0%, rgba(10,30,18,.76) 100%);
}

.policies-hero-inner{
  position:relative;
  z-index:1;
  max-width:900px;
  padding:clamp(4rem, 9vw, 7rem) 0 4rem;
  color:#fffaf0;
}

.policies-hero h1{
  margin:0 0 1rem;
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:clamp(3rem, 7vw, 6.3rem);
  line-height:.9;
  letter-spacing:-.04em;
  color:#fffaf0;
}

.policies-hero p{
  max-width:68ch;
  margin:0;
  color:rgba(255,250,240,.84);
  font-size:1.08rem;
}

.policies-layout{
  display:grid;
  grid-template-columns:.78fr 1.22fr;
  gap:1.25rem;
  align-items:start;
}

.policies-summary{
  position:sticky;
  top:96px;
  padding:1.5rem;
  border-radius:28px;
  background:rgba(255,250,240,.94);
  border:1px solid rgba(31,86,53,.14);
  box-shadow:var(--shadow-soft);
}

.policies-summary h2{
  margin:.2rem 0 .65rem;
  color:var(--primary);
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:clamp(2.2rem, 3.5vw, 3.3rem);
  line-height:.95;
}

.policies-summary p{
  color:var(--muted);
}

.summary-list{
  display:grid;
  gap:.7rem;
  margin:1.25rem 0;
}

.summary-list div{
  padding:.9rem;
  border-radius:16px;
  background:rgba(31,86,53,.06);
  border:1px solid rgba(31,86,53,.10);
}

.summary-list strong{
  display:block;
  color:var(--primary);
}

.summary-list span{
  display:block;
  margin-top:.15rem;
  color:var(--muted);
  font-size:.9rem;
}

.policies-content{
  display:grid;
  gap:.9rem;
}

.policy-card{
  padding:1.25rem;
  border-radius:24px;
  background:rgba(255,250,240,.94);
  border:1px solid rgba(31,86,53,.14);
  box-shadow:var(--shadow-soft);
}

.policy-card span{
  display:inline-flex;
  margin-bottom:.7rem;
  color:var(--accent-dark);
  font-weight:900;
  letter-spacing:.12em;
}

.policy-card h3{
  margin:0 0 .55rem;
  color:var(--primary);
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:1.75rem;
  line-height:1;
}

.policy-card p{
  margin:0;
  color:var(--muted);
}

.policy-card strong{
  color:var(--primary);
}

@media (max-width:980px){
  .policies-layout{
    grid-template-columns:1fr;
  }

  .policies-summary{
    position:relative;
    top:auto;
  }
}

@media (max-width:640px){
  .policies-hero{
    min-height:540px;
  }

  .policies-hero h1{
    font-size:clamp(3rem, 16vw, 4.4rem);
  }
}

.meals-hero{
  position:relative;
  min-height:540px;
  display:grid;
  align-items:end;
  overflow:hidden;
  background:#10281b;
}

.meals-hero-bg,
.meals-hero-overlay{
  position:absolute;
  inset:0;
}

.meals-hero-bg{
  background-size:cover;
  background-position:center;
  transform:scale(1.02);
}

.meals-hero-overlay{
  background:
    linear-gradient(90deg, rgba(10,30,18,.92) 0%, rgba(10,30,18,.70) 44%, rgba(10,30,18,.22) 100%),
    linear-gradient(180deg, rgba(10,30,18,.08) 0%, rgba(10,30,18,.76) 100%);
}

.meals-hero-inner{
  position:relative;
  z-index:1;
  max-width:920px;
  padding:clamp(4rem, 9vw, 7.5rem) 0 4rem;
  color:#fffaf0;
}

.meals-hero h1{
  margin:0 0 1rem;
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:clamp(3rem, 7vw, 6.5rem);
  line-height:.9;
  letter-spacing:-.04em;
  color:#fffaf0;
}

.meals-hero p{
  max-width:66ch;
  margin:0;
  color:rgba(255,250,240,.84);
  font-size:1.08rem;
}

.meals-highlight-strip{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:1px;
  margin-top:2.5rem;
  overflow:hidden;
  border-radius:24px;
  background:rgba(31,86,53,.16);
  border:1px solid rgba(31,86,53,.14);
  box-shadow:var(--shadow-soft);
}

.meals-highlight-strip div{
  padding:1.25rem;
  background:rgba(255,250,240,.92);
}

.meals-highlight-strip strong{
  display:block;
  margin-bottom:.35rem;
  color:var(--primary);
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:1.45rem;
  line-height:1;
}

.meals-highlight-strip span{
  color:var(--muted);
  font-size:.92rem;
}

.menu-category-stack{
  display:grid;
  gap:1.4rem;
}

.menu-category-block{
  padding:clamp(1rem, 2.5vw, 1.5rem);
  border-radius:30px;
  background:rgba(255,250,240,.78);
  border:1px solid rgba(31,86,53,.12);
  box-shadow:var(--shadow-soft);
}

.menu-category-head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:1.5rem;
  margin-bottom:1rem;
}

.menu-category-head h3{
  margin:.2rem 0 0;
  color:var(--primary);
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:clamp(2rem, 3.5vw, 3.2rem);
  line-height:.95;
}

.menu-category-head p{
  max-width:42ch;
  margin:0;
  color:var(--muted);
  text-align:right;
}

.meal-card-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:1rem;
}

.meal-card{
  overflow:hidden;
  border-radius:24px;
  background:rgba(255,250,240,.96);
  border:1px solid rgba(31,86,53,.14);
  box-shadow:0 10px 26px rgba(31,45,28,.08);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.meal-card:hover{
  transform:translateY(-4px);
  border-color:rgba(184,117,53,.32);
  box-shadow:var(--shadow);
}

.meal-card-image{
  min-height:220px;
  background-size:cover;
  background-position:center;
  transition:transform .5s ease;
}

.meal-card:hover .meal-card-image{
  transform:scale(1.035);
}

.meal-card-body{
  padding:1.1rem;
}

.meal-card-top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:.75rem;
  margin-bottom:.65rem;
}

.meal-period{
  color:var(--accent-dark);
  font-size:.74rem;
  font-weight:900;
  letter-spacing:.1em;
  text-transform:uppercase;
}

.meal-price{
  display:inline-flex;
  padding:.3rem .6rem;
  border-radius:999px;
  background:rgba(31,86,53,.08);
  border:1px solid rgba(31,86,53,.12);
  color:var(--primary);
  font-size:.78rem;
  font-weight:900;
  white-space:nowrap;
}

.meal-card h4{
  margin:0 0 .45rem;
  color:var(--primary);
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:1.65rem;
  line-height:1;
}

.meal-card p{
  margin:0;
  color:var(--muted);
}

.preorder-note{
  margin-top:1rem;
  padding:.85rem;
  border-radius:16px;
  background:rgba(184,117,53,.10);
  border:1px solid rgba(184,117,53,.18);
}

.preorder-note strong{
  display:block;
  color:var(--accent-dark);
}

.preorder-note span{
  display:block;
  margin-top:.15rem;
  color:var(--muted);
  font-size:.88rem;
}

.empty-menu-box{
  max-width:760px;
  padding:clamp(1.5rem, 4vw, 3rem);
  border-radius:28px;
  background:rgba(255,250,240,.94);
  border:1px solid rgba(31,86,53,.14);
  box-shadow:var(--shadow-soft);
}

.empty-menu-box h3{
  margin:.2rem 0 .6rem;
  color:var(--primary);
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:2.3rem;
  line-height:1;
}

.empty-menu-box p{
  max-width:58ch;
  color:var(--muted);
}

.dining-experience-band{
  background:
    radial-gradient(700px 320px at 18% 0%, rgba(217,164,95,.16), transparent 60%),
    linear-gradient(135deg, #173a26, #0f2819);
  color:#fffaf0;
}

.dining-experience-inner{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:3rem;
  align-items:center;
}

.dining-experience-inner h2{
  margin:0 0 1rem;
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:clamp(2.3rem, 4vw, 4rem);
  line-height:.98;
  color:#fffaf0;
}

.dining-experience-inner p{
  color:rgba(255,250,240,.78);
}

.dining-points{
  display:grid;
  gap:.8rem;
}

.dining-points div{
  padding:1rem 1.1rem;
  border-radius:18px;
  background:rgba(255,250,240,.10);
  border:1px solid rgba(255,250,240,.16);
}

.dining-points strong{
  display:block;
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:1.35rem;
  color:#fffaf0;
}

.dining-points span{
  color:rgba(255,250,240,.72);
}

.meal-guidance-box{
  padding:clamp(1.5rem, 4vw, 3rem);
  border-radius:30px;
  background:
    linear-gradient(180deg, rgba(255,250,240,.94), rgba(243,231,210,.92));
  border:1px solid rgba(31,86,53,.14);
  box-shadow:var(--shadow-soft);
}

.meal-guidance-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:.85rem;
  margin:1.5rem 0;
}

.meal-guidance-grid div{
  padding:1rem;
  border-radius:18px;
  background:rgba(255,250,240,.78);
  border:1px solid rgba(31,86,53,.12);
}

.meal-guidance-grid strong{
  display:block;
  color:var(--primary);
  margin-bottom:.25rem;
}

.meal-guidance-grid span{
  color:var(--muted);
  font-size:.92rem;
}

@media (max-width:1080px){
  .meal-card-grid,
  .meal-guidance-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .meals-highlight-strip{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media (max-width:980px){
  .dining-experience-inner{
    grid-template-columns:1fr;
  }

  .menu-category-head{
    align-items:flex-start;
    flex-direction:column;
  }

  .menu-category-head p{
    text-align:left;
  }
}

@media (max-width:640px){
  .meals-hero{
    min-height:540px;
  }

  .meals-hero h1{
    font-size:clamp(3rem, 16vw, 4.4rem);
  }

  .meal-card-grid,
  .meal-guidance-grid,
  .meals-highlight-strip{
    grid-template-columns:1fr;
  }
}

.gallery-hero{
  position:relative;
  min-height:540px;
  display:grid;
  align-items:end;
  overflow:hidden;
  background:#10281b;
}

.gallery-hero-bg,
.gallery-hero-overlay{
  position:absolute;
  inset:0;
}

.gallery-hero-bg{
  background-size:cover;
  background-position:center;
  transform:scale(1.02);
}

.gallery-hero-overlay{
  background:
    linear-gradient(90deg, rgba(10,30,18,.92) 0%, rgba(10,30,18,.70) 44%, rgba(10,30,18,.22) 100%),
    linear-gradient(180deg, rgba(10,30,18,.08) 0%, rgba(10,30,18,.76) 100%);
}

.gallery-hero-inner{
  position:relative;
  z-index:1;
  max-width:900px;
  padding:clamp(4rem, 9vw, 7.5rem) 0 4rem;
  color:#fffaf0;
}

.gallery-hero h1{
  margin:0 0 1rem;
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:clamp(3rem, 7vw, 6.5rem);
  line-height:.9;
  letter-spacing:-.04em;
  color:#fffaf0;
}

.gallery-hero p{
  max-width:66ch;
  margin:0;
  color:rgba(255,250,240,.84);
  font-size:1.08rem;
}

.gallery-masonry{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  grid-auto-rows:220px;
  gap:1rem;
}

.gallery-item{
  position:relative;
  overflow:hidden;
  padding:0;
  border:0;
  border-radius:24px;
  background:#10281b;
  cursor:pointer;
  box-shadow:var(--shadow-soft);
}

.gallery-item.wide{
  grid-column:span 2;
}

.gallery-item.tall{
  grid-row:span 2;
}

.gallery-photo{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  transition:transform .55s ease;
}

.gallery-item:hover .gallery-photo{
  transform:scale(1.05);
}

.gallery-item::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, transparent 38%, rgba(10,30,18,.78) 100%);
}

.gallery-caption{
  position:absolute;
  left:1rem;
  right:1rem;
  bottom:1rem;
  z-index:1;
  text-align:left;
  color:#fffaf0;
}

.gallery-caption strong{
  display:block;
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:1.45rem;
  line-height:1;
}

.gallery-caption em{
  display:block;
  margin-top:.25rem;
  color:rgba(255,250,240,.72);
  font-style:normal;
  font-size:.86rem;
}

.empty-gallery-box{
  max-width:760px;
  padding:clamp(1.5rem, 4vw, 3rem);
  border-radius:28px;
  background:rgba(255,250,240,.94);
  border:1px solid rgba(31,86,53,.14);
  box-shadow:var(--shadow-soft);
}

.empty-gallery-box h3{
  margin:.2rem 0 .6rem;
  color:var(--primary);
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:2.3rem;
  line-height:1;
}

.empty-gallery-box p{
  max-width:58ch;
  color:var(--muted);
}

.gallery-guide-band{
  background:
    radial-gradient(700px 320px at 18% 0%, rgba(217,164,95,.16), transparent 60%),
    linear-gradient(135deg, #173a26, #0f2819);
  color:#fffaf0;
}

.gallery-guide-inner{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:3rem;
  align-items:center;
}

.gallery-guide-inner h2{
  margin:0 0 1rem;
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:clamp(2.3rem, 4vw, 4rem);
  line-height:.98;
  color:#fffaf0;
}

.gallery-guide-inner p{
  color:rgba(255,250,240,.78);
}

.gallery-guide-list{
  display:grid;
  gap:.8rem;
}

.gallery-guide-list div{
  padding:1rem 1.1rem;
  border-radius:18px;
  background:rgba(255,250,240,.10);
  border:1px solid rgba(255,250,240,.16);
}

.gallery-guide-list strong{
  display:block;
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:1.35rem;
  color:#fffaf0;
}

.gallery-guide-list span{
  color:rgba(255,250,240,.72);
}

@media (max-width:1080px){
  .gallery-masonry{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (max-width:980px){
  .gallery-guide-inner{
    grid-template-columns:1fr;
  }
}

@media (max-width:640px){
  .gallery-hero{
    min-height:540px;
  }

  .gallery-hero h1{
    font-size:clamp(3rem, 16vw, 4.4rem);
  }

  .gallery-masonry{
    grid-template-columns:1fr;
    grid-auto-rows:260px;
  }

  .gallery-item.wide,
  .gallery-item.tall{
    grid-column:auto;
    grid-row:auto;
  }
}

.booking-hero{
  position:relative;
  min-height:460px;
  display:grid;
  align-items:end;
  overflow:hidden;
  background:#10281b;
}

.booking-hero-bg,
.booking-hero-overlay{
  position:absolute;
  inset:0;
}

.booking-hero-bg{
  background-size:cover;
  background-position:center;
  transform:scale(1.02);
}

.booking-hero-overlay{
  background:
    linear-gradient(90deg, rgba(10,30,18,.92) 0%, rgba(10,30,18,.70) 45%, rgba(10,30,18,.20) 100%),
    linear-gradient(180deg, rgba(10,30,18,.06) 0%, rgba(10,30,18,.76) 100%);
}

.booking-hero-inner{
  position:relative;
  z-index:1;
  max-width:880px;
  padding:clamp(4rem, 8vw, 6.5rem) 0 3.5rem;
  color:#fffaf0;
}

.booking-hero h1{
  margin:0 0 1rem;
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:clamp(3rem, 7vw, 6rem);
  line-height:.9;
  letter-spacing:-.04em;
  color:#fffaf0;
}

.booking-hero p{
  max-width:66ch;
  margin:0;
  color:rgba(255,250,240,.84);
  font-size:1.08rem;
}

.booking-hero strong{
  color:#fffaf0;
}

.booking-layout{
  display:grid;
  grid-template-columns:.82fr 1.18fr;
  gap:1.25rem;
  align-items:start;
}

.booking-summary-card,
.booking-form-card{
  overflow:hidden;
  border-radius:28px;
  background:rgba(255,250,240,.94);
  border:1px solid rgba(31,86,53,.14);
  box-shadow:var(--shadow-soft);
}

.booking-summary-card{
  position:sticky;
  top:96px;
}

.booking-summary-image{
  min-height:300px;
  background-size:cover;
  background-position:center;
}

.booking-summary-body,
.booking-form-card{
  padding:1.5rem;
}

.booking-summary-body h2,
.booking-form-card h2{
  margin:.2rem 0 .65rem;
  color:var(--primary);
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:clamp(2.1rem, 3.5vw, 3.3rem);
  line-height:.95;
}

.booking-summary-body p,
.booking-form-card p{
  color:var(--muted);
}

.booking-facts{
  display:grid;
  gap:.7rem;
  margin:1.25rem 0;
}

.booking-facts div{
  padding:.9rem;
  border-radius:16px;
  background:rgba(31,86,53,.06);
  border:1px solid rgba(31,86,53,.10);
}

.booking-facts strong{
  display:block;
  color:var(--primary);
}

.booking-facts span{
  display:block;
  margin-top:.15rem;
  color:var(--muted);
  font-size:.88rem;
}

.booking-form{
  display:grid;
  gap:.95rem;
  margin-top:1.2rem;
}

.booking-form .form-field input,
.booking-form .form-field select{
  width:100%;
  padding:.9rem .95rem;
  min-height:50px;
  border-radius:16px;
  border:1px solid rgba(31,86,53,.18);
  background:rgba(255,255,255,.62);
  color:var(--text);
  font:inherit;
  outline:none;
  transition:border-color .16s ease, box-shadow .16s ease, background .16s ease;
}

.booking-form .form-field input:focus,
.booking-form .form-field select:focus{
  border-color:rgba(184,117,53,.55);
  background:#fffaf0;
  box-shadow:0 0 0 4px rgba(184,117,53,.12);
}

.booking-messages{
  display:grid;
  gap:.75rem;
  margin:1rem 0;
}

.booking-message,
.booking-error{
  padding:1rem;
  border-radius:16px;
  background:rgba(184,117,53,.10);
  border:1px solid rgba(184,117,53,.20);
  color:var(--accent-dark);
  font-weight:700;
}

.booking-error{
  background:rgba(160,55,45,.10);
  border-color:rgba(160,55,45,.20);
  color:#8c2f25;
}

.booking-note{
  margin:.2rem 0 0;
  color:var(--muted);
  font-size:.92rem;
}

@media (max-width:980px){
  .booking-layout{
    grid-template-columns:1fr;
  }

  .booking-summary-card{
    position:relative;
    top:auto;
  }
}

@media (max-width:640px){
  .booking-hero{
    min-height:500px;
  }

  .booking-hero h1{
    font-size:clamp(3rem, 16vw, 4.3rem);
  }
}

.results-layout{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:1.25rem;
  align-items:start;
}

.results-full{
  grid-column:1 / -1;
}

.results-main-card,
.results-price-card,
.available-units-card,
.availability-panel{
  border-radius:28px;
  background:rgba(255,250,240,.94);
  border:1px solid rgba(31,86,53,.14);
  box-shadow:var(--shadow-soft);
}

.results-main-card,
.results-price-card,
.available-units-card,
.availability-panel{
  padding:1.5rem;
}

.results-stay-head{
  display:flex;
  justify-content:space-between;
  gap:1rem;
  align-items:flex-start;
}

.results-stay-head h2,
.results-price-card h2,
.available-units-card h3,
.availability-panel h3{
  margin:.2rem 0 .65rem;
  color:var(--primary);
  font-family:"Cormorant Garamond", Georgia, serif;
  line-height:.95;
}

.results-stay-head h2{
  font-size:clamp(2.3rem, 4vw, 3.8rem);
}

.results-price-card h2{
  font-size:clamp(2.6rem, 4vw, 4rem);
}

.available-units-card h3,
.availability-panel h3{
  font-size:clamp(2rem, 3vw, 3rem);
}

.results-stay-head p,
.results-price-card p,
.availability-panel p{
  color:var(--muted);
}

.availability-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:max-content;
  padding:.5rem .8rem;
  border-radius:999px;
  font-size:.78rem;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.availability-badge.available{
  color:#1f5635;
  background:rgba(31,86,53,.10);
  border:1px solid rgba(31,86,53,.20);
}

.availability-badge.unavailable{
  color:#8c5425;
  background:rgba(184,117,53,.12);
  border:1px solid rgba(184,117,53,.24);
}

.results-detail-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:.75rem;
  margin-top:1.2rem;
}

.results-detail-grid div{
  padding:.9rem;
  border-radius:16px;
  background:rgba(31,86,53,.06);
  border:1px solid rgba(31,86,53,.10);
}

.results-detail-grid span{
  display:block;
  color:var(--muted);
  font-size:.78rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.results-detail-grid strong{
  display:block;
  margin-top:.25rem;
  color:var(--primary);
}

.results-price-card{
  position:sticky;
  top:96px;
}

.deposit-line{
  display:flex;
  justify-content:space-between;
  gap:1rem;
  padding:1rem 0;
  margin:1rem 0;
  border-top:1px solid rgba(31,86,53,.13);
  border-bottom:1px solid rgba(31,86,53,.13);
}

.deposit-line span{
  color:var(--muted);
}

.deposit-line strong{
  color:var(--primary);
}

.price-note{
  font-size:.9rem;
}

.availability-panel.success{
  border-color:rgba(31,86,53,.22);
  background:linear-gradient(180deg, rgba(255,250,240,.96), rgba(238,247,238,.92));
}

.availability-panel.info{
  border-color:rgba(31,86,53,.16);
}

.availability-panel.warning{
  border-color:rgba(184,117,53,.26);
  background:linear-gradient(180deg, rgba(255,250,240,.96), rgba(250,238,221,.94));
}

.available-unit-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:.85rem;
  margin-top:1rem;
}

.available-unit{
  padding:1rem;
  border-radius:18px;
  background:rgba(31,86,53,.06);
  border:1px solid rgba(31,86,53,.10);
}

.available-unit strong{
  display:block;
  color:var(--primary);
  font-size:1.1rem;
}

.available-unit span{
  display:block;
  margin-top:.15rem;
  color:var(--muted);
}

.available-unit p{
  margin:.45rem 0 0;
  color:var(--muted);
  font-size:.9rem;
}

.results-actions-form{
  padding:1.25rem;
  border-radius:24px;
  background:rgba(255,250,240,.72);
  border:1px solid rgba(31,86,53,.12);
}

@media (max-width:980px){
  .results-layout{
    grid-template-columns:1fr;
  }

  .results-price-card{
    position:relative;
    top:auto;
  }

  .results-detail-grid,
  .available-unit-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width:640px){
  .results-stay-head{
    flex-direction:column;
  }

  .results-detail-grid,
  .available-unit-grid{
    grid-template-columns:1fr;
  }
}

.booking-confirm-hero{
  position:relative;
  min-height:460px;
  display:grid;
  align-items:end;
  overflow:hidden;
  background:#10281b;
}

.booking-confirm-hero-bg,
.booking-confirm-hero-overlay{
  position:absolute;
  inset:0;
}

.booking-confirm-hero-bg{
  background-size:cover;
  background-position:center;
  transform:scale(1.02);
}

.booking-confirm-hero-overlay{
  background:
    linear-gradient(90deg, rgba(10,30,18,.92) 0%, rgba(10,30,18,.70) 45%, rgba(10,30,18,.20) 100%),
    linear-gradient(180deg, rgba(10,30,18,.06) 0%, rgba(10,30,18,.76) 100%);
}

.booking-confirm-hero-inner{
  position:relative;
  z-index:1;
  max-width:900px;
  padding:clamp(4rem, 8vw, 6.5rem) 0 3.5rem;
  color:#fffaf0;
}

.booking-confirm-hero h1{
  margin:0 0 1rem;
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:clamp(3rem, 7vw, 6rem);
  line-height:.9;
  letter-spacing:-.04em;
  color:#fffaf0;
}

.booking-confirm-hero p{
  max-width:66ch;
  margin:0;
  color:rgba(255,250,240,.84);
  font-size:1.08rem;
}

.booking-confirm-layout{
  display:grid;
  grid-template-columns:1.12fr .88fr;
  gap:1.25rem;
  align-items:start;
}

.booking-confirm-full{
  grid-column:1 / -1;
}

.booking-success-card,
.booking-payment-card,
.booking-details-card,
.payment-next-step,
.booking-confirm-actions{
  border-radius:28px;
  background:rgba(255,250,240,.94);
  border:1px solid rgba(31,86,53,.14);
  box-shadow:var(--shadow-soft);
  padding:1.5rem;
}

.booking-success-card{
  text-align:center;
}

.success-icon{
  width:76px;
  height:76px;
  display:grid;
  place-items:center;
  margin:0 auto 1rem;
  border-radius:50%;
  background:linear-gradient(135deg, var(--primary), var(--primary-2));
  color:#fffaf0;
  font-size:2.2rem;
  font-weight:900;
  box-shadow:0 16px 34px rgba(18,56,34,.24);
}

.booking-success-card h2,
.booking-payment-card h2,
.booking-details-card h3,
.payment-next-step h3{
  margin:.2rem 0 .65rem;
  color:var(--primary);
  font-family:"Cormorant Garamond", Georgia, serif;
  line-height:.95;
}

.booking-success-card h2{
  font-size:clamp(2.4rem, 4vw, 4rem);
}

.booking-payment-card h2{
  font-size:clamp(2.5rem, 4vw, 4.2rem);
}

.booking-details-card h3,
.payment-next-step h3{
  font-size:clamp(2rem, 3vw, 3.2rem);
}

.booking-success-card p,
.booking-payment-card p,
.payment-next-step p{
  color:var(--muted);
}

.booking-payment-card{
  position:sticky;
  top:96px;
}

.payment-lines{
  display:grid;
  gap:.7rem;
  margin-top:1.2rem;
}

.payment-lines div{
  display:flex;
  justify-content:space-between;
  gap:1rem;
  padding:.9rem;
  border-radius:16px;
  background:rgba(31,86,53,.06);
  border:1px solid rgba(31,86,53,.10);
}

.payment-lines span{
  color:var(--muted);
}

.payment-lines strong{
  color:var(--primary);
  text-align:right;
}

.booking-details-head{
  display:flex;
  justify-content:space-between;
  gap:1rem;
  align-items:flex-start;
  margin-bottom:1rem;
}

.booking-status-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:max-content;
  padding:.5rem .8rem;
  border-radius:999px;
  background:rgba(31,86,53,.10);
  border:1px solid rgba(31,86,53,.18);
  color:var(--primary);
  font-size:.78rem;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.booking-detail-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:.75rem;
}

.booking-detail-grid div{
  padding:.9rem;
  border-radius:16px;
  background:rgba(31,86,53,.06);
  border:1px solid rgba(31,86,53,.10);
}

.booking-detail-grid span{
  display:block;
  color:var(--muted);
  font-size:.78rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.booking-detail-grid strong{
  display:block;
  margin-top:.25rem;
  color:var(--primary);
}

.payment-next-step.success{
  border-color:rgba(31,86,53,.22);
  background:linear-gradient(180deg, rgba(255,250,240,.96), rgba(238,247,238,.92));
}

.payment-next-step.warning{
  border-color:rgba(184,117,53,.26);
  background:linear-gradient(180deg, rgba(255,250,240,.96), rgba(250,238,221,.94));
}

.booking-confirm-actions{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:.75rem;
}

@media (max-width:980px){
  .booking-confirm-layout{
    grid-template-columns:1fr;
  }

  .booking-payment-card{
    position:relative;
    top:auto;
  }

  .booking-detail-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width:640px){
  .booking-confirm-hero{
    min-height:500px;
  }

  .booking-confirm-hero h1{
    font-size:clamp(3rem, 16vw, 4.3rem);
  }

  .booking-details-head{
    flex-direction:column;
  }

  .booking-detail-grid{
    grid-template-columns:1fr;
  }

  .payment-lines div{
    flex-direction:column;
  }

  .payment-lines strong{
    text-align:left;
  }
}

.booking-create-hero{
  position:relative;
  min-height:460px;
  display:grid;
  align-items:end;
  overflow:hidden;
  background:#10281b;
}

.booking-create-hero-bg,
.booking-create-hero-overlay{
  position:absolute;
  inset:0;
}

.booking-create-hero-bg{
  background-size:cover;
  background-position:center;
  transform:scale(1.02);
}

.booking-create-hero-overlay{
  background:
    linear-gradient(90deg, rgba(10,30,18,.92) 0%, rgba(10,30,18,.70) 45%, rgba(10,30,18,.20) 100%),
    linear-gradient(180deg, rgba(10,30,18,.06) 0%, rgba(10,30,18,.76) 100%);
}

.booking-create-hero-inner{
  position:relative;
  z-index:1;
  max-width:900px;
  padding:clamp(4rem, 8vw, 6.5rem) 0 3.5rem;
  color:#fffaf0;
}

.booking-create-hero h1{
  margin:0 0 1rem;
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:clamp(3rem, 7vw, 6rem);
  line-height:.9;
  letter-spacing:-.04em;
  color:#fffaf0;
}

.booking-create-hero p{
  max-width:66ch;
  margin:0;
  color:rgba(255,250,240,.84);
  font-size:1.08rem;
}

.booking-create-hero strong{
  color:#fffaf0;
}

.booking-create-layout{
  display:grid;
  grid-template-columns:.82fr 1.18fr;
  gap:1.25rem;
  align-items:start;
}

.booking-create-full{
  grid-column:1 / -1;
}

.booking-create-summary,
.booking-create-form-card{
  overflow:hidden;
  border-radius:28px;
  background:rgba(255,250,240,.94);
  border:1px solid rgba(31,86,53,.14);
  box-shadow:var(--shadow-soft);
}

.booking-create-summary{
  position:sticky;
  top:96px;
}

.booking-create-image{
  min-height:320px;
  background-size:cover;
  background-position:center;
}

.booking-create-summary-body,
.booking-create-form-card{
  padding:1.5rem;
}

.booking-create-summary-body h2,
.booking-create-form-card h2{
  margin:.2rem 0 .65rem;
  color:var(--primary);
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:clamp(2.1rem, 3.5vw, 3.4rem);
  line-height:.95;
}

.booking-create-summary-body p,
.booking-create-form-card p{
  color:var(--muted);
}

.create-summary-lines{
  display:grid;
  gap:.7rem;
  margin:1.25rem 0;
}

.create-summary-lines div{
  display:flex;
  justify-content:space-between;
  gap:1rem;
  padding:.9rem;
  border-radius:16px;
  background:rgba(31,86,53,.06);
  border:1px solid rgba(31,86,53,.10);
}

.create-summary-lines span{
  color:var(--muted);
}

.create-summary-lines strong{
  color:var(--primary);
  text-align:right;
}

.booking-create-note,
.booking-create-help{
  padding:1rem;
  border-radius:18px;
  background:rgba(184,117,53,.10);
  border:1px solid rgba(184,117,53,.18);
}

.booking-create-note strong,
.booking-create-help strong{
  display:block;
  margin-bottom:.25rem;
  color:var(--accent-dark);
}

.booking-create-note span,
.booking-create-help span{
  color:var(--muted);
}

.booking-create-form{
  display:grid;
  gap:1rem;
  margin-top:1.2rem;
}

.form-section-title{
  display:flex;
  align-items:center;
  gap:.65rem;
  margin-top:.4rem;
}

.form-section-title span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:34px;
  height:34px;
  border-radius:50%;
  background:rgba(31,86,53,.10);
  color:var(--primary);
  font-size:.8rem;
  font-weight:900;
}

.form-section-title h3{
  margin:0;
  color:var(--primary);
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:1.7rem;
  line-height:1;
}

.form-row-three{
  grid-template-columns:1.2fr .8fr .8fr;
}

.booking-create-form .form-field input,
.booking-create-form .form-field select,
.booking-create-form .form-field textarea{
  width:100%;
  padding:.9rem .95rem;
  min-height:50px;
  border-radius:16px;
  border:1px solid rgba(31,86,53,.18);
  background:rgba(255,255,255,.62);
  color:var(--text);
  font:inherit;
  outline:none;
  transition:border-color .16s ease, box-shadow .16s ease, background .16s ease;
}

.booking-create-form .form-field textarea{
  min-height:130px;
  resize:vertical;
}

.booking-create-form .form-field input:focus,
.booking-create-form .form-field select:focus,
.booking-create-form .form-field textarea:focus{
  border-color:rgba(184,117,53,.55);
  background:#fffaf0;
  box-shadow:0 0 0 4px rgba(184,117,53,.12);
}

.field-error{
  margin-top:.35rem;
  color:#8c2f25;
  font-size:.86rem;
  font-weight:700;
}

@media (max-width:980px){
  .booking-create-layout{
    grid-template-columns:1fr;
  }

  .booking-create-summary{
    position:relative;
    top:auto;
  }

  .form-row-three{
    grid-template-columns:1fr;
  }
}

@media (max-width:640px){
  .booking-create-hero{
    min-height:500px;
  }

  .booking-create-hero h1{
    font-size:clamp(3rem, 16vw, 4.3rem);
  }

  .booking-create-summary-body,
  .booking-create-form-card{
    padding:1.15rem;
  }

  .create-summary-lines div{
    flex-direction:column;
  }

  .create-summary-lines strong{
    text-align:left;
  }
}

.staff-booking-page{
  padding:2.5rem 0 4rem;
  background:
    radial-gradient(780px 360px at 8% 0%, rgba(217,164,95,.14), transparent 60%),
    linear-gradient(180deg, #fffaf0 0%, var(--bg) 100%);
}

.staff-container{
  width:min(1480px, 94vw);
  margin-inline:auto;
}

.staff-page-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:1.25rem;
  margin-bottom:1.25rem;
}

.staff-page-head h1{
  margin:.2rem 0 .4rem;
  color:var(--primary);
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:clamp(2.6rem, 4vw, 4.6rem);
  line-height:.9;
}

.staff-page-head p{
  margin:0;
  max-width:680px;
  color:var(--muted);
}

.staff-filter-card,
.staff-table-card{
  border-radius:24px;
  background:rgba(255,250,240,.94);
  border:1px solid rgba(31,86,53,.14);
  box-shadow:var(--shadow-soft);
}

.staff-filter-card{
  padding:1rem;
  margin-bottom:1rem;
}

.staff-filter-form{
  display:grid;
  grid-template-columns:1fr 1fr auto;
  gap:.85rem;
  align-items:end;
}

.staff-filter-form select{
  width:100%;
  min-height:48px;
  padding:.85rem .95rem;
  border-radius:16px;
  border:1px solid rgba(31,86,53,.18);
  background:rgba(255,255,255,.62);
  color:var(--text);
  font:inherit;
  outline:none;
}

.staff-filter-actions{
  display:flex;
  gap:.6rem;
  flex-wrap:wrap;
}

.staff-table-card{
  overflow:hidden;
}

.staff-table-wrap{
  overflow-x:auto;
}

.staff-table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  min-width:1120px;
}

.staff-table th{
  padding:1rem;
  background:rgba(31,86,53,.08);
  color:var(--primary);
  font-size:.78rem;
  font-weight:900;
  letter-spacing:.08em;
  text-align:left;
  text-transform:uppercase;
  white-space:nowrap;
}

.staff-table td{
  padding:1rem;
  border-top:1px solid rgba(31,86,53,.10);
  color:var(--text);
  vertical-align:top;
}

.staff-table tbody tr:hover{
  background:rgba(31,86,53,.035);
}

.staff-table td strong{
  display:block;
  color:var(--primary);
  line-height:1.25;
}

.staff-table td span{
  display:block;
  margin-top:.2rem;
  color:var(--muted);
  font-size:.86rem;
}

.text-end{
  text-align:right;
}

.staff-status-pill{
  display:inline-flex !important;
  width:max-content;
  margin-top:0 !important;
  padding:.38rem .65rem;
  border-radius:999px;
  background:rgba(31,86,53,.10);
  border:1px solid rgba(31,86,53,.18);
  color:var(--primary) !important;
  font-size:.76rem !important;
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.staff-empty-state{
  padding:clamp(2rem, 5vw, 4rem);
  text-align:center;
}

.staff-empty-state h2{
  margin:.2rem 0 .6rem;
  color:var(--primary);
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:clamp(2.2rem, 4vw, 3.8rem);
  line-height:.95;
}

.staff-empty-state p{
  margin:0 auto 1.2rem;
  max-width:520px;
  color:var(--muted);
}

@media (max-width:980px){
  .staff-page-head{
    align-items:flex-start;
    flex-direction:column;
  }

  .staff-filter-form{
    grid-template-columns:1fr;
  }
}

.service-request-hero{
  position:relative;
  min-height:460px;
  display:grid;
  align-items:end;
  overflow:hidden;
  background:#10281b;
}

.service-request-hero-bg,
.service-request-hero-overlay{
  position:absolute;
  inset:0;
}

.service-request-hero-bg{
  background-size:cover;
  background-position:center;
  transform:scale(1.02);
}

.service-request-hero-overlay{
  background:
    linear-gradient(90deg, rgba(10,30,18,.92) 0%, rgba(10,30,18,.70) 45%, rgba(10,30,18,.20) 100%),
    linear-gradient(180deg, rgba(10,30,18,.06) 0%, rgba(10,30,18,.76) 100%);
}

.service-request-hero-inner{
  position:relative;
  z-index:1;
  max-width:900px;
  padding:clamp(4rem, 8vw, 6.5rem) 0 3.5rem;
  color:#fffaf0;
}

.service-request-hero h1{
  margin:0 0 1rem;
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:clamp(3rem, 7vw, 6rem);
  line-height:.9;
  letter-spacing:-.04em;
  color:#fffaf0;
}

.service-request-hero p{
  max-width:66ch;
  margin:0;
  color:rgba(255,250,240,.84);
  font-size:1.08rem;
}

.service-request-hero strong{
  color:#fffaf0;
}

.service-request-layout{
  display:grid;
  grid-template-columns:.82fr 1.18fr;
  gap:1.25rem;
  align-items:start;
}

.service-request-full{
  grid-column:1 / -1;
}

.service-request-summary,
.service-request-form-card{
  overflow:hidden;
  border-radius:28px;
  background:rgba(255,250,240,.94);
  border:1px solid rgba(31,86,53,.14);
  box-shadow:var(--shadow-soft);
}

.service-request-summary{
  position:sticky;
  top:96px;
}

.service-request-image{
  min-height:320px;
  background-size:cover;
  background-position:center;
}

.service-request-summary-body,
.service-request-form-card{
  padding:1.5rem;
}

.service-request-summary-body h2,
.service-request-form-card h2{
  margin:.2rem 0 .65rem;
  color:var(--primary);
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:clamp(2.1rem, 3.5vw, 3.4rem);
  line-height:.95;
}

.service-request-summary-body p,
.service-request-form-card p{
  color:var(--muted);
}

.service-summary-lines{
  display:grid;
  gap:.7rem;
  margin:1.25rem 0;
}

.service-summary-lines div{
  display:flex;
  justify-content:space-between;
  gap:1rem;
  padding:.9rem;
  border-radius:16px;
  background:rgba(31,86,53,.06);
  border:1px solid rgba(31,86,53,.10);
}

.service-summary-lines span{
  color:var(--muted);
}

.service-summary-lines strong{
  color:var(--primary);
  text-align:right;
}

.service-about-box,
.service-request-note{
  padding:1rem;
  border-radius:18px;
  background:rgba(184,117,53,.10);
  border:1px solid rgba(184,117,53,.18);
}

.service-about-box strong,
.service-request-note strong{
  display:block;
  margin-bottom:.25rem;
  color:var(--accent-dark);
}

.service-about-box p{
  margin:.35rem 0 0;
  color:var(--muted);
  font-size:.94rem;
}

.service-request-note span{
  color:var(--muted);
}

.service-request-form{
  display:grid;
  gap:1rem;
  margin-top:1.2rem;
}

.service-request-form .form-field input,
.service-request-form .form-field select,
.service-request-form .form-field textarea{
  width:100%;
  padding:.9rem .95rem;
  min-height:50px;
  border-radius:16px;
  border:1px solid rgba(31,86,53,.18);
  background:rgba(255,255,255,.62);
  color:var(--text);
  font:inherit;
  outline:none;
  transition:border-color .16s ease, box-shadow .16s ease, background .16s ease;
}

.service-request-form .form-field textarea{
  min-height:130px;
  resize:vertical;
}

.service-request-form .form-field input:focus,
.service-request-form .form-field select:focus,
.service-request-form .form-field textarea:focus{
  border-color:rgba(184,117,53,.55);
  background:#fffaf0;
  box-shadow:0 0 0 4px rgba(184,117,53,.12);
}

@media (max-width:980px){
  .service-request-layout{
    grid-template-columns:1fr;
  }

  .service-request-summary{
    position:relative;
    top:auto;
  }
}

@media (max-width:640px){
  .service-request-hero{
    min-height:500px;
  }

  .service-request-hero h1{
    font-size:clamp(3rem, 16vw, 4.3rem);
  }

  .service-request-summary-body,
  .service-request-form-card{
    padding:1.15rem;
  }

  .service-summary-lines div{
    flex-direction:column;
  }

  .service-summary-lines strong{
    text-align:left;
  }
}

.service-confirm-hero{
  position:relative;
  min-height:460px;
  display:grid;
  align-items:end;
  overflow:hidden;
  background:#10281b;
}

.service-confirm-hero-bg,
.service-confirm-hero-overlay{
  position:absolute;
  inset:0;
}

.service-confirm-hero-bg{
  background-size:cover;
  background-position:center;
  transform:scale(1.02);
}

.service-confirm-hero-overlay{
  background:
    linear-gradient(90deg, rgba(10,30,18,.92) 0%, rgba(10,30,18,.70) 45%, rgba(10,30,18,.20) 100%),
    linear-gradient(180deg, rgba(10,30,18,.06) 0%, rgba(10,30,18,.76) 100%);
}

.service-confirm-hero-inner{
  position:relative;
  z-index:1;
  max-width:900px;
  padding:clamp(4rem, 8vw, 6.5rem) 0 3.5rem;
  color:#fffaf0;
}

.service-confirm-hero h1{
  margin:0 0 1rem;
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:clamp(3rem, 7vw, 6rem);
  line-height:.9;
  letter-spacing:-.04em;
  color:#fffaf0;
}

.service-confirm-hero p{
  max-width:66ch;
  margin:0;
  color:rgba(255,250,240,.84);
  font-size:1.08rem;
}

.service-confirm-hero strong{
  color:#fffaf0;
}

.service-confirm-layout{
  display:grid;
  grid-template-columns:1.12fr .88fr;
  gap:1.25rem;
  align-items:start;
}

.service-confirm-full{
  grid-column:1 / -1;
}

.service-confirm-success,
.service-confirm-next,
.service-confirm-details,
.service-confirm-actions{
  border-radius:28px;
  background:rgba(255,250,240,.94);
  border:1px solid rgba(31,86,53,.14);
  box-shadow:var(--shadow-soft);
  padding:1.5rem;
}

.service-confirm-success{
  text-align:center;
}

.service-confirm-success h2,
.service-confirm-next h2,
.service-confirm-details h3{
  margin:.2rem 0 .65rem;
  color:var(--primary);
  font-family:"Cormorant Garamond", Georgia, serif;
  line-height:.95;
}

.service-confirm-success h2{
  font-size:clamp(2.4rem, 4vw, 4rem);
}

.service-confirm-next h2{
  font-size:clamp(2.2rem, 3.5vw, 3.4rem);
}

.service-confirm-details h3{
  font-size:clamp(2rem, 3vw, 3.2rem);
}

.service-confirm-success p,
.service-confirm-next p{
  color:var(--muted);
}

.next-step-list{
  display:grid;
  gap:.7rem;
  margin-top:1.2rem;
}

.next-step-list div{
  padding:.9rem;
  border-radius:16px;
  background:rgba(31,86,53,.06);
  border:1px solid rgba(31,86,53,.10);
}

.next-step-list strong{
  display:block;
  color:var(--primary);
}

.next-step-list span{
  display:block;
  margin-top:.15rem;
  color:var(--muted);
  font-size:.9rem;
}

.service-confirm-head{
  display:flex;
  justify-content:space-between;
  gap:1rem;
  align-items:flex-start;
  margin-bottom:1rem;
}

.service-confirm-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:.75rem;
}

.service-confirm-grid div{
  padding:.9rem;
  border-radius:16px;
  background:rgba(31,86,53,.06);
  border:1px solid rgba(31,86,53,.10);
}

.service-confirm-grid span{
  display:block;
  color:var(--muted);
  font-size:.78rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.service-confirm-grid strong{
  display:block;
  margin-top:.25rem;
  color:var(--primary);
}

.service-message-detail{
  grid-column:1 / -1;
}

.service-confirm-actions{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:.75rem;
}

@media (max-width:980px){
  .service-confirm-layout{
    grid-template-columns:1fr;
  }

  .service-confirm-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width:640px){
  .service-confirm-hero{
    min-height:500px;
  }

  .service-confirm-hero h1{
    font-size:clamp(3rem, 16vw, 4.3rem);
  }

  .service-confirm-head{
    flex-direction:column;
  }

  .service-confirm-grid{
    grid-template-columns:1fr;
  }
}

.staff-service-filter-form{
  display:grid;
  grid-template-columns:minmax(260px, 420px) auto;
  gap:.85rem;
  align-items:end;
}

.staff-service-filter-form select{
  width:100%;
  min-height:48px;
  padding:.85rem .95rem;
  border-radius:16px;
  border:1px solid rgba(31,86,53,.18);
  background:rgba(255,255,255,.62);
  color:var(--text);
  font:inherit;
  outline:none;
}

.service-requests-table{
  min-width:1180px;
}

.staff-message-row td{
  padding:0 !important;
  background:rgba(31,86,53,.035);
}

.staff-message-row td > strong,
.staff-message-row td > span{
  display:block;
  margin:0;
}

.staff-message-row td > strong{
  padding:1rem 1rem .25rem;
  color:var(--primary);
  font-size:.78rem;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.staff-message-row td > span{
  padding:0 1rem 1rem;
  color:var(--muted);
  font-size:.92rem;
}

@media (max-width:980px){
  .staff-service-filter-form{
    grid-template-columns:1fr;
  }
}