:root{
  --teal:#82BBAFFF;
  --coral:#777777;
  --sage:#777777;
  --ink:#1a1a1a;
  --muted:#5c5c5c;
  --bg:#ffffff;
  --surface:#ffffff;
  --border:#e6e6e6;
  --shadow:none;
  --faq-arrow-closed:"\25B8";
  --faq-arrow-open:"\25BE";
  --radius:18px;
  --max:1120px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;background:var(--bg);}
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height:1.55;
}

/* MyFonts kit defines these family names */
.font-adelon{font-family: AdelonSerial, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;}
.font-adelon-bold{font-family: AdelonSerialBold, AdelonSerial, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;}

.font-montserrat{
  font-family:"Montserrat", sans-serif;
  font-optical-sizing:auto;
  font-weight:700;
  font-style:normal;
}

a{color:inherit;}

.container{
  width:100%;
  max-width:var(--max);
  margin:0 auto;
  padding:0 18px;
}

.header{
  padding:20px 0 10px;
}

.header-inner{
  display:flex;
  gap:18px;
  align-items:flex-start;
  justify-content:space-between;
}

.brand{
  display:flex;
  gap:14px;
  align-items:center;
  text-decoration:none;
  min-width:unset;
}

.brand-mark{
  width:92px;
  height:auto;
  display:block;
}

.brand-lockup{
  display:flex;
  flex-direction:column;
  gap:6px;
}

.brand-wordmark{
  width:336px;
  max-width:48vw;
  height:auto;
  display:block;
}

.brand-tagline{
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--muted);
}

.nav{
  display:flex;
  align-items:center;
  gap:22px;
}

.nav a{
  text-decoration:none;
  font-size:17px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--teal);
  font-family:"Montserrat", sans-serif;
  font-optical-sizing:auto;
  font-weight:500;
  font-style:normal;
  padding:10px 12px;
  border-radius:12px;
  background:#fff;
  border:1px solid var(--border);
}

.nav a[aria-current="page"]{
  background:#fff;
  color:var(--teal);
}

.nav a:hover{
  background:#FCC140;
  color:#1a1a1a;
}

.menu-btn{
  display:none;
  border:1px solid var(--border);
  background:#fff;
  border-radius:14px;
  padding:10px 12px;
  font-size:16px;
  color:var(--teal);
  text-transform:uppercase;
}

.hero{
  margin-top:14px;
  padding-top:var(--home-hero-pad, 0px);
}

body[data-page="home"] .header{
  padding-bottom:0;
}

body[data-page="home"] .hero{
  margin-top:0;
}

.hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.hero-grid img{
  width:100%;
  height:320px;
  object-fit:cover;
  border-radius:22px;
  box-shadow:var(--shadow);
  background:var(--surface);
}

.lead{
  margin:36px 0 10px;
  max-width:none;
  font-size:16px;
}

.subtle{
  color:var(--muted);
  font-style:italic;
  margin-top:12px;
}

.page-title{
  margin:10px 0 18px;
  font-size:38px;
  line-height:1.15;
  color:var(--teal);
}

.page-title.title-uc{
  font-size:30px;
}

.section{
  padding:34px 0;
  background:var(--bg);
}

.card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:22px;
}

.grid-2{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:18px;
  align-items:start;
}

.grid-2-even{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.h2{
  margin:0 0 12px;
  font-size:26px;
  color:var(--teal);
}

/*
  Small-caps styling (Title Case -> lowercase becomes small caps, capitals stay full size).
  This gives the “first letter a little bigger” look.
*/
.title-sc{
  font-variant-caps: small-caps;
  /* Prefer real OpenType small caps if the font provides them. */
  font-feature-settings: "smcp" 1;
  letter-spacing: .03em;
  text-transform: none;
}

.title-uc{
  text-transform: uppercase;
  letter-spacing: .08em;
}

.h2.title-uc{
  font-size:20px;
}

.h3{
  margin:20px 0 10px;
  font-size:20px;
  color:var(--teal);
}

.h3-black{
  color:var(--ink);
}

p{margin:0 0 14px;}
ul{margin:0 0 14px 20px;}
li{margin:6px 0;}

.kicker{
  font-size:14px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--muted);
  margin:0 0 12px;
}

.kicker-teal{
  color:var(--teal);
  font-size:16px;
  font-family:"Montserrat", sans-serif;
  font-optical-sizing:auto;
  font-weight:500;
  font-style:normal;
}

.pill{
  display:inline-flex;
  gap:8px;
  align-items:center;
  border:1px solid var(--border);
  padding:10px 14px;
  border-radius:999px;
  text-decoration:none;
  background:#fff;
}

