:root {
  --bg: #f6f2ee;
  --surface: #ffffff;
  --surface-soft: #efe7de;
  --text: #1f1b19;
  --muted: #6f645c;
  --primary: #b78953;
  --primary-dark: #94673a;
  --line: #dfd4c7;
  --shadow: 0 18px 45px rgba(31, 27, 25, 0.12);
  --header-bg: rgba(246, 242, 238, 0.92);
  --hero-from: #fffdfb;
  --hero-to: #f6f2ee;
  --field-bg: #ffffff;
  --field-border: #d2c7ba;
  --section-dark-bg: #1f1b19;
  --section-dark-text: #f6f2ee;
  --section-dark-muted: #ddd0c3;
  --section-dark-link: #ffe3bf;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: -200px;
  z-index: 999;
  background: var(--text);
  color: #fff;
  padding: 0.6rem 0.9rem;
  border-radius: 0.5rem;
  text-decoration: none;
}

.skip-link:focus {
  top: 0.75rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  border-bottom: 1px solid var(--line);
  background: var(--header-bg);
  backdrop-filter: blur(12px);
}

.header-content {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.brand strong {
  display: block;
  letter-spacing: 0.02em;
}

.brand small {
  color: var(--muted);
  font-size: 0.82rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}

.site-nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
}

.site-nav a:hover {
  color: var(--primary-dark);
}

.site-nav a.btn-small,
.site-nav a.btn-small:hover {
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  background: var(--surface);
  cursor: pointer;
  padding: 0.55rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
  padding: 0.8rem 1.2rem;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-small {
  padding: 0.5rem 0.95rem;
  background: var(--text);
  color: #fff;
}

.btn-primary {
  background: var(--primary);
  color: #1c140c;
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: #fff;
}

.btn-secondary {
  border-color: var(--line);
  background: var(--surface);
  color: var(--text);
}

.btn-secondary:hover {
  border-color: var(--primary);
}

.btn-full {
  width: 100%;
}

.hero {
  padding: 4.4rem 0 3.6rem;
  background: radial-gradient(circle at 20% 0%, var(--hero-from), var(--hero-to));
}

.hero-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1fr;
  align-items: center;
  max-width: 980px;
  margin-inline: auto;
}

.hero-copy {
  text-align: center;
}

.hero-copy h1 {
  max-width: 24ch;
  margin-inline: auto;
}

.eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 0 0 0.8rem;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.18;
}

h1 {
  font-size: clamp(2rem, 4.4vw, 3.15rem);
  margin-bottom: 0.9rem;
}

h2 {
  font-size: clamp(1.6rem, 2.9vw, 2.35rem);
  margin-bottom: 0.7rem;
}

.hero-copy > p {
  max-width: 60ch;
  margin-inline: auto;
}

