/* ==========================================================================
   Soraia estetika — shared stylesheet
   Colors + fonts matched to the online booking system (form.lime-booking.com)
   ========================================================================== */

:root {
  --primary: #551631;
  --primary-light: #823E36;
  --primary-lighter: rgba(130, 62, 54, 0.1);
  --primary-dark: #3c0f22;
  --gold: #b8863b;
  --gold-light: #e4c98a;
  --text: #0E0E2C;
  --text-subtle: #7a7a85;
  --bg: #ffffff;
  --bg-soft: #FBF6F4;
  --gray: #EEE5E8;
  --white: #ffffff;
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 28px;
  --shadow: 0 10px 30px rgba(85, 22, 49, 0.1);
  --shadow-sm: 0 4px 14px rgba(85, 22, 49, 0.08);
  --font-heading: "Quicksand", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
  --container-w: 1180px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
h3 { font-size: 1.3rem; }

p { color: var(--text); }

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--gold);
  margin-bottom: 10px;
}

.section {
  padding: 72px 0;
}

.section-soft {
  background: var(--bg-soft);
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.section-head p {
  color: var(--text-subtle);
  margin-top: 12px;
  font-size: 1.05rem;
}

.divider {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--primary-light));
  border-radius: 3px;
  margin: 14px auto 0;
}

.section-head.align-left {
  text-align: left;
  margin: 0 0 40px;
}
.section-head.align-left .divider { margin-left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 14px 30px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(85, 22, 49, 0.28);
}
.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(85, 22, 49, 0.34);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-on-dark {
  background: var(--white);
  color: var(--primary);
}
.btn-on-dark:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline-on-dark {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-on-dark:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--gray);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo img {
  height: 56px;
  width: auto;
}

.main-nav ul {
  display: flex;
  gap: 34px;
}

.main-nav a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--text);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--primary);
}
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-cta {
  padding: 11px 24px;
  font-size: 0.92rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle span:nth-child(1) { width: 26px; }
.nav-toggle span:nth-child(2) { width: 20px; margin-left: auto; }
.nav-toggle span:nth-child(3) { width: 26px; }

.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 26px; }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 26px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(60, 15, 34, 0.78) 0%, rgba(85, 22, 49, 0.82) 55%, rgba(85, 22, 49, 0.92) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 100px 0 70px;
}
.hero-content .eyebrow { color: var(--gold-light); }
.hero-content h1 { color: var(--white); }
.hero-content p {
  color: rgba(255,255,255,0.88);
  font-size: 1.12rem;
  margin: 20px 0 32px;
  max-width: 540px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.page-hero {
  position: relative;
  padding: 150px 0 64px;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  text-align: center;
}
.page-hero h1 { color: var(--white); }
.page-hero p {
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 14px auto 0;
}

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.grid {
  display: grid;
  gap: 28px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Service cards */
.service-card {
  padding: 34px 26px;
  text-align: left;
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary-lighter);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--primary);
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { margin-bottom: 8px; }
.service-card p { color: var(--text-subtle); font-size: 0.96rem; }
.service-card .tags {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.service-card .tags span {
  font-size: 0.76rem;
  font-family: var(--font-heading);
  font-weight: 600;
  background: var(--gray);
  color: var(--primary);
  padding: 5px 12px;
  border-radius: 999px;
}

/* About / split section */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.split.reverse .split-media { order: 2; }
.split.reverse .split-text { order: 1; }

/* Team */
.team-card {
  text-align: center;
  overflow: hidden;
}
.team-card .team-photo {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.team-card .team-body {
  padding: 26px 22px 30px;
}
.team-card .role {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.team-card p.bio {
  color: var(--text-subtle);
  font-size: 0.95rem;
  text-align: left;
  margin-top: 12px;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-grid a {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1/1;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-grid a:hover img {
  transform: scale(1.08);
}
.gallery-grid .tall { grid-row: span 2; aspect-ratio: 1/2.15; }
.gallery-grid .wide { grid-column: span 2; aspect-ratio: 2.15/1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(14, 14, 44, 0.92);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: 92vw;
  max-height: 86vh;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.25); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  text-align: center;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,0.85); margin: 12px 0 26px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Booking iframe */
.booking-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--gray);
  overflow: hidden;
}
.booking-frame {
  width: 100%;
  height: 1400px;
  border: none;
  display: block;
}
.booking-fallback {
  text-align: center;
  padding: 18px;
  font-size: 0.92rem;
  color: var(--text-subtle);
  border-top: 1px solid var(--gray);
}
.booking-fallback a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
}

/* Contact strip */
.contact-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.contact-item {
  padding: 26px;
  text-align: center;
}
.contact-item .service-icon { margin: 0 auto 16px; }
.contact-item a { color: var(--primary); font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.82);
  padding-top: 56px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand img {
  height: 50px;
  margin-bottom: 14px;
  border-radius: 8px;
  background: #fff;
  padding: 4px;
}
.footer-brand p { color: rgba(255,255,255,0.65); font-size: 0.92rem; max-width: 280px; }
.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; font-size: 0.94rem; }
.footer-col a:hover { color: var(--gold-light); }
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.footer-social a:hover { background: var(--gold); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom {
  text-align: center;
  padding: 22px 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: var(--shadow-sm);
  }
  .main-nav.is-open { max-height: 400px; }
  .main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 10px 24px 20px;
  }
  .main-nav a { display: block; padding: 14px 0; border-bottom: 1px solid var(--gray); }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }

  .split { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse .split-media,
  .split.reverse .split-text { order: initial; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .contact-strip { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid .tall, .gallery-grid .wide { grid-column: span 1; grid-row: span 1; aspect-ratio: 1/1; }

  .footer-inner { grid-template-columns: 1fr; }
  .section { padding: 52px 0; }
  .booking-frame { height: 1900px; }
  .page-hero { padding: 130px 0 50px; }
}

@media (max-width: 480px) {
  .hero-content { padding: 80px 0 56px; }
  .hero-actions .btn { width: 100%; }
  .cta-band { padding: 40px 22px; }
}
