/* ============================================================
   Kimie's Animal Art — Stylesheet
   Theme: Warm Grey Chic — Linen / Warm Stone / Champagne
   Fonts: DM Serif Display (headings) + DM Sans (body)
   ============================================================ */

/* ------------------------------------------------------------
   Custom Properties
   ------------------------------------------------------------ */
:root {
  --bg:          #E8E8E8;
  --bg-white:    #F4F4F4;
  --bg-section:  #DEDEDE;
  --bg-dark:     #2E2E2E;
  --bg-footer:   #282828;

  --ink:         #1A1A1A;
  --ink-mid:     #444444;
  --ink-light:   #7A7A7A;
  --ink-pale:    #AAAAAA;

  --gold:        #A8834A;
  --gold-light:  #C09E6A;
  --gold-pale:   #D9C090;
  --gold-bg:     #F0EAD8;

  --border:      #D4D4D4;
  --border-dark: rgba(255, 255, 255, 0.1);

  --font-serif:  'DM Serif Display', Georgia, serif;
  --font-sans:   'DM Sans', 'Helvetica Neue', sans-serif;

  --nav-h:       76px;
  --pad-section: 112px;
  --container:   1200px;
  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ------------------------------------------------------------
   Reset & Base
   ------------------------------------------------------------ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--ink);
  background-color: var(--bg);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.22s var(--ease);
}

ul { list-style: none; }

/* ------------------------------------------------------------
   Typography
   ------------------------------------------------------------ */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
  display: block;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--ink);
  margin-bottom: 1.25rem;
  font-weight: 400;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-subtitle {
  font-size: 0.97rem;
  color: var(--ink-light);
  max-width: 580px;
  margin: 0 auto;
  line-height: 2;
  font-weight: 400;
}

/* ------------------------------------------------------------
   Layout
   ------------------------------------------------------------ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
}

.section {
  padding: var(--pad-section) 0;
}

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

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

.section-header {
  text-align: center;
  margin-bottom: 68px;
}

/* ------------------------------------------------------------
   Buttons
   ------------------------------------------------------------ */
.btn-primary,
.btn-hero,
.btn-outline,
.btn-book {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 36px;
  cursor: pointer;
  border: none;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--ink);
  color: var(--bg-white);
}

.btn-primary:hover {
  background: var(--gold);
  color: var(--bg-white);
}

.btn-hero {
  background: transparent;
  color: var(--bg-white);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 16px 48px;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  margin-top: 2.5rem;
  display: inline-block;
}

.btn-hero:hover {
  background: var(--bg-white);
  border-color: var(--bg-white);
  color: var(--ink);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border);
  margin-top: 1rem;
}

.btn-outline:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg-white);
}

.btn-large {
  padding: 17px 48px;
  margin-top: 2.5rem;
}

/* ------------------------------------------------------------
   Navigation
   ------------------------------------------------------------ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

#navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 1px 0 var(--border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
}

.logo-main {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--bg-white);
  line-height: 1.1;
  transition: color 0.3s var(--ease);
  letter-spacing: 0.01em;
}

.logo-sub {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  transition: color 0.3s var(--ease);
}

#navbar.scrolled .logo-main {
  color: var(--ink);
}

#navbar.scrolled .logo-sub {
  color: var(--ink-pale);
}

.nav-links {
  display: flex;
  gap: 38px;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.22s var(--ease);
}

.nav-links a:hover,
.nav-links a.nav-active {
  color: var(--bg-white);
}

#navbar.scrolled .nav-links a {
  color: var(--ink-light);
}

#navbar.scrolled .nav-links a:hover,
#navbar.scrolled .nav-links a.nav-active {
  color: var(--ink);
}

.btn-book {
  background: var(--bg-white);
  color: var(--ink);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  padding: 10px 22px;
  font-weight: 500;
  flex-shrink: 0;
}

.btn-book:hover {
  background: var(--gold);
  color: var(--bg-white);
}

#navbar.scrolled .btn-book {
  background: var(--ink);
  color: var(--bg-white);
}

#navbar.scrolled .btn-book:hover {
  background: var(--gold);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--bg-white);
  transition: background 0.3s var(--ease);
}

#navbar.scrolled .hamburger span {
  background: var(--ink);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  padding: 12px 48px 28px;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu li a {
  display: block;
  padding: 15px 0;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-light);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s var(--ease);
}

.mobile-menu li a:hover {
  color: var(--ink);
}

.mobile-menu li:last-child a {
  color: var(--gold);
  font-weight: 500;
  border-bottom: none;
  padding-top: 20px;
}

/* ------------------------------------------------------------
   Hero
   ------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  /*
    PHOTO: Replace gradient with hero photo when received:
    background-image: url('../images/hero.jpg');
    background-size: cover;
    background-position: center 30%;
  */
  background: var(--bg-dark);
}