.hero-actions {
  margin-top: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.hero-facts {
  margin: 1.8rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-facts li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0.95rem;
  padding: 0.85rem;
}

.hero-facts strong {
  display: block;
  font-size: 1.15rem;
  color: var(--primary-dark);
}

.hero-facts span {
  color: var(--muted);
  font-size: 0.88rem;
}

.section {
  padding: 4.6rem 0;
}

.section-intro {
  max-width: 66ch;
  color: var(--muted);
  margin-bottom: 2rem;
}

.feature-grid,
.service-grid,
.channel-grid {
  display: grid;
  gap: 1rem;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.channel-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card,
.service-card,
.channel-card {
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 1.1rem;
}

.section-accent {
  background: var(--surface-soft);
}

.service-card p,
.feature-card p {
  color: var(--muted);
}

.inline-link {
  display: inline-flex;
  margin-top: 0.35rem;
  text-decoration: none;
  font-weight: 700;
  color: var(--primary-dark);
}

.inline-link:hover {
  text-decoration: underline;
}

.booking-layout {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

.channel-card {
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease;
  min-width: 0;
  overflow: hidden;
}

.channel-card:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
}

.channel-card h3 {
  margin-bottom: 0.35rem;
}

.channel-card p {
  margin: 0;
  color: var(--muted);
  overflow-wrap: break-word;
  word-break: break-word;
}

.booking-form-wrap {
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 1.2rem;
}

.booking-form-wrap h3 {
  margin-bottom: 1rem;
}

.contact-form {
  display: grid;
  gap: 0.6rem;
}

.contact-form label {
  font-size: 0.92rem;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--field-border);
  border-radius: 0.65rem;
  background: var(--field-bg);
  padding: 0.68rem 0.75rem;
  font: inherit;
  color: inherit;
}

.contact-form textarea {
  resize: vertical;
  min-height: 110px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  outline: 2px solid rgba(183, 137, 83, 0.18);
}

.form-feedback {
  min-height: 1.2em;
  margin: 0.4rem 0 0;
  font-weight: 600;
  font-size: 0.92rem;
}

.gallery-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-item {
  border: 1px solid var(--line);
  border-radius: 1rem;
  overflow: hidden;
  padding: 0;
  background: var(--surface);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.section-dark {
  background: var(--section-dark-bg);
  color: var(--section-dark-text);
}

.section-dark .section-intro,
.section-dark p {
  color: var(--section-dark-muted);
}

.section-dark p a {
  color: var(--section-dark-link);
}

.section-dark .btn-instagram {
  font-size: 0.9rem;
}

.hours-block {
  margin-top: 0.35rem;
}

.hours-title {
  margin: 0 0 0.35rem;
  font-weight: 700;
  color: var(--section-dark-text);
}

.hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 360px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.08rem 0;
}

.hours-list span {
  color: var(--section-dark-muted);
}

.hours-list strong {
  color: var(--section-dark-text);
  white-space: nowrap;
}

.contact-layout {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.contact-actions {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.map-wrap {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 320px;
}

.map-wrap iframe {
  border: 0;
  width: 100%;
  height: 100%;
}

.site-footer {
  padding: 1.15rem 0 5.2rem;
  border-top: 1px solid var(--line);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  justify-content: space-between;
  color: var(--muted);
}

.source-note {
  font-size: 0.88rem;
}

.mobile-cta {
  position: fixed;
  left: 0.65rem;
  right: 0.65rem;
  bottom: 0.65rem;
  z-index: 130;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(31, 27, 25, 0.15);
  display: flex;
  overflow: hidden;
}

.mobile-cta a {
  flex: 1;
  text-align: center;
  text-decoration: none;
  padding: 0.72rem 0.5rem;
  font-weight: 700;
  font-size: 0.85rem;
  border-right: 1px solid var(--line);
}

.mobile-cta a:last-child {
  border-right: 0;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 170;
  background: rgba(16, 12, 10, 0.92);
  display: grid;
  place-items: center;
  padding: 1.2rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(980px, 86vw);
  max-height: 82vh;
  border-radius: 0.85rem;
}

.lightbox-close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.lightbox-prev {
  left: 0.9rem;
}

.lightbox-next {
  right: 0.9rem;
}

.lightbox-nav:hover,
.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.27);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .header-content {
    justify-content: space-between;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    right: 4%;
    width: min(320px, 92vw);
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 1rem;
    background: var(--surface);
    flex-direction: column;
    align-items: flex-start;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: 0.2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .hero-grid,
  .booking-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .channel-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 4rem;
  }

  .site-footer {
    padding: 1rem 0 1.5rem;
  }

  .hero,
  .section {
    padding: 3.8rem 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .lightbox img {
    max-width: 92vw;
  }

  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .footer-content {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .header-content {
    gap: 0.55rem;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand strong {
    font-size: 0.95rem;
  }

  .brand small {
    display: none;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }
}

@media (min-width: 761px) {
  .mobile-cta {
    display: none;
  }

  .site-footer {
    padding-bottom: 1.2rem;
  }
}
