@charset "utf-8";
/* ==========================================================================
   SoyAutenti CSS
   Single shared stylesheet for:
   - Global tokens and reset
   - Reusable header
   - Home page sections
   - Legal / privacy / cookies pages
   - Footer
   - Cookie preferences popup
   - Responsive behavior
   ========================================================================== */


/* ==========================================================================
   1. Brand Variables
   ========================================================================== */

:root {
  --nav-text: #ffffff;
  --bg-body: #050507;
  --hero-overlay: rgba(0, 0, 0, 0.55);

  --gold-main: #d4af37;
  --gold-light: #f4d76c;
  --gold-dark: #a37f1f;

  --brown-rich: #6B4E3D;
  --terracotta: #C0876D;

  --peach-nude: #F3D8C7;
  --rose-nude: #E5C1B7;
  --soft-cream: #F7EDE2;
  --pink-light: #F8D9E0;

  --text-main: #6B4E3D;
  --text-muted: #8c6a55;
  --text-on-dark: #ffffff;
  --tagline-red: #d72020;

  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.35);
  --radius-pill: 999px;
  --radius-lg: 20px;
}


/* ==========================================================================
   2. Base Reset and Global Layout
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
}

html,
body {
  min-height: 100%;
}

body.no-scroll {
  overflow: hidden;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--soft-cream);
  color: var(--text-main);
  line-height: 1.5;
}

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

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

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}


/* ==========================================================================
   3. Home Page Intro Logo Animation
   ========================================================================== */

.logo-intro {
  position: fixed;
  inset: 0;
  background: #101010;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: introFadeOut 2s 1s forwards ease;
}

.logo-intro-inner img {
  width: 150%;
  max-width: 300px;
  opacity: 0;
  transform: translateY(0) scale(1.5);
  animation: logoIntro 1.4s cubic-bezier(0, 0, 0.2, 1) forwards;
}

@keyframes logoIntro {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(1.5);
  }

  40% {
    opacity: 1;
    transform: translateY(0) scale(1.5);
  }

  70% {
    opacity: 1;
    transform: translateY(0) scale(1.5);
  }

  100% {
    opacity: 0;
    transform: translateY(-10px) scale(0.5);
  }
}

@keyframes introFadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}


/* ==========================================================================
   4. Reusable Floating Header
   ========================================================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: #000000;
  padding: 1.1rem 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  transform: none;
  transition:
    top 0.35s ease,
    width 0.35s ease,
    max-width 0.35s ease,
    border-radius 0.35s ease,
    background-color 0.35s ease,
    background 0.35s ease,
    padding 0.35s ease,
    box-shadow 0.35s ease,
    backdrop-filter 0.35s ease,
    transform 0.35s ease;
}

.nav.scrolled {
  top: 1rem;
  left: 50%;
  right: auto;
  width: calc(100% - 2rem);
  max-width: 1180px;
  transform: translateX(-50%);
  background: rgba(107, 78, 61, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.6rem 0;
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.45);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav .brand-text img {
  max-width: 186px;
  width: 100%;
  opacity: 1;
  transform: scale(1);
  animation: none;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.nav.scrolled .brand-text img {
  transform: scale(0.78);
  opacity: 0.95;
}

.nav.scrolled .container {
  max-width: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  color: var(--text-on-dark);
}

.nav-link {
  position: relative;
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-on-dark);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  height: 3px;
  width: 0;
  border-radius: 999px;
  background-color: currentColor;
  transition: width 0.22s ease;
}

/* Header underline colors. Text stays white. */
.nav-link--home::after,
.nav-link--privacy::after,
.nav-link--legal::after {
  background-color: var(--pink-light);
}

.nav-link--about::after {
  background-color: var(--terracotta);
}

.nav-link--services::after {
  background-color: #FFE938;
}

.nav-link--location::after {
  background-color: var(--text-on-dark);
}

.nav-link:hover::after,
.nav-link.nav-link--active::after {
  width: 100%;
}

.nav-link--legal.nav-link--active {
  color: var(--text-on-dark);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}


/* ==========================================================================
   5. Buttons
   ========================================================================== */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.9rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 54px;
  border: none;
  cursor: pointer;
  background-color: var(--terracotta);
  color: #ffffff;
  letter-spacing: 0.02em;
  box-shadow: 0 14px 30px rgba(192, 135, 109, 0.55);
  transition:
    background-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.button:hover {
  background-image: linear-gradient(
    120deg,
    var(--terracotta),
    var(--gold-light),
    var(--gold-main),
    var(--gold-dark)
  );
  box-shadow: 0 20px 40px rgba(107, 78, 61, 0.55);
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(0);
  box-shadow: 0 10px 24px rgba(107, 78, 61, 0.45);
}