.pill:hover{border-color:#d6d6d6;}

.details{
  border-top:1px solid var(--border);
  padding-top:16px;
  margin-top:16px;
}

.service-detail{
  margin-top:16px;
}

.service-detail.is-hidden{
  display:none;
}

.service-detail.is-hidden:target{
  display:block;
}

.is-hidden{
  display:none;
}

details{
  border:1px solid var(--border);
  border-radius:14px;
  padding:12px 14px;
  background:var(--surface);
  margin:12px 0;
}

details summary{
  cursor:pointer;
  font-weight:600;
}

details summary::-webkit-details-marker{display:none;}

.details-inline{
  border:0;
  border-radius:0;
  padding:0;
  background:transparent;
  margin:0;
}

.details-inline summary{
  display:inline;
  font-weight:inherit;
}

.details-inline > ul{
  margin-top:8px;
}

details:not(.details-inline) > div,
details:not(.details-inline) > ul{
  margin-left:18px;
}

.map-toggle{
  border:0;
  border-radius:0;
  padding:0;
  background:transparent;
  margin:8px 0 0;
}

.map-toggle summary{
  font-weight:500;
  list-style:none;
  display:inline;
}

.map-toggle > div{
  margin-left:0;
}

.map-embed{
  margin-top:10px;
}

.map-embed iframe{
  width:100%;
  height:260px;
  border:0;
  border-radius:12px;
}

.faq-details{
  border:1px solid var(--border);
  border-radius:14px;
  padding:12px 14px;
  background:#fff;
  margin:12px 0;
}

.faq-summary{
  display:block;
  font-weight:500;
  list-style:none;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:22px;
  position:relative;
  padding-left:18px;
}

.faq-summary::before{
  content:var(--faq-arrow-closed);
  position:absolute;
  left:0;
  top:0;
  color:var(--muted);
  font-family:"Segoe UI Symbol", "Apple Symbols", "Noto Sans Symbols 2", "Noto Sans Symbols", "Arial Unicode MS", sans-serif;
}

details[open] .faq-summary::before{
  content:var(--faq-arrow-open);
}

.details-toggle::after{
  content:" (click to expand)";
  font-weight:400;
  color:var(--muted);
}

.details-toggle{
  list-style:none;
}

details[open] .details-toggle::after{
  content:" (click to collapse)";
}

.inline-link{
  color:var(--ink);
  text-decoration:underline;
  text-underline-offset:3px;
}

.notice{
  background:#fff;
  border:1px solid var(--border);
  border-radius:16px;
  padding:14px 16px;
  color:var(--ink);
}

.footer{
  border-top:1px solid var(--border);
  padding:26px 0;
  color:var(--muted);
  font-size:14px;
}

.footer .row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

.small{
  font-size:13px;
  color:var(--muted);
}

.text-center{
  text-align:center;
}

.about-flow{
  display:flow-root;
}

.about-photo-frame{
  float:right;
  width:25%;
  margin:0 0 12px 18px;
  display:block;
  border-radius:18px;
  background:var(--surface);
  overflow:hidden;
}

.about-photo{
  width:100%;
  height:auto;
  display:block;
  object-fit:cover;
}

/* Booking widget container helper */
.widget-wrap{
  max-width:560px;
}
.better-inline-booking-widget{
  position:relative;
  overflow:hidden;
}
.better-inline-booking-widget iframe{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
}

/* Responsive */
@media (max-width: 980px){
  .brand-wordmark{max-width:52vw;}
  .hero-grid img{height:280px;}
  .grid-2{grid-template-columns:1fr;}
  .grid-2-even{grid-template-columns:1fr;}
  .about-photo{height:auto;}
  .menu-btn{display:inline-flex;}
  .nav{
    display:none;
    position:absolute;
    right:22px;
    top:84px;
    flex-direction:column;
    gap:8px;
    padding:10px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:16px;
    box-shadow:var(--shadow);
    z-index:50;
  }
  .nav.open{display:flex;}
}

@media (max-width: 760px){
  .header-inner{align-items:center;}
  .brand{min-width:unset;}
  .brand-mark{width:72px;}
  .brand-wordmark{width:264px;max-width:60vw;}
  body[data-page="home"] .header{padding-bottom:18px;}
  .hero-grid{grid-template-columns:1fr;}
  .hero-grid img{height:240px;}
  .lead{font-size:13px;}
  .page-title{font-size:30px;}
  .about-photo-frame{width:33%;}
  .about-photo{
    transform:scale(1.2);
    transform-origin:center;
  }
}
