:root{
  /* Easy theme controls */
  --bg: #F0F1EC;
  --text: #2E2E2E;

  /* Accent colors (change these freely) */
  --accent: #E07BA6;
  --accent-2: #8C5B74;

  /* UI tokens */
  --card: rgba(255,255,255,.62);
  --card-solid: #FFFFFF;
  --border: rgba(46,46,46,.18);
  --muted: rgba(46,46,46,.72);
  --shadow: 0 14px 40px rgba(0,0,0,.08);
  --radius: 18px;

  --max: 1100px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
code{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: .95em;
}

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

.skip-link{
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--card-solid);
  border: 1px solid var(--border);
  padding: 10px 12px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: 1000;
}
.skip-link:focus{ left: 12px; }

.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: color-mix(in oklab, var(--bg) 78%, white 22%);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled{
  border-bottom-color: var(--border);
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  min-width: 220px;
}
.brand-mark{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  overflow:hidden;
  border: 1px solid var(--border);
  box-shadow: 0 10px 22px rgba(0,0,0,.10);
  background: #111;
}
.brand-mark img{
  width:100%;
  height:100%;
  object-fit: cover;
}
.brand-text{ display:flex; flex-direction:column; line-height:1.05; }
.brand-name{
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  letter-spacing: .2px;
}
.brand-sub{ font-size: .86rem; color: var(--muted); margin-top: 2px; }

.nav{
  display:flex;
  align-items:center;
  gap: 14px;
  font-size: .92rem;
}
.nav a{
  padding: 10px 10px;
  border-radius: 999px;
  color: color-mix(in oklab, var(--text) 86%, black 14%);
}
.nav a:hover{
  background: rgba(255,255,255,.65);
  border: 1px solid var(--border);
  padding: 9px 9px;
}

.nav-cta{
  background: var(--text);
  color: var(--bg) !important;
  border: 1px solid var(--text);
}
.nav-cta:hover{
  background: color-mix(in oklab, var(--text) 90%, black 10%);
}

.nav-toggle{
  display:none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.6);
  cursor: pointer;
  padding: 10px 10px;
}
.nav-toggle span{
  display:block;
  height: 2px;
  background: var(--text);
  border-radius: 99px;
}
.nav-toggle span + span{ margin-top: 6px; }

.mobile-nav{
  /* overlay dropdown instead of taking page space */
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;

  border-top: 1px solid var(--border);
  background: color-mix(in oklab, var(--bg) 76%, white 24%);
  padding: 10px 18px 16px;

  max-height: calc(100vh - 72px);
  overflow: auto;

  /* hidden by default (desktop + mobile closed state) */
  display: none;
  box-shadow: 0 20px 50px rgba(0,0,0,.10);
}

/* Only show when the JS removes the hidden attribute */
.mobile-nav:not([hidden]){
  display: block;
}
.mobile-nav a{
  display:block;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
}
.mobile-nav a:hover{
  background: rgba(255,255,255,.65);
  border-color: var(--border);
}
.mobile-nav .nav-cta{
  text-align:center;
  margin-top: 6px;
}

.hero{
  padding: 36px 0 18px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 22px;
  align-items: stretch;
}
.eyebrow{
  margin: 0 0 10px;
  color: var(--muted);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .78rem;
}
h1{
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  margin: 0 0 12px;
  font-size: clamp(2.2rem, 4.2vw, 3.2rem);
  line-height: 1.06;
}
.accent{ color: var(--accent); }
.lead{
  margin: 0 0 16px;
  color: color-mix(in oklab, var(--text) 86%, black 14%);
  font-size: 1.05rem;
  line-height: 1.55;
}

.hero-badges{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
  margin: 18px 0 18px;
}
.badge{
  border: 1px solid var(--border);
  background: rgba(255,255,255,.62);
  border-radius: 16px;
  padding: 12px 12px;
}
.badge-title{
  display:block;
  font-size: .78rem;
  color: var(--muted);
  margin-bottom: 4px;
}
.badge-value{
  font-weight: 700;
}