/* Soft vignette */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 90% 70% at 50% 40%,
    rgba(168, 131, 74, 0.06) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30, 28, 26, 0.45) 0%,
    rgba(30, 28, 26, 0.1) 45%,
    rgba(30, 28, 26, 0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  max-width: 820px;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin-bottom: 1.75rem;
  display: block;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 9vw, 8.5rem);
  font-weight: 400;
  color: var(--bg-white);
  letter-spacing: -0.01em;
  line-height: 0.95;
  margin-bottom: 1.75rem;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-pale);
  display: block;
}

.hero-divider {
  width: 36px;
  height: 1px;
  background: rgba(220, 201, 154, 0.5);
  margin: 0 auto 1.75rem;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.hero-sub {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-pale);
  font-weight: 500;
  opacity: 0.8;
}

/* Scroll indicator */

/* ------------------------------------------------------------
   Marquee Strip
   ------------------------------------------------------------ */
.strip {
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
}

.strip-inner {
  display: inline-flex;
  gap: 48px;
  animation: marquee 32s linear infinite;
  align-items: center;
}

.strip-inner span {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-pale);
  flex-shrink: 0;
}

.strip-dot {
  color: var(--gold) !important;
  font-size: 0.45rem !important;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ------------------------------------------------------------
   About
   ------------------------------------------------------------ */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 96px;
  align-items: center;
}

.about-image {
  position: relative;
}

.img-placeholder {
  background: var(--bg-section);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-pale);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  font-weight: 500;
  flex-direction: column;
  gap: 6px;
}

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
}

.about-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gold);
  color: var(--bg-white);
  width: 114px;
  height: 114px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1px;
  border: 4px solid var(--bg-white);
}

.badge-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--bg-white);
  line-height: 1;
}

.badge-text {
  font-family: var(--font-sans);
  font-size: 0.54rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.4;
  max-width: 68px;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}

.about-body {
  color: var(--ink-mid);
  margin-bottom: 1.4rem;
  font-size: 0.97rem;
  line-height: 2;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 2.25rem;
  padding-top: 2.25rem;
  border-top: 1px solid var(--border);
}

.pillar {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.pillar-icon {
  color: var(--gold);
  font-size: 0.65rem;
  margin-top: 6px;
  flex-shrink: 0;
}

.pillar strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 2px;
}

.pillar p {
  font-size: 0.88rem;
  color: var(--ink-light);
  line-height: 1.7;
  margin: 0;
}

/* ------------------------------------------------------------
   Services — Editorial Row Layout
   ------------------------------------------------------------ */
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 0;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.services-header-left .section-title {
  margin-bottom: 0;
}

.services-header-note {
  font-size: 0.88rem;
  color: var(--ink-light);
  max-width: 320px;
  text-align: right;
  line-height: 1.75;
}

.services-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-bottom: none;
  overflow: hidden;
  background: var(--bg-white);
}

.service-row {
  display: grid;
  grid-template-columns: 48px 1fr 1fr;
  gap: 0 40px;
  align-items: center;
  padding: 32px 36px;
  border-bottom: 1px solid var(--border);
  cursor: default;
  transition: background 0.22s var(--ease);
}

.service-row {
  background: var(--bg-white);
  border-left: 3px solid transparent;
  transition: background 0.22s var(--ease), border-color 0.22s var(--ease);
}

.service-row:hover {
  background: var(--bg);
  border-left-color: var(--gold);
}

.svc-num {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--ink-pale);
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
}

