:root {
  --night: #170925;
  --sun: #f7c948;
  --orange: #e87a2a;
  --white: #fff;
  --muted: rgba(255, 255, 255, 0.76);
  --line: rgba(255, 255, 255, 0.12);
  --glass: rgba(255, 255, 255, 0.08);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { min-height: 100vh; padding-top: 70px; color: var(--white); background: var(--night); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.65; }
img { display: block; max-width: 100%; }
a { color: inherit; }
.header { position: fixed; inset: 0 0 auto; z-index: 1000; height: 70px; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; background: rgba(23, 9, 37, 0.93); border-bottom: 1px solid rgba(255,255,255,.08); backdrop-filter: blur(14px); }
.header-brand { display: flex; align-items: center; gap: 12px; color: #fff; text-decoration: none; }
.header-logo { width: 42px; height: 42px; overflow: hidden; flex: none; border: 2px solid rgba(247,201,72,.42); border-radius: 50%; }
.header-logo img, .hero-logo img { width: 100%; height: 100%; object-fit: cover; }
.header-name { font-size: 1.1rem; font-weight: 750; letter-spacing: .35px; }
.highlight { color: var(--sun); }
.header-nav { display: flex; align-items: center; gap: 4px; }
.header-nav a { padding: 8px 13px; color: var(--muted); border-radius: 8px; text-decoration: none; font-size: .9rem; font-weight: 600; }
.header-nav a:hover, .header-nav a[aria-current="page"] { color: #fff; background: rgba(255,255,255,.1); }
.header-nav a[aria-current="page"] { box-shadow: inset 0 -2px var(--sun); }
.hamburger { display: none; padding: 6px; border: 0; background: none; cursor: pointer; }
.hamburger span { display: block; width: 25px; height: 2px; margin: 5px 0; border-radius: 2px; background: #fff; }
.hero { position: relative; min-height: calc(100vh - 70px); display: grid; place-items: center; overflow: hidden; text-align: center; }
.hero-cover, .hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-cover { object-fit: cover; }
.hero-overlay { background: linear-gradient(180deg, rgba(10,3,18,.25), rgba(10,3,18,.46) 55%, rgba(10,3,18,.86)); }
.hero-content { position: relative; z-index: 1; width: min(760px, calc(100% - 36px)); display: flex; flex-direction: column; align-items: center; }
.hero-logo { width: 112px; height: 112px; margin-bottom: 22px; overflow: hidden; border: 3px solid rgba(255,255,255,.36); border-radius: 50%; box-shadow: 0 12px 50px rgba(0,0,0,.35); }
.eyebrow { color: var(--sun); font-size: .76rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.hero h1 { margin-top: 6px; font-size: clamp(2.7rem, 7vw, 5.4rem); line-height: 1.05; letter-spacing: -.04em; text-shadow: 0 5px 30px rgba(0,0,0,.5); }
.tagline { max-width: 620px; margin-top: 16px; font-size: clamp(1rem, 2.4vw, 1.25rem); color: rgba(255,255,255,.92); }
.hero-actions { display: flex; gap: 12px; justify-content: center; margin-top: 28px; }
.location-badge { margin-top: 22px; padding: 7px 16px; border: 1px solid rgba(255,255,255,.18); border-radius: 99px; background: rgba(0,0,0,.28); font-size: .87rem; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 11px 20px; border: 0; border-radius: 10px; color: #fff; font: inherit; font-weight: 750; text-decoration: none; cursor: pointer; transition: transform .2s, box-shadow .2s; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #2b1521; background: linear-gradient(135deg, var(--sun), var(--orange)); box-shadow: 0 8px 24px rgba(232,122,42,.28); }
.btn-secondary { border: 1px solid rgba(255,255,255,.28); background: rgba(0,0,0,.24); backdrop-filter: blur(8px); }
.btn-whatsapp { background: #25d366; }
.btn-facebook { background: #1877f2; }
.page-shell { min-height: calc(100vh - 70px); background: linear-gradient(155deg, var(--night), #4a1942 50%, #b6432d 110%); }
.page-hero { position: relative; min-height: 330px; display: grid; place-items: center; overflow: hidden; text-align: center; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(15,5,25,.4), rgba(15,5,25,.82)); }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero-content { position: relative; z-index: 1; width: min(720px, calc(100% - 40px)); }
.page-hero h1 { margin: 6px 0 10px; font-size: clamp(2.35rem, 6vw, 4.3rem); line-height: 1.08; }
.page-hero p:last-child { color: rgba(255,255,255,.88); font-size: 1.05rem; }
.page-section { padding: 64px 20px; }
.container { width: min(980px, 100%); margin: 0 auto; }
.narrow { max-width: 760px; }
.center { text-align: center; }
.section-title, .home-intro h2 { margin-bottom: 26px; font-size: clamp(1.8rem, 4vw, 2.5rem); line-height: 1.2; }
.home-intro { background: linear-gradient(180deg, #30123a, var(--night)); }
.home-intro .container > p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; }
.feature-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 38px; text-align: left; }
.feature-links a, .card, .hours-card, .contact-item, .blog-card { border: 1px solid var(--line); background: var(--glass); backdrop-filter: blur(10px); }
.feature-links a { display: flex; flex-direction: column; gap: 5px; padding: 20px; border-radius: 16px; text-decoration: none; }
.feature-links a:hover { border-color: rgba(247,201,72,.48); }
.feature-links span { color: var(--muted); font-size: .9rem; }
.card { padding: 30px; border-radius: 20px; }
.intro { margin: 0 auto 28px; color: var(--muted); text-align: center; }
.about-grid, .gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.about-item, .gallery-card { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.06); }
.about-item { min-height: 250px; display: flex; align-items: flex-end; }
.about-item.wide { grid-column: 1 / -1; }
.about-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 35%, rgba(0,0,0,.83)); }
.about-text { position: relative; z-index: 1; width: 100%; padding: 24px; }
.about-text strong { display: block; font-size: 1.12rem; }
.about-text span { color: rgba(255,255,255,.8); font-size: .9rem; }
.location-card { position: relative; min-height: 370px; margin-top: 22px; display: grid; place-items: center; overflow: hidden; border: 1px solid var(--line); border-radius: 20px; text-align: center; }
.location-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.location-card::after { content: ""; position: absolute; inset: 0; background: rgba(10,3,18,.66); }
.location-content { position: relative; z-index: 1; max-width: 560px; padding: 30px; }
.distance { display: inline-block; margin-top: 16px; padding: 7px 16px; border-radius: 99px; color: var(--sun); background: rgba(247,201,72,.15); font-weight: 700; }
.hours-card { margin-top: 22px; padding: 28px; border-radius: 18px; text-align: center; }
.gallery-img-wrap { aspect-ratio: 4 / 3; overflow: hidden; }
.gallery-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery-card:hover img { transform: scale(1.035); }
.gallery-caption { padding: 18px; color: rgba(255,255,255,.86); font-style: italic; }
.booking-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full-width, .booking-submit, .booking-note, .form-status { grid-column: 1 / -1; }
.form-group label { font-size: .9rem; font-weight: 700; }
.required { color: var(--sun); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 13px 14px; border: 1px solid rgba(255,255,255,.2); border-radius: 10px; outline: none; color: #fff; background: rgba(255,255,255,.09); font: inherit; }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,.55); }
.form-group select option { color: #24132d; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--sun); box-shadow: 0 0 0 3px rgba(247,201,72,.13); }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group small { color: rgba(255,255,255,.58); font-size: .78rem; }
.booking-note { color: rgba(255,255,255,.62); font-size: .82rem; text-align: center; }
.form-trap { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.booking-submit:disabled { cursor: wait; opacity: .72; transform: none; }
.form-status { display: none; padding: 12px 14px; border: 1px solid transparent; border-radius: 10px; font-size: .9rem; text-align: center; }
.form-status[data-state="pending"] { display: block; color: #fff3c4; border-color: rgba(247,201,72,.28); background: rgba(247,201,72,.1); }
.form-status[data-state="success"] { display: block; color: #c8f7d4; border-color: rgba(91,205,122,.34); background: rgba(46,139,87,.2); }
.form-status[data-state="error"] { display: block; color: #ffd0d0; border-color: rgba(255,112,112,.34); background: rgba(170,45,45,.2); }
.contact-list { display: grid; gap: 14px; }
.contact-item { display: flex; align-items: center; gap: 16px; padding: 20px; border-radius: 15px; text-decoration: none; }
.contact-item:hover { border-color: rgba(247,201,72,.45); }
.contact-icon { width: 46px; height: 46px; display: grid; place-items: center; flex: none; border-radius: 50%; background: rgba(247,201,72,.16); font-size: 1.25rem; }
.contact-label { display: block; color: var(--muted); font-size: .82rem; }
.contact-value { display: block; font-weight: 750; overflow-wrap: anywhere; }
.social-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 24px; }
.blog-card { max-width: 700px; margin: 0 auto; padding: 50px 30px; border-radius: 20px; text-align: center; }
.blog-card .sun-icon { font-size: 3rem; }
.blog-card h2 { margin: 14px 0 10px; }
.blog-card p { color: var(--muted); }
.stories-section { background: linear-gradient(180deg, rgba(23,9,37,.15), rgba(23,9,37,.45)); }
.section-heading-row { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 26px; }
.section-heading-row .section-title { margin-bottom: 0; }
.review-badge { padding: 7px 13px; border: 1px solid rgba(247,201,72,.28); border-radius: 999px; color: var(--sun); background: rgba(247,201,72,.1); font-size: .78rem; font-weight: 700; white-space: nowrap; }
.stories-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.story-card { padding: 26px; border: 1px solid var(--line); border-radius: 18px; background: var(--glass); box-shadow: 0 16px 38px rgba(16,6,25,.16); }
.story-card h3 { margin: 7px 0 12px; font-size: 1.3rem; line-height: 1.3; }
.story-meta { color: var(--sun); font-size: .76rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.story-body { color: rgba(255,255,255,.83); white-space: pre-line; }
.story-author { margin-top: 18px; font-weight: 750; }
.stories-empty { padding: 46px 24px; border: 1px dashed rgba(255,255,255,.2); border-radius: 18px; color: var(--muted); text-align: center; background: rgba(255,255,255,.04); }
.stories-empty[hidden] { display: none; }
.stories-empty > span { display: block; margin-bottom: 8px; color: var(--sun); font-size: 2.6rem; }
.stories-empty h3 { margin-bottom: 5px; color: #fff; }
.submit-story-section { background: rgba(16,6,25,.35); }
.story-form-card > .eyebrow, .story-form-card > .section-title { text-align: center; }
.story-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.consent-row { grid-column: 1 / -1; display: flex; align-items: flex-start; gap: 11px; padding: 14px; border-radius: 10px; background: rgba(255,255,255,.055); cursor: pointer; font-size: .88rem; }
.consent-row input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--sun); flex: none; }
.story-submit, .form-note { grid-column: 1 / -1; }
.form-note { color: rgba(255,255,255,.6); font-size: .8rem; text-align: center; }
footer { padding: 28px 20px; color: rgba(255,255,255,.6); background: #100619; border-top: 1px solid rgba(255,255,255,.07); text-align: center; font-size: .84rem; }
@media (max-width: 700px) {
  body { padding-top: 62px; }
  .header { height: 62px; padding: 0 16px; }
  .header-logo { width: 35px; height: 35px; }
  .header-name { font-size: 1rem; }
  .hamburger { display: block; }
  .header-nav { position: fixed; top: 62px; left: 0; right: 0; padding: 12px 16px 18px; flex-direction: column; align-items: stretch; background: rgba(23,9,37,.98); border-bottom: 1px solid var(--line); transform: translateY(-120%); opacity: 0; pointer-events: none; transition: .25s; }
  .header-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .header-nav a { padding: 11px 13px; }
  .hero { min-height: calc(100vh - 62px); }
  .hero-logo { width: 82px; height: 82px; }
  .hero-actions { width: 100%; flex-direction: column; }
  .page-shell { min-height: calc(100vh - 62px); }
  .page-hero { min-height: 280px; }
  .page-section { padding: 46px 16px; }
  .feature-links, .about-grid, .gallery-grid, .booking-form, .story-form, .stories-grid { grid-template-columns: 1fr; }
  .about-item.wide, .form-group.full-width, .booking-submit, .booking-note, .form-status, .consent-row, .story-submit, .form-note { grid-column: auto; }
  .section-heading-row { align-items: flex-start; flex-direction: column; }
  .card { padding: 22px 17px; }
}