.hero-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.65);
  cursor: pointer;
  font-weight: 600;
  transition: transform .12s ease, box-shadow .12s ease;
}
.btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(0,0,0,.08);
}
.btn.primary{
  background: var(--text);
  border-color: var(--text);
  color: var(--bg);
}
.btn.small{
  padding: 10px 14px;
  font-size: .92rem;
}
.fineprint{
  margin: 12px 0 0;
  font-size: .92rem;
  color: var(--muted);
}
.fineprint a{
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-card{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,.52);
  box-shadow: var(--shadow);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  min-height: 100%;
}
.hero-card-top{
  padding: 14px 14px 10px;
  display:flex;
  align-items:baseline;
  justify-content: space-between;
  gap: 10px;
}
.mini-title{
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .78rem;
}
.mini-sub{ color: var(--muted); font-size: .92rem; }
.hero-preview{
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(0,0,0,.03);
}
.hero-preview img{
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.hero-card-bottom{
  padding: 14px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
}
.callout{ display:flex; flex-direction:column; gap: 2px; }
.callout-kicker{
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-2);
  font-weight: 800;
}
.callout-text{ color: var(--muted); font-size: .95rem; }

.section{
  padding: 46px 0;
}
.section-head{
  margin-bottom: 18px;
}
.section-head h2{
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.7rem, 2.5vw, 2.2rem);
  margin: 0 0 8px;
}
.section-head p{
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.cards{
  display:grid;
  gap: 12px;
}
.cards.two{ grid-template-columns: repeat(2, minmax(0,1fr)); }
.cards.three{ grid-template-columns: repeat(3, minmax(0,1fr)); }

.card{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,.58);
  padding: 16px 16px;
  box-shadow: 0 14px 36px rgba(0,0,0,.06);
}
.card h3{
  margin: 0 0 8px;
  font-size: 1.05rem;
}
.card p{
  margin: 0;
  color: color-mix(in oklab, var(--text) 84%, black 16%);
  line-height: 1.6;
}
.card p + p{ margin-top: 10px; }
.tight{ line-height: 1.5; }
.muted{ color: var(--muted); }

.link{
  display:inline-block;
  margin-top: 10px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.banner{
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.75);
  box-shadow: var(--shadow);
  margin: 14px 0 14px;
}
.banner img{
  width:100%;
  height: auto;
  object-fit: cover;
}

.map-frame{
  margin-top: 14px;
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.75);
}
.map-frame iframe{
  width:100%;
  height: 330px;
  border: 0;
}

.gallery{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.shot{
  margin: 0;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.72);
  box-shadow: 0 14px 30px rgba(0,0,0,.06);
}
.shot img{
  width:100%;
  height: 300px;
  object-fit: cover;
}

/* 5 shots layout */
.shot:nth-child(1){ grid-column: span 4; }
.shot:nth-child(2){ grid-column: span 4; }
.shot:nth-child(3){ grid-column: span 4; }
.shot:nth-child(4){ grid-column: span 6; }
.shot:nth-child(5){ grid-column: span 6; }

.booking .embed{
  padding: 0;
  overflow:hidden;
}
.booking-head{
  display:flex;
  justify-content:center;
  margin: 10px 0 12px;
}
.booking-head img{
  max-width: 520px;
  opacity: .95;
  filter: contrast(1.05);
}
.embed iframe{
  width:100%;
  height: 980px;
  border: 0;
  background: white;
}
.embed-fallback{
  padding: 14px 16px 18px;
  border-top: 1px solid var(--border);
  color: var(--muted);
}
.embed-fallback a{
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer{
  padding: 26px 0 38px;
  border-top: 1px solid var(--border);
  background: color-mix(in oklab, var(--bg) 86%, white 14%);
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
}
.footer-brand{ font-weight: 800; }
.footer-meta{ color: var(--muted); margin-top: 6px; }
.footer-right{ display:flex; gap: 10px; align-items:center; }

/* Responsive */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-preview img{ height: 260px; }
  .cards.three{ grid-template-columns: 1fr; }
  .cards.two{ grid-template-columns: 1fr; }
}

@media (max-width: 860px){
  .nav{ display:none; }
  .nav-toggle{ display:inline-flex; flex-direction:column; justify-content:center; }
  body.nav-open{ overflow:hidden; }
  .brand{ min-width: auto; }
  .hero-badges{ grid-template-columns: 1fr; }
}

@media (max-width: 720px){
  .shot img{ height: 260px; }
  .shot:nth-child(1),
  .shot:nth-child(2),
  .shot:nth-child(3),
  .shot:nth-child(4),
  .shot:nth-child(5){
    grid-column: span 12;
  }
  .footer-inner{ flex-direction: column; align-items:flex-start; }
}