/* ==========================================================================
   6. Home Page Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #ffffff;
  overflow: hidden;
}

.hero-video-wrapper {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(0, 0, 0, 0.25), transparent 40%),
    radial-gradient(circle at bottom right, rgba(0, 0, 0, 0.55), transparent 45%),
    var(--hero-overlay);
  z-index: -1;
}

.hero-inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 7rem 1.5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-content {
  max-width: 520px;
}

.hero-kicker {
  text-transform: uppercase;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
  color: rgba(107, 78, 61, 0.9);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.hero-heading {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.hero-heading span {
  color: #ffffff;
}

.hero-tagline {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 1.6rem;
  color: var(--terracotta);
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.28),
    0 0 6px rgba(212, 175, 55, 0.20),
    0 0 12px rgba(244, 215, 108, 0.18);
}

.hero-copy {
  font-size: 0.92rem;
  max-width: 380px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-secondary-link {
  font-size: 0.86rem;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.hero-secondary-link i {
  font-size: 1rem;
}

#services {
  scroll-margin-top: 30px;
}

#location {
  scroll-margin-top: 8px;
  background: var(--bg-body);
}


/* ==========================================================================
   7. Home Page Carousel
   ========================================================================== */

.section-carousel {
  background: #050507;
  padding: 3.5rem 0 4rem;
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.section-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-carousel-card {
  background: #101014;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 1rem;
  position: relative;
  overflow: hidden;
}

.carousel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.2rem 0.35rem 0.8rem;
}

.carousel-title-group {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}

.carousel-title {
  font-size: 0.95rem;
  font-weight: 600;
}

.carousel-pill {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.carousel-badges {
  display: flex;
  gap: 0.35rem;
}

.carousel-badge {
  font-size: 0.7rem;
  padding: 0.12rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.carousel {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 4px);
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  padding: 0.5rem;
}

.slide-inner {
  display: grid;
  grid-template-columns: 1.15fr 1.2fr;
  gap: 1rem;
  align-items: center;
}

.slide-text-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.slide-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.slide-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.7rem;
}

.slide-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.72rem;
}

.slide-meta-pill {
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.slide-image-wrapper {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: radial-gradient(circle at top left, #3b0d1f, #090912);
  aspect-ratio: 4 / 3;
}

.slide-image,
.responsive-img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1);
}

.slide-image-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(212, 175, 55, 0.35), transparent 50%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.65));
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.carousel-controls {
  position: absolute;
  inset: auto 0 0.65rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.55rem;
  pointer-events: none;
}

.carousel-arrows {
  display: flex;
  gap: 0.35rem;
  pointer-events: auto;
}

.carousel-arrow-btn {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: none;
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.5);
}

.carousel-arrow-btn:hover {
  transform: translateY(-1px);
  background: #16161e;
}

.carousel-dots {
  display: flex;
  gap: 0.3rem;
  pointer-events: auto;
}

.carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: width 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.carousel-dot.active {
  width: 16px;
  background: var(--gold-light);
  transform: translateY(-0.5px);
}


/* ==========================================================================
   8. Location Section
   ========================================================================== */

#location.section-carousel {
  padding-inline: clamp(0.5rem, 0.5vw, 0.5rem);
}

