:root {
  --bg: #f6f4ef;
  --bg-strong: #efe7da;
  --surface: rgba(255,255,255,0.78);
  --surface-solid: #ffffff;
  --text: #1f2933;
  --muted: #667085;
  --line: rgba(15, 23, 42, 0.08);
  --brand: #0f766e;
  --brand-2: #155eef;
  --sand: #d6b98a;
  --shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(15,118,110,.08), transparent 32%),
    radial-gradient(circle at top right, rgba(214,185,138,.2), transparent 26%),
    var(--bg);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.site-shell { overflow: clip; }
.topbar {
  position: sticky; top: 0; z-index: 20;
  background: rgba(246,244,239,.76);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap { display:flex; align-items:center; justify-content:space-between; gap:20px; min-height:84px; }
.brand { display:flex; align-items:center; gap:14px; }
.brand-mark {
  width: 44px; height: 44px; border-radius: 14px;
  display:grid; place-items:center; font-weight:800; color:#fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 14px 34px rgba(21,94,239,.25);
}
.brand strong { display:block; font-size:1rem; }
.brand small { color: var(--muted); display:block; margin-top:2px; }
.nav { display:flex; gap:18px; flex-wrap:wrap; }
.nav a { color: var(--muted); font-weight: 600; }
.nav a:hover, .lang-switch a.active { color: var(--brand); }
.header-actions { display:flex; align-items:center; gap:16px; }
.menu-toggle {
  display:none; width:46px; height:46px; border-radius:14px; border:1px solid var(--line);
  background: rgba(255,255,255,.82); align-items:center; justify-content:center; flex-direction:column; gap:5px;
  box-shadow: 0 12px 28px rgba(15,23,42,.08);
}
.menu-toggle span { display:block; width:18px; height:2px; background: var(--text); border-radius:999px; transition: transform .24s ease, opacity .24s ease; }
.menu-toggle.is-active span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-active span:nth-child(2){ opacity:0; }
.menu-toggle.is-active span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display:none; position:sticky; top:84px; z-index:19; background: rgba(246,244,239,.96);
  backdrop-filter: blur(16px); border-bottom:1px solid var(--line);
}
.mobile-menu-inner { padding: 0 0 14px; }
.mobile-nav { display:grid; gap:10px; }
.mobile-nav a {
  display:block; padding:14px 16px; border-radius:18px; background: rgba(255,255,255,.78);
  border:1px solid var(--line); font-weight:700; color:var(--text);
}
.gallery-more { margin-top: 18px; display:flex; justify-content:center; }
.lang-switch { display:flex; background:#fff; border:1px solid var(--line); border-radius:999px; padding:4px; }
.lang-switch a { padding:8px 12px; border-radius:999px; font-size:.92rem; font-weight:700; color:var(--muted); }
.lang-switch a.active { background: rgba(15,118,110,.1); }
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding: 14px 20px; border-radius: 999px; border:1px solid transparent;
  background: linear-gradient(135deg, var(--brand), var(--brand-2)); color:#fff; font-weight:700;
  box-shadow: 0 18px 42px rgba(21,94,239,.22);
}
.btn-small { padding: 10px 16px; font-size: .94rem; }
.btn-secondary {
  background: rgba(255,255,255,.72); color: var(--text);
  border-color: rgba(255,255,255,.65); box-shadow: none;
}
.hero {
  position: relative; padding: 72px 0 42px;
}
.hero::before {
  content: '';
  position: absolute; inset: 20px 24px 0;
  border-radius: 36px;
  background:
    linear-gradient(115deg, rgba(18,29,35,.72), rgba(18,29,35,.34)),
    var(--hero-image, linear-gradient(135deg, #5f8f8a, #d6b98a));
  background-size: cover; background-position: center;
  box-shadow: var(--shadow);
}
.hero-backdrop {
  position:absolute; inset:0;
  background: radial-gradient(circle at 20% 10%, rgba(255,255,255,.15), transparent 18%);
}
.hero-grid {
  position: relative; z-index: 1;
  min-height: 620px;
  display:grid; grid-template-columns: minmax(0,1.5fr) minmax(280px, .75fr);
  gap: 28px; align-items: end; padding: 48px 20px 54px;
}
.hero-copy { color: #fff; max-width: 720px; }
.eyebrow, .section-kicker {
  text-transform: uppercase; letter-spacing: .18em; font-size: .76rem; font-weight: 800;
}
.hero h1 { font-size: clamp(2.6rem, 5vw, 5rem); line-height: 1.02; margin: 12px 0 18px; }
.hero-text { max-width: 620px; font-size: 1.08rem; color: rgba(255,255,255,.9); }
.hero-actions { display:flex; flex-wrap:wrap; gap:14px; margin-top: 30px; }
.hero-points { display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:12px; margin:28px 0 0; padding:0; list-style:none; }
.hero-points li {
  padding: 16px 18px; border-radius: 18px; background: rgba(255,255,255,.12); backdrop-filter: blur(8px); font-size: .95rem;
}
.glass {
  background: rgba(255,255,255,.14); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.2);
}
.hero-card { color:#fff; padding: 24px; border-radius: 26px; }
.hero-card-title { margin:0 0 18px; text-transform: uppercase; letter-spacing: .16em; font-size: .74rem; font-weight: 800; opacity: .86; }
.hero-card-list { display:grid; gap:18px; }
.hero-card-list span { display:block; opacity:.72; font-size:.86rem; margin-bottom: 6px; }
.hero-card-list strong a { color:#fff; }
.stats-band { margin-top: -28px; position: relative; z-index: 2; }
.stats-grid { display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.stat {
  background: rgba(255,255,255,.86); border:1px solid var(--line); border-radius: 22px; padding: 22px 24px;
  box-shadow: var(--shadow);
}
.stat strong { display:block; font-size: 1.8rem; }
.stat span { color:var(--muted); }
.section { padding: 88px 0; }
.section.alt { background: linear-gradient(180deg, rgba(255,255,255,.35), rgba(255,255,255,0)); }
.section-head { max-width: 720px; margin-bottom: 28px; }
.section-head h2, .section-copy h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 10px 0 12px; line-height:1.1; }
.section-head p, .lead { color: var(--muted); font-size: 1.05rem; }
.feature-grid { display:grid; grid-template-columns: minmax(0,1fr) minmax(320px, 1fr); gap: 26px; align-items: start; }
.card {
  background: rgba(255,255,255,.78); border:1px solid var(--line); border-radius: var(--radius-xl); box-shadow: var(--shadow); padding: 28px;
}
.equipment-card .card-heading { margin-bottom: 20px; }
.equipment-card h3 { margin:0 0 6px; font-size: 1.4rem; }
.equipment-card .card-heading span { color:var(--muted); }
.check-grid { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
.check-item {
  padding: 14px 16px 14px 42px; border-radius: 16px; background: var(--surface-solid); position: relative; border:1px solid rgba(15,23,42,.06);
}
.check-item::before {
  content: '✓'; position:absolute; left: 16px; top: 12px; width: 18px; height: 18px; display:grid; place-items:center;
  border-radius:50%; background: rgba(15,118,110,.1); color:var(--brand); font-weight:900;
}
.gallery-tabs { display:flex; flex-wrap:wrap; gap: 10px; margin-bottom: 22px; }
.tab-btn {
  padding: 12px 16px; border-radius: 999px; border:1px solid var(--line); background: rgba(255,255,255,.7); font: inherit; font-weight: 700; color:var(--muted); cursor:pointer;
}
.tab-btn.active { background: linear-gradient(135deg, var(--brand), var(--brand-2)); color:#fff; }
.gallery-panel { display:none; }
.gallery-panel.active { display:block; }
.gallery-grid { display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
.gallery-item { overflow:hidden; border-radius: 22px; background:#fff; border:1px solid var(--line); aspect-ratio: 4/3; box-shadow: var(--shadow); }
.gallery-item img { width:100%; height:100%; object-fit:cover; transition: transform .6s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.empty-box {
  border: 2px dashed rgba(15,23,42,.12); border-radius: 22px; min-height: 220px; display:grid; place-items:center; color:var(--muted);
  grid-column: 1 / -1; background: rgba(255,255,255,.48);
}
.pricing-wrap { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.price-card {
  background: linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.7));
  border:1px solid var(--line); border-radius: var(--radius-xl); box-shadow: var(--shadow); padding: 28px;
}
.price-header { display:flex; justify-content:space-between; gap:20px; align-items:start; margin-bottom: 18px; }
.price-header h3 { margin:0 0 8px; font-size: 1.45rem; }
.price-header p { margin:0; color:var(--muted); white-space:pre-line; }
.price-value { font-size: 1.4rem; font-weight: 800; padding: 12px 14px; border-radius: 18px; background: rgba(15,118,110,.08); white-space: nowrap; }
.price-note { color: var(--muted); white-space: pre-line; line-height: 1.6; }
.cards-grid { display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:18px; }
.feature-card { position:relative; }
.feature-icon {
  width: 52px; height: 52px; border-radius: 16px; margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(15,118,110,.18), rgba(21,94,239,.18));
}
.feature-card h3 { margin:0 0 12px; font-size: 1.35rem; }
.contact-box { display:grid; grid-template-columns: minmax(280px, .82fr) minmax(380px, 1.18fr); gap: 34px; align-items: start; }
.contact-box .section-copy { max-width: 520px; }
.contact-card { display:grid; gap: 18px; margin-top: 34px; }
.contact-row span, .bank-box span { display:block; font-size: .85rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; font-weight: 800; margin-bottom: 8px; }
.contact-row a, .contact-row strong, .bank-box strong { font-size: 1.08rem; font-weight: 700; }
.bank-box { padding: 18px; border-radius: 18px; background: rgba(15,118,110,.06); }
.contact-note { color: var(--muted); font-weight: 600; }
.owners-memory {
  margin: 0;
  position: relative;
  width: min(430px, calc(100% + 92px));
  margin-top: 34px;
  padding: 0 0 18px;
  border: 0;
  box-shadow: none;
  z-index: 3;
}
.owners-memory-photo {
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 3 / 2;
  background: #dbc6a4;
  box-shadow: 0 28px 60px rgba(73, 57, 34, .2);
  border: 1px solid rgba(255,255,255,.45);
}
.owners-memory-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.owners-memory::after {
  content: '';
  position: absolute;
  top: -8px;
  right: 42px;
  width: 92px;
  height: 28px;
  border-radius: 999px;
  background: rgba(214,185,138,.42);
  transform: rotate(11deg);
  box-shadow: 0 10px 20px rgba(73, 57, 34, .08);
}
.owners-memory-inline {
  margin-right: -88px;
  transform: translateX(56px) rotate(-1.5deg);
}
.owners-memory-copy {
  position: relative;
  margin: -26px 18px 0 42px;
  padding: 16px 18px 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.38);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.5);
  box-shadow: 0 18px 40px rgba(15,23,42,.12);
}
.owners-memory-copy strong {
  display: block;
  margin-top: 4px;
  font-size: 1.08rem;
  line-height: 1.1;
}
.owners-memory-copy p {
  margin: 10px 0 0;
  color: rgba(31,41,51,.84);
  line-height: 1.6;
  font-size: .95rem;
}
.owners-memory-kicker {
  display: inline-block;
  margin-top: 0;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .74rem;
  font-weight: 800;
  color: #8f5a2b;
}
.footer { padding: 36px 0 56px; }
.footer-wrap {
  background: rgba(255,255,255,.78); border:1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow);
  display:flex; justify-content:space-between; gap:20px; align-items:center; padding: 22px 24px;
}
.footer p { margin:6px 0 0; color:var(--muted); }
.footer-links { display:flex; gap: 18px; flex-wrap:wrap; }
.richtext p:first-child { margin-top: 0; }
.richtext p:last-child { margin-bottom: 0; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
@media (max-width: 1080px) {
  .hero-grid, .feature-grid, .contact-box, .cards-grid, .pricing-wrap, .gallery-grid, .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-points { grid-template-columns: 1fr; }
  .owners-memory {
    width: min(380px, calc(100% + 36px));
  }
  .owners-memory-inline {
    margin-right: -28px;
    transform: translateX(18px) rotate(-1deg);
  }
}
@media (max-width: 760px) {
  .container { width: min(100% - 24px, 1180px); }
  .nav { display:none; }
  .header-actions { gap:10px; }
  .btn-small { display:none; }
  .menu-toggle { display:inline-flex; }
  .mobile-menu.is-open { display:block; }
  .hero::before { inset: 10px 12px 0; border-radius: 24px; }
  .hero { padding-top: 32px; }
  .hero-grid { padding: 26px 14px 30px; }
  .hero h1 { font-size: 2.3rem; }
  .stats-grid, .feature-grid, .check-grid, .gallery-grid, .pricing-wrap, .cards-grid, .contact-box { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .price-header { flex-direction: column; }
  .footer-wrap { flex-direction: column; align-items: flex-start; }
  .contact-card { margin-top: 0; }
  .owners-memory {
    width: 100%;
    margin-top: 24px;
    padding: 0 0 12px;
    transform: none;
  }
  .owners-memory-inline {
    margin-right: 0;
    transform: none;
  }
  .owners-memory-copy {
    margin: -18px 10px 0;
    padding: 14px 14px 16px;
  }
  .owners-memory-copy strong { font-size: 1rem; }
}

.attractions-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:24px;
}
.attraction-card{
  position:relative;
  border-radius:28px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.18);
  box-shadow:var(--shadow);
  background:#dfe7df;
}
.attraction-card-static{
  min-height:420px;
}
.attraction-cover-static{
  position:relative;
  display:block;
  min-height:420px;
  background:linear-gradient(135deg, rgba(15,118,110,.12), rgba(21,94,239,.08));
}
.attraction-cover-static > img,
.attraction-cover-static > .attraction-cover-fallback{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}
.attraction-cover-static::after{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(15,23,42,.08) 0%, rgba(15,23,42,.18) 38%, rgba(15,23,42,.62) 100%);
}
.attraction-overlay{
  position:absolute;
  inset:auto 18px 18px 18px;
  z-index:2;
}
.attraction-overlay-inner{
  padding:22px 22px 18px;
  border-radius:24px;
  color:#fff;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.22);
  box-shadow:0 16px 40px rgba(15,23,42,.20);
}
.attraction-title{
  font-size:1.35rem;
  line-height:1.15;
  font-weight:800;
  margin-bottom:10px;
  color:#fff;
}
.attraction-description{
  color:rgba(255,255,255,.92);
  line-height:1.55;
  font-size:.98rem;
}
.attraction-description p{
  margin:0;
}
.attraction-description p + p{
  margin-top:10px;
}
.attraction-description a{
  color:#fff;
  text-decoration:underline;
}
.attraction-cover-fallback{
  display:block;
  width:100%;
  height:100%;
  min-height:420px;
  background:linear-gradient(135deg, rgba(15,118,110,.18), rgba(214,185,138,.32));
}
@media (max-width: 900px){
  .attractions-grid{ grid-template-columns:1fr; }
  .attraction-card-static,
  .attraction-cover-static,
  .attraction-cover-fallback{ min-height:360px; }
  .attraction-overlay{ inset:auto 14px 14px 14px; }
  .attraction-overlay-inner{ padding:18px 18px 16px; border-radius:20px; }
}
@media (max-width: 640px){
  .attraction-card-static,
  .attraction-cover-static,
  .attraction-cover-fallback{ min-height:320px; }
  .attraction-title{ font-size:1.18rem; }
  .attraction-description{ font-size:.92rem; line-height:1.45; }
}


.poster-copy .section-kicker{
  margin-bottom: 8px;
}
.poster-copy h2{
  margin-bottom: 22px;
}
.about-poster{
  display:flex;
  flex-wrap:wrap;
  gap:14px 16px;
  align-items:flex-end;
  margin-bottom: 24px;
}
.poster-chip{
  display:inline-flex;
  align-items:center;
  padding: 10px 16px;
  border-radius: 22px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 14px 34px rgba(15,23,42,.06);
  line-height: 1;
  letter-spacing: -.03em;
  font-weight: 800;
}
.poster-chip.is-xxl{
  font-size: clamp(3.8rem, 7vw, 6.2rem);
  padding: 14px 22px;
  border-radius: 30px;
}
.poster-chip.is-xl{
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  padding: 14px 22px;
  border-radius: 28px;
}
.poster-chip.is-lg{
  font-size: clamp(1.4rem, 2.4vw, 2.1rem);
}
.poster-chip.is-md{
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
}
.poster-chip.is-sm{
  font-size: 1rem;
  font-weight: 700;
}
.poster-chip.is-xs{
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .01em;
}
.poster-chip.accent{
  background: linear-gradient(135deg, rgba(15,118,110,.12), rgba(15,118,110,.2));
  color: var(--brand);
}
.poster-chip.accent-2{
  background: linear-gradient(135deg, rgba(21,94,239,.12), rgba(214,185,138,.24));
  color: var(--brand-2);
}
.poster-chip.muted{
  background: rgba(15,23,42,.04);
  color: var(--muted);
}
.about-support{
  max-width: 640px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}
.about-support p{
  margin: 0;
}
.about-support p + p{
  margin-top: 12px;
}
@media (max-width: 760px){
  .about-poster{
    gap: 10px 10px;
    margin-bottom: 18px;
  }
  .poster-chip{
    padding: 9px 12px;
    border-radius: 18px;
  }
  .poster-chip.is-xxl,
  .poster-chip.is-xl{
    padding: 10px 14px;
    border-radius: 20px;
  }
  .about-support{
    font-size: .96rem;
  }
}


.location-reviews-grid{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(320px,.92fr);
  gap:24px;
  align-items:start;
}
.map-card{
  padding:18px;
}
.map-frame{
  overflow:hidden;
  border-radius:28px;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  background:#fff;
}
.map-frame iframe{
  display:block;
  width:100%;
  height:440px;
  border:0;
}
.map-card-actions{
  margin-top:16px;
}
.reviews-card{
  background:rgba(255,255,255,.82);
  border:1px solid var(--line);
  border-radius:var(--radius-xl);
  box-shadow:var(--shadow);
  padding:28px;
}
.reviews-head h3{
  margin:10px 0 0;
  font-size:2rem;
  line-height:1.08;
}
.reviews-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
  margin-top:22px;
}
.review-tile{
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  padding:18px;
  box-shadow:0 12px 30px rgba(15,23,42,.06);
}
.review-stars{
  color:#d39a17;
  letter-spacing:.12em;
  font-size:1rem;
  margin-bottom:8px;
}
.review-tile h4{
  margin:0 0 10px;
  font-size:1rem;
}
.review-tile p{
  margin:0;
  color:var(--muted);
  line-height:1.55;
}
.reviews-actions{
  margin-top:20px;
}
@media (max-width: 1080px){
  .location-reviews-grid{
    grid-template-columns:1fr;
  }
}
@media (max-width: 760px){
  .reviews-grid{
    grid-template-columns:1fr;
  }
  .map-frame iframe{
    height:320px;
  }
}

.gallery-trigger{
  display:block;
  width:100%;
  height:100%;
  cursor:zoom-in;
}
.gallery-trigger img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}
.gallery-fixed-back{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:100;
  background:rgba(246,244,239,.96);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(15,23,42,.08);
  box-shadow:0 8px 24px rgba(15,23,42,.08);
}
.gallery-fixed-back-inner{
  padding:12px 0;
  display:flex;
  justify-content:flex-start;
}
main.is-gallery-view{
  padding-top:82px;
}
main.is-gallery-view .section{
  padding-top:40px;
}
main.is-gallery-view .section.alt{
  background:transparent;
}
main.is-gallery-view .section-head{
  max-width:860px;
}
@media (max-width:760px){
  .gallery-fixed-back-inner .btn{
    width:100%;
    justify-content:center;
  }
  main.is-gallery-view{
    padding-top:74px;
  }
  main.is-gallery-view .section{
    padding-top:28px;
  }
}