.svc-name {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.svc-name h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--ink);
  font-weight: 400;
  line-height: 1.1;
  transition: color 0.22s var(--ease);
}

.service-row:hover .svc-name h3 {
  color: var(--gold);
}

.svc-tag {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-pale);
}

.svc-desc {
  font-size: 0.88rem;
  color: var(--ink-light);
  line-height: 1.85;
  padding-left: 20px;
  border-left: 1px solid var(--border);
}

.svc-arrow {
  font-size: 1rem;
  color: var(--ink-pale);
  transition: color 0.22s var(--ease), transform 0.22s var(--ease);
  display: block;
  text-align: right;
}

.service-row:hover .svc-arrow {
  color: var(--gold);
  transform: translateX(4px);
}

.services-footer {
  text-align: center;
  padding-top: 36px;
}

/* ------------------------------------------------------------
   Gallery — Carousel
   ------------------------------------------------------------ */
.carousel {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

.carousel-track-wrap {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 0.55s var(--ease);
  will-change: transform;
}

.carousel-slide {
  min-width: 33.333%;
  padding: 0 4px;
  box-sizing: border-box;
}

.carousel-slide img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.carousel-btn {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.22s var(--ease), color 0.22s var(--ease), border-color 0.22s var(--ease);
  z-index: 2;
  flex-shrink: 0;
}

.carousel-btn:hover {
  background: var(--ink);
  color: var(--bg-white);
  border-color: var(--ink);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.22s var(--ease), transform 0.22s var(--ease);
}

.carousel-dot.active {
  background: var(--ink);
  transform: scale(1.3);
}

.gallery-social {
  text-align: center;
  margin-top: 52px;
}

.gallery-social p {
  font-size: 0.88rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-light);
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.gallery-social-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-social-dark {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 13px 32px;
  background: var(--ink);
  color: var(--bg-white);
  border: 1px solid var(--ink);
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}

.btn-social-dark:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-white);
}

/* Carousel responsive */
@media (max-width: 768px) {
  .carousel-slide { min-width: 100%; padding: 0; }
  .carousel-slide img { height: 320px; }
  .carousel-btn { width: 40px; height: 40px; }
}

/* ------------------------------------------------------------
   Testimonials
   ------------------------------------------------------------ */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.testimonial-card {
  background: var(--bg-white);
  padding: 52px 44px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 4.5rem;
  line-height: 0.7;
  color: var(--gold-pale);
  margin-bottom: 1.75rem;
  display: block;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.9;
  color: var(--ink-mid);
  flex-grow: 1;
  margin-bottom: 2.25rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}

.author-line {
  width: 30px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.testimonial-author span {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-pale);
}

/* ------------------------------------------------------------
   Dark section utility
   ------------------------------------------------------------ */
.section-dark {
  background-color: var(--bg-dark);
}

.section-dark .section-title,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark strong {
  color: var(--bg-white);
}

.section-dark .section-eyebrow {
  color: var(--gold-light);
}

.section-dark .contact-item strong {
  color: var(--bg-white);
}

.section-dark .contact-intro,
.section-dark .contact-item p,
.section-dark .contact-item a {
  color: rgba(232, 232, 232, 0.55);
}

.section-dark .contact-item a:hover {
  color: var(--gold-light);
}

.section-dark .contact-icon {
  color: var(--gold);
}

.section-dark .contact-details {
  border-color: rgba(255,255,255,0.08);
}

.section-dark .contact-socials a {
  color: rgba(232, 232, 232, 0.4);
}

.section-dark .contact-socials a:hover {
  color: var(--gold-light);
}

.section-dark .btn-primary {
  background: var(--gold);
  color: var(--bg-dark);
}

.section-dark .btn-primary:hover {
  background: var(--gold-light);
}

.section-dark .contact-map iframe {
  filter: none;
  border-color: rgba(255,255,255,0.08);
}