.location {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1200px;
  margin: 2rem auto 0;
  background-color: var(--soft-cream);
  border: 2px solid var(--terracotta);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.location .title {
  margin: 0;
  padding: 1.5rem 1rem;
  text-align: center;
  font-weight: 700;
  color: var(--brown-rich);
  border-bottom: 2px dashed var(--terracotta);
  font-size: 1.25rem;
}

.location .details {
  display: flex;
  flex-direction: column;
  border-bottom: 2px dashed var(--terracotta);
}

.location .details dl {
  margin: 0;
  padding: 1.5rem 2rem;
  text-align: center;
  color: var(--brown-rich);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.location .details dt {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.location .details dd {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
}

.location .details dd:not(:last-child) {
  margin-bottom: 1.5rem;
}

.location .map {
  display: flex;
  align-self: stretch;
}

.location .map img,
.location .map iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  border: 0;
}

.location .map a {
  display: block;
  width: 100%;
}


/* ==========================================================================
   9. Legal, Privacy, Security, Accessibility, and Cookies Pages
   ========================================================================== */

.legal-page {
  flex: 1;
  background: var(--soft-cream);
  color: var(--text-main);
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.legal-layout {
  display: grid;
  grid-template-columns: 40% 60%;
  min-height: 100vh;
  background: var(--soft-cream);
  border-top: 1px solid rgba(107, 78, 61, 0.22);
}

.legal-left {
  position: relative;
  background:
    radial-gradient(circle at 20% 12%, rgba(244, 215, 108, 0.13), transparent 28%),
    var(--soft-cream);
  border-right: 1px solid rgba(107, 78, 61, 0.34);
}

.legal-sticky {
  position: sticky;
  top: 120px;
  padding: clamp(2rem, 4vw, 4.5rem) clamp(1.5rem, 4vw, 3rem);
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Accessibility Statement only */
.accessibility-page .legal-sticky h1 {
  font-size: clamp(2rem, 4.5vw, 3.9rem);
  line-height: 1;
  letter-spacing: 0.03em;
}

.legal-kicker {
  margin-bottom: 1.25rem;
  color: rgba(107, 78, 61, 0.48);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.legal-sticky h1 {
  margin: 0;
  max-width: 520px;
  color: rgba(107, 78, 61, 0.46);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 5.75rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.legal-date {
  margin-top: 2rem;
  color: rgba(107, 78, 61, 0.62);
  font-size: 0.92rem;
  line-height: 1.7;
}

.legal-right {
  background: rgba(247, 237, 226, 0.96);
}

.legal-section {
  padding: clamp(3rem, 6vw, 5.5rem) clamp(2rem, 7vw, 6rem);
  border-bottom: 1px solid rgba(107, 78, 61, 0.28);
}

.legal-section:first-child {
  padding-top: clamp(7rem, 11vw, 9rem);
}

.legal-section:last-child {
  border-bottom: none;
}

.legal-section h2 {
  margin: 0 0 2rem;
  color: rgba(107, 78, 61, 0.58);
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  font-weight: 400;
  letter-spacing: 0.28em;
  line-height: 1.35;
  text-transform: uppercase;
}

.legal-section h3 {
  margin: 2rem 0 0.7rem;
  color: var(--terracotta);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.legal-section p {
  max-width: 780px;
  margin: 0 0 1.1rem;
  color: rgba(107, 78, 61, 0.74);
  font-size: clamp(0.96rem, 1.1vw, 1.08rem);
  font-weight: 300;
  line-height: 1.9;
}

.legal-section ul {
  max-width: 780px;
  margin: 0.35rem 0 1.25rem 1.4rem;
  padding: 0;
}

.legal-section li {
  margin-bottom: 0.45rem;
  padding-left: 0.2rem;
  color: rgba(107, 78, 61, 0.74);
  font-size: clamp(0.96rem, 1.1vw, 1.08rem);
  font-weight: 300;
  line-height: 1.75;
}

.legal-section strong {
  color: rgba(107, 78, 61, 0.92);
  font-weight: 600;
}

.contact-box {
  max-width: 520px;
  margin-top: 1.2rem;
  padding: 1.4rem 1.5rem;
  background: rgba(255, 250, 245, 0.55);
  border: 1px solid rgba(107, 78, 61, 0.24);
  border-radius: 0;
}

.contact-box p {
  margin-bottom: 0.45rem;
  line-height: 1.55;
}


/* ==========================================================================
   10. Footer
   ========================================================================== */

.footer {
  position: relative;
  padding: 2.4rem 1.5rem 1.8rem;
  background: linear-gradient(
    to top,
    #0b0f14 0%,
    #050507 20%,
    #0b0f14 100%
  );
  color: var(--text-on-dark);
  font-size: 0.9rem;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 26px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.12) 45%,
    rgba(0, 0, 0, 0) 100%
  );
  pointer-events: none;
}

.footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(11, 15, 20, 0.22) 30%,
    rgba(11, 15, 20, 0.14) 60%,
    rgba(11, 15, 20, 0) 100%
  );
  pointer-events: none;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.footer-social-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-line {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.18);
}

.footer-social-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.footer-social-icons {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.footer-social-icons .social-icon {
  width: 2.8rem;
  height: 2.8rem;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-social-icons .social-icon:hover {
  color: #ffffff;
  transform: translateY(-3px);
}

.footer-logo {
  margin-bottom: 0.5rem;
}

.footer-logo-img {
  max-width: 170px;
  width: 100%;
  display: inline-block;
}

.footer-copy {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.82);
}

.footer-location {
  font-size: 1rem;
  color: var(--gold-light);
  margin-bottom: 30px;
  -webkit-text-stroke: 1.69px var(--text-main);
  paint-order: stroke fill;
  text-shadow:
    0 0 6px rgba(212, 175, 55, 0.35),
    0 0 14px rgba(212, 175, 55, 0.15);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer-links a,
.footer-links span {
  display: inline-flex;
  align-items: center;
}

.footer-links a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-links a:hover,
.footer-links a.footer-link--active {
  color: var(--gold-light);
  border-color: var(--gold-light);
}

.footer-sep {
  opacity: 0.4;
}

.footer-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.2rem;
  margin-bottom: 1.7rem;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 500;
  transition: color 0.25s ease;
}

.footer-nav a:hover {
  color: var(--gold-light);
}

.footer-book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.1rem 0.9rem;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--gold-light);
  border: 2px solid var(--gold-light);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
  align-self: center;
}

.footer-book-btn:hover {
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.25);
}

.footer-privacy-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.privacy-choices-icon {
  width: 30px;
  height: 14px;
  display: inline-block;
  flex-shrink: 0;
}


/* ==========================================================================
   11. Cookie Banner and Preferences Modal
   ========================================================================== */

.sa-cookie-banner-wrap {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;
  pointer-events: none;
  padding: 1rem;
}

.sa-cookie-banner {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 1.25rem 1.35rem;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 250, 245, 0.98), rgba(247, 237, 226, 0.96));
  border: 1px solid rgba(107, 78, 61, 0.24);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
  color: var(--text-main);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.28s ease, transform 0.28s ease;
  pointer-events: auto;
}

