:root {
  --bg: #fff9f3;
  --surface: #ffffff;
  --surface-soft: #f6eee4;
  --text: #1f1a16;
  --text-muted: #5f5248;
  --brand: #8d6b2a;
  --brand-strong: #5c4414;
  --brand-soft: #f0debd;
  --border: #d9cab6;
  --success-focus: #0f766e;
  --shadow: 0 10px 35px rgba(92, 68, 20, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Assistant", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 85% 10%, rgba(240, 222, 189, 0.65), transparent 38%),
    radial-gradient(circle at 8% 90%, rgba(241, 210, 153, 0.28), transparent 40%),
    var(--bg);
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-family: "Secular One", sans-serif;
  line-height: 1.2;
  margin: 0;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
[tabindex="0"]:focus-visible {
  outline: 3px solid var(--success-focus);
  outline-offset: 3px;
  border-radius: 8px;
}

.skip-link {
  position: absolute;
  right: 1rem;
  top: -120px;
  background: #0f172a;
  color: #fff;
  padding: 0.7rem 1rem;
  z-index: 2000;
  text-decoration: none;
  font-weight: 700;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  background: rgba(255, 249, 243, 0.9);
  border-bottom: 1px solid rgba(141, 107, 42, 0.18);
}

.nav-wrap {
  min-height: 5rem;
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  gap: 1rem;
  align-items: center;
}

.brand {
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}

.brand-main {
  font-family: "Secular One", sans-serif;
  color: var(--brand-strong);
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  letter-spacing: 0.08em;
}

.brand-sub {
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  margin-top: 0.25rem;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--brand-strong);
  border-radius: 999px;
  min-width: 2.8rem;
  min-height: 2.8rem;
  cursor: pointer;
  font-size: 1.2rem;
}

.site-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 1.2rem;
  justify-content: center;
}

.site-nav {
  justify-self: center;
}

.site-nav a {
  text-decoration: none;
  font-weight: 700;
  color: var(--text);
}

.site-nav a:hover {
  color: var(--brand-strong);
}

.instagram-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--brand-strong);
  transition: transform 180ms ease, background-color 180ms ease;
}

.instagram-link:hover {
  transform: translateY(-1px);
  background: var(--surface-soft);
}

.instagram-link svg {
  width: 1.28rem;
  height: 1.28rem;
  fill: currentColor;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  min-height: 3rem;
  padding: 0.65rem 1.25rem;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-strong), var(--brand));
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: var(--surface);
  border-color: var(--border);
  color: var(--text);
}

.hero {
  padding: 4.5rem 0 3.2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.9rem;
  display: inline-block;
  background: var(--brand-soft);
  color: #3f2d0a;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(2rem, 6vw, 3.9rem);
  letter-spacing: 0.01em;
  margin-bottom: 1rem;
}

.hero-text {
  margin: 0;
  color: var(--text-muted);
  font-size: clamp(1.03rem, 2vw, 1.25rem);
  max-width: 45ch;
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-meta {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-weight: 700;
  color: var(--text-muted);
}

.hero-meta a {
  color: var(--brand-strong);
}

.hero-media {
  margin: 0;
  background: var(--surface);
  border-radius: 1.3rem;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-media img {
  aspect-ratio: 8 / 5;
  object-fit: cover;
}

.hero-media img.hero-logo {
  object-fit: contain;
  background: #f6eee4;
}

.hero-media.hero-media-logo img.hero-logo {
  aspect-ratio: auto;
  height: auto;
}

.hero-media.hero-media-logo figcaption {
  display: none;
}

.hero-media figcaption {
  margin: 0;
  padding: 0.8rem 1rem;
  font-size: 0.96rem;
  color: var(--text-muted);
}

.mobile-gallery-carousel {
  display: none;
}

.mobile-gallery-carousel__track {
  list-style: none;
  margin: 0;
  padding: 0;
}

.section-head {
  max-width: 58ch;
  margin-bottom: 1.3rem;
}

.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 0.6rem;
}

.section-head p {
  margin: 0;
  color: var(--text-muted);
}

.benefits,
.services,
.gallery,
.terms,
.footer {
  padding: 3.4rem 0;
}

.benefit-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.benefit-grid li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1rem;
}

.benefit-grid h3 {
  font-size: 1.25rem;
  margin-bottom: 0.45rem;
}

.benefit-grid p {
  margin: 0;
  color: var(--text-muted);
}

.table-wrap {
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow-x: auto;
  background: var(--surface);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
}

caption {
  text-align: right;
  font-weight: 800;
  padding: 1rem;
  color: var(--brand-strong);
}

th,
td {
  padding: 0.85rem 1rem;
  border-top: 1px solid rgba(141, 107, 42, 0.18);
}

thead th {
  border-top: 0;
  color: #fff;
  background: linear-gradient(120deg, var(--brand-strong), var(--brand));
}

tbody th {
  text-align: right;
}

td {
  white-space: nowrap;
  font-weight: 800;
  color: var(--brand-strong);
}

.policy-note {
  margin-top: 1rem;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  padding: 0.9rem;
  color: #3d332d;
}

.gallery {
  background: linear-gradient(180deg, transparent, rgba(240, 222, 189, 0.24));
}