/* ------------------------------------------------------------
   Contact
   ------------------------------------------------------------ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 96px;
  align-items: start;
}

.contact-intro {
  color: var(--ink-mid);
  font-size: 0.97rem;
  line-height: 2;
  margin-bottom: 2.75rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.contact-icon {
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 3px;
}

.contact-item p,
.contact-item a {
  font-size: 0.93rem;
  color: var(--ink-light);
  line-height: 1.75;
}

.contact-item a:hover {
  color: var(--gold);
}

.contact-socials {
  display: flex;
  gap: 20px;
  margin-top: 2.25rem;
  align-items: center;
}

.contact-socials a {
  color: var(--ink-light);
  transition: color 0.22s var(--ease);
}

.contact-socials a:hover {
  color: var(--gold);
}

.contact-map {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}

.contact-map iframe {
  display: block;
  width: 100%;
  border: 1px solid var(--border);
  filter: none;
}

/* ------------------------------------------------------------
   Footer
   ------------------------------------------------------------ */
.footer {
  background: var(--bg-footer);
  color: rgba(243, 241, 238, 0.85);
  padding: 84px 0 44px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 68px;
  padding-bottom: 68px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 6px;
  color: var(--bg-white);
}

.footer-tagline {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-address {
  font-size: 1rem;
  color: rgba(243, 241, 238, 0.55);
  line-height: 1.85;
  margin-bottom: 6px;
}

.footer-phone {
  font-size: 1rem;
  color: rgba(243, 241, 238, 0.55);
  transition: color 0.22s var(--ease);
}

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

.footer h4 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 22px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  font-size: 1rem;
  color: rgba(243, 241, 238, 0.55);
  transition: color 0.22s var(--ease);
}

.footer-links a:hover {
  color: rgba(243, 241, 238, 0.9);
}

.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: rgba(243, 241, 238, 0.55);
  transition: color 0.22s var(--ease);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: 0.88rem;
  color: rgba(243, 241, 238, 0.3);
  letter-spacing: 0.04em;
}

.footer-area {
  font-size: 0.78rem !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase;
  font-weight: 500;
}

/* ------------------------------------------------------------
   Scroll Animations
   ------------------------------------------------------------ */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }

/* ------------------------------------------------------------
   Responsive — Tablet (≤1024px)
   ------------------------------------------------------------ */
@media (max-width: 1024px) {
  :root { --pad-section: 88px; }

  .container     { padding: 0 36px; }
  .nav-container { padding: 0 36px; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 68px;
  }

  .about-image {
    max-width: 460px;
    margin: 0 auto;
  }

  .services-header { flex-direction: column; align-items: flex-start; }
  .services-header-note { text-align: left; max-width: 100%; }
  .service-row { grid-template-columns: 40px 1fr; grid-template-rows: auto auto; gap: 8px 20px; }
  .svc-desc { grid-column: 2; border-left: none; padding-left: 0; margin-top: 4px; }
  .svc-arrow { display: none; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-featured { order: -1; }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .contact-map { position: static; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .footer-brand { grid-column: 1 / -1; }
}

/* ------------------------------------------------------------
   Responsive — Mobile (≤768px)
   ------------------------------------------------------------ */
@media (max-width: 768px) {
  :root {
    --pad-section: 68px;
    --nav-h: 64px;
  }

  .container     { padding: 0 22px; }
  .nav-container { padding: 0 22px; }

  .nav-links,
  .btn-book { display: none; }

  .hamburger { display: flex; }

  .mobile-menu { padding: 12px 22px 26px; }

  .hero-title { font-size: clamp(3.2rem, 14vw, 5rem); }

  .service-row { grid-template-columns: 36px 1fr; }
  .svc-desc { grid-column: 1 / -1; padding-left: 0; border-left: none; }

  .about-badge {
    width: 90px;
    height: 90px;
    right: -10px;
    bottom: -10px;
  }

  .badge-number { font-size: 1.75rem; }

  .testimonial-card { padding: 40px 28px; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

/* ------------------------------------------------------------
   Responsive — Small Mobile (≤480px)
   ------------------------------------------------------------ */
@media (max-width: 480px) {
  :root { --pad-section: 52px; }

  .container    { padding: 0 18px; }
  .hero-content { padding: 0 16px; }
  .section-header { margin-bottom: 48px; }
  .service-card   { padding: 34px 26px; }
  .testimonial-card { padding: 32px 22px; }
}