.sa-cookie-banner.is-open {
  opacity: 1;
  transform: translateY(0);
}

.sa-cookie-banner-title {
  margin-bottom: 0.55rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--brown-rich);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sa-cookie-banner-text {
  max-width: 980px;
  margin-bottom: 1rem;
  color: rgba(107, 78, 61, 0.78);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.65;
}

.sa-cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 0.85rem;
}

.sa-cookie-note {
  color: rgba(107, 78, 61, 0.68);
  font-size: 0.78rem;
  line-height: 1.55;
}

.sa-cookie-note a {
  color: var(--terracotta);
  font-weight: 600;
  border-bottom: 1px solid rgba(192, 135, 109, 0.45);
}

.sa-cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.62rem 1.15rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}

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

.sa-cookie-btn-primary {
  background: var(--terracotta);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(192, 135, 109, 0.35);
}

.sa-cookie-btn-primary:hover {
  background-image: linear-gradient(120deg, var(--terracotta), var(--gold-light), var(--gold-main));
  box-shadow: 0 16px 34px rgba(107, 78, 61, 0.35);
}

.sa-cookie-btn-ghost {
  background: rgba(255, 250, 245, 0.64);
  color: var(--brown-rich);
  border-color: rgba(107, 78, 61, 0.24);
}

.sa-cookie-btn-ghost:hover {
  border-color: var(--terracotta);
  box-shadow: 0 10px 22px rgba(107, 78, 61, 0.12);
}

.sa-cookie-backdrop {
  position: fixed;
  inset: 0;
  z-index: 3090;
  background: rgba(5, 5, 7, 0.55);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.sa-cookie-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.sa-cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 3100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
  pointer-events: none;
}

.sa-cookie-modal.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.sa-cookie-modal-card {
  width: min(720px, 100%);
  max-height: min(82vh, 760px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 26px;
  background: var(--soft-cream);
  border: 1px solid rgba(107, 78, 61, 0.24);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  color: var(--text-main);
}

.sa-cookie-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  border-bottom: 1px solid rgba(107, 78, 61, 0.18);
  background: rgba(255, 250, 245, 0.48);
}

.sa-cookie-modal-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brown-rich);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sa-cookie-modal-close {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(107, 78, 61, 0.22);
  border-radius: 999px;
  background: rgba(255, 250, 245, 0.7);
  color: var(--brown-rich);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.sa-cookie-modal-body {
  padding: 1.25rem 1.35rem;
  overflow: auto;
}

.sa-cookie-paragraph {
  color: rgba(107, 78, 61, 0.78);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.7;
}

.sa-cookie-muted {
  color: var(--text-muted);
}

.sa-cookie-section-title {
  margin: 1rem 0 0.45rem;
  color: var(--terracotta);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sa-cookie-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  margin-top: 0.85rem;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 250, 245, 0.55);
  border: 1px solid rgba(107, 78, 61, 0.16);
}

.sa-cookie-option input {
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  accent-color: var(--terracotta);
}

.sa-cookie-option label {
  cursor: pointer;
}

.sa-cookie-option-title {
  margin-bottom: 0.2rem;
  color: var(--brown-rich);
  font-size: 0.92rem;
  font-weight: 700;
}

.sa-cookie-option-desc {
  color: rgba(107, 78, 61, 0.72);
  font-size: 0.84rem;
  font-weight: 300;
  line-height: 1.55;
}