.gallery-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.gallery-grid li {
  border-radius: 0.95rem;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}

.gallery-grid li:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-grid li:last-child {
  grid-column: span 2;
}

.gallery-grid img,
.gallery-grid video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
  transition: transform 260ms ease;
}

.gallery-grid img:hover,
.gallery-grid video:hover {
  transform: scale(1.03);
}

.gallery-link {
  margin: 1rem 0 0;
}

.gallery-link a {
  color: var(--brand-strong);
  font-weight: 800;
}

.terms {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(240, 222, 189, 0.22));
}

.terms-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.terms-grid section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1rem;
}

.terms-grid h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.terms-grid ul {
  margin: 0;
  padding-inline-start: 1.2rem;
  color: var(--text-muted);
  display: grid;
  gap: 0.4rem;
}

.terms-grid p {
  margin: 0;
  color: var(--text-muted);
}

.terms-signature {
  margin-top: 0.9rem !important;
  color: var(--brand-strong) !important;
  font-weight: 800;
}

.footer {
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.68);
}

.footer-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.footer h2 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.footer p {
  margin-top: 0;
  color: var(--text-muted);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.6rem;
}

.contact-list li {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.contact-list span {
  font-weight: 800;
}

.contact-list a {
  color: var(--brand-strong);
  font-weight: 700;
}

address {
  font-style: normal;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 1.5rem;
  padding-top: 1rem;
  color: var(--text-muted);
}

.mobile-instagram-fab {
  display: none;
}

.mobile-whatsapp-fab {
  display: none;
}

@media (max-width: 980px) {
  .nav-wrap {
    grid-template-columns: 1fr auto auto;
  }

  .menu-toggle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 0.4rem);
    right: 1rem;
    left: 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 0.75rem;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
  }

  .site-nav a {
    display: block;
    padding: 0.6rem;
    border-radius: 0.6rem;
  }

  .site-nav a:hover {
    background: var(--surface-soft);
  }

  .nav-cta {
    display: none;
  }

  .hero-grid,
  .benefit-grid,
  .gallery-grid,
  .terms-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2.7rem;
  }

  .mobile-gallery-carousel {
    display: block;
    margin-bottom: 1rem;
  }

  .mobile-gallery-carousel__frame {
    position: relative;
    aspect-ratio: 5 / 4;
    overflow: hidden;
    border-radius: 1rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    background: var(--surface);
  }

  .mobile-gallery-carousel__track {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .mobile-gallery-carousel__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 420ms ease, transform 650ms ease;
  }

  .mobile-gallery-carousel__slide.is-active {
    opacity: 1;
    transform: scale(1);
  }

  .mobile-gallery-carousel__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .mobile-gallery-carousel__dots {
    margin-top: 0.6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.42rem;
  }

  .mobile-gallery-carousel__dot {
    width: 0.58rem;
    height: 0.58rem;
    border-radius: 999px;
    border: 1px solid rgba(92, 68, 20, 0.25);
    background: rgba(255, 255, 255, 0.88);
    padding: 0;
    cursor: pointer;
    transition: width 220ms ease, background-color 220ms ease, border-color 220ms ease;
  }

  .mobile-gallery-carousel__dot.is-active {
    width: 1.35rem;
    background: var(--brand-strong);
    border-color: var(--brand-strong);
  }

  .table-wrap {
    overflow-x: visible;
  }

  table {
    min-width: 0;
    table-layout: fixed;
  }

  th,
  td {
    padding: 0.75rem 0.55rem;
    font-size: 0.92rem;
    vertical-align: top;
  }

  thead th:first-child,
  tbody th {
    width: 72%;
  }

  thead th:last-child,
  tbody td {
    width: 28%;
  }

  tbody th,
  td {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  tbody td {
    text-align: left;
    direction: ltr;
  }

  .gallery-grid li,
  .gallery-grid li:first-child,
  .gallery-grid li:last-child {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-grid li img {
    aspect-ratio: 4 / 3;
  }

  .mobile-instagram-fab {
    position: fixed;
    inset-inline-end: 1rem;
    bottom: calc(1rem + env(safe-area-inset-bottom));
    z-index: 1200;
    width: 3.4rem;
    height: 3.4rem;
    border-radius: 999px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: linear-gradient(135deg, #f58529, #dd2a7b 55%, #8134af);
    box-shadow: 0 10px 24px rgba(129, 52, 175, 0.35);
    border: 2px solid rgba(255, 255, 255, 0.75);
  }

  .mobile-instagram-fab svg {
    width: 1.4rem;
    height: 1.4rem;
    fill: currentColor;
  }

  .mobile-whatsapp-fab {
    position: fixed;
    inset-inline-start: 1rem;
    bottom: calc(1rem + env(safe-area-inset-bottom));
    z-index: 1200;
    width: 3.4rem;
    height: 3.4rem;
    border-radius: 999px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: linear-gradient(135deg, #25d366, #128c7e);
    box-shadow: 0 10px 24px rgba(18, 140, 126, 0.35);
    border: 2px solid rgba(255, 255, 255, 0.75);
  }

  .mobile-whatsapp-fab svg {
    width: 1.45rem;
    height: 1.45rem;
    fill: currentColor;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