.sa-cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  padding: 1rem 1.35rem 1.2rem;
  border-top: 1px solid rgba(107, 78, 61, 0.18);
  background: rgba(255, 250, 245, 0.42);
}


/* ==========================================================================
   12. Custom Scrollbar
   ========================================================================== */

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track,
::-webkit-scrollbar-button {
  background: #000000;
}

::-webkit-scrollbar-button {
  height: 16px;
}

::-webkit-scrollbar-thumb {
  background: var(--terracotta);
  border-radius: 10px;
  border: 2px solid #000000;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    135deg,
    var(--gold-light),
    var(--gold-main),
    var(--gold-dark)
  );
}


/* ==========================================================================
   13. Responsive Styles
   ========================================================================== */

@media (min-width: 992px) {
  .location {
    flex-direction: row;
    align-items: stretch;
  }

  .location .title {
    padding: 2rem 1.5rem;
  }

  .location .details {
    border-bottom: none;
    border-right: 2px solid var(--terracotta);
    flex: 0 0 40%;
    max-width: 40%;
  }

  .location .details dl {
    padding: 2.5rem 2rem;
  }

  .location .map {
    flex: 0 0 60%;
    max-width: 60%;
  }
}

@media (min-width: 1200px) {
  .location .details dd:not(:last-child) {
    margin-bottom: 2rem;
  }
}

@media (max-width: 900px) {
  .nav-inner {
    padding: 0 1rem;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    gap: 0.5rem;
  }

  .nav .brand-text img {
    max-width: 150px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-left {
    border-right: none;
    border-bottom: 1px solid rgba(107, 78, 61, 0.28);
  }

  .legal-sticky {
    position: relative;
    top: auto;
    min-height: auto;
    padding: 7rem 1.5rem 3rem;
  }

  .legal-sticky h1 {
    max-width: 100%;
    font-size: clamp(2.8rem, 12vw, 4.5rem);
  }

  .legal-section:first-child {
    padding-top: 3.5rem;
  }

  .legal-section {
    padding: 3.5rem 1.5rem;
  }
}

@media (max-width: 720px) {
  .container {
    padding: 0 1.25rem;
  }

  .hero-inner {
    padding: 6rem 1.25rem 3rem;
  }

  .hero-heading {
    font-size: 1.9rem;
  }

  .hero-copy {
    max-width: 100%;
    font-size: 0.9rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  #services,
  #location {
    scroll-margin-top: 80px;
  }
}

@media (max-width: 600px) {
  .footer {
    padding-inline: 1.25rem;
  }

  .footer-social-row {
    gap: 1rem;
  }

  .footer-line {
    display: none;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .sa-cookie-banner-wrap {
    padding: 0.75rem;
  }

  .sa-cookie-banner {
    border-radius: 20px;
    padding: 1rem;
  }

  .sa-cookie-banner-actions,
  .sa-cookie-modal-actions {
    flex-direction: column;
  }

  .sa-cookie-btn {
    width: 100%;
  }

  .sa-cookie-modal-card {
    max-height: 88vh;
    border-radius: 22px;
  }
}

@media (max-width: 480px) {
  .logo-intro-inner img {
    max-width: 65vw;
    transform: translateY(0) scale(1.2);
  }

  @keyframes logoIntro {
    0% {
      opacity: 0;
      transform: translateY(10px) scale(1.2);
    }

    40% {
      opacity: 1;
      transform: translateY(0) scale(1.2);
    }

    70% {
      opacity: 1;
      transform: translateY(0) scale(1.2);
    }

    100% {
      opacity: 0;
      transform: translateY(-6px) scale(0.6);
    }
  }

  .nav {
    padding: 0.7rem 0;
  }

  .nav.scrolled {
    top: 0.6rem;
    width: calc(100% - 1rem);
    padding: 0.5rem 0;
    border-radius: 28px;
  }

  .nav-inner {
    gap: 0.5rem;
  }

  .nav .brand-text img {
    max-width: 130px;
  }

  .button {
    padding: 0.55rem 1.1rem;
    font-size: 0.85rem;
    border-radius: 999px;
  }

  .container {
    padding: 0 1rem;
  }

  .hero-heading {
    font-size: 1.7rem;
  }

  .hero-tagline {
    font-size: 0.95rem;
  }

  .legal-sticky {
    padding: 6.5rem 1rem 2.5rem;
  }

  .legal-kicker {
    font-size: 0.68rem;
  }

  .legal-section {
    padding: 3rem 1rem;
  }

  .legal-section h2 {
    letter-spacing: 0.2em;
  }

  .legal-section p,
  .legal-section li {
    font-size: 0.93rem;
  }
}
