/* ============================================
    Aravali Greens — Slim editorial UI
   Cormorant Garamond + Outfit · muted stone accent
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap');

:root {
  --color-bg: #f5f4f2;
  --color-bg-dark: #0c0c0c;
  --color-charcoal: #141414;
  --color-charcoal-light: #2a2a2a;
  /* Single restrained accent (warm stone) */
  --color-gold: #6e655c;
  --color-gold-light: rgba(110, 101, 92, 0.14);
  --color-gold-dark: #4f4842;
  --color-gray: #5c5c5c;
  --color-gray-light: #949494;
  --color-gray-ultra-light: #ebe9e6;
  --color-white: #ffffff;
  --color-border: rgba(20, 20, 20, 0.09);
  --color-border-light: rgba(20, 20, 20, 0.06);

  --font-serif: 'Playfair Display', Georgia, serif;
--font-sans: 'Inter', system-ui, -apple-system, sans-serif;
--font-thin: 'Inter', system-ui, -apple-system, sans-serif;


  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.75rem;
  --spacing-lg: 3.5rem;
  --spacing-xl: 5rem;
  --spacing-xxl: 8rem;

  --transition-fast: 0.22s ease;
  --transition-smooth: 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 1s cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-sm: 0 1px 3px rgba(20, 20, 20, 0.04);
  --shadow-md: 0 4px 24px rgba(20, 20, 20, 0.06);
  --shadow-lg: 0 12px 48px rgba(20, 20, 20, 0.08);
  --shadow-gold: 0 4px 20px rgba(110, 101, 92, 0.12);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  --header-height: 68px;
  --header-height-scrolled: 56px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.9375rem;
  color: var(--color-charcoal);
  background-color: var(--color-bg);
  line-height: 1.65;
  letter-spacing: -0.01em;
  overflow-x: hidden;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul { list-style: none; }

/* --- Typography — thin display + clean UI --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-feature-settings: 'kern' 1;
}

h1 { font-size: clamp(2.25rem, 5.5vw, 4rem); font-weight: 400; }
h2 { font-size: clamp(1.85rem, 4vw, 3rem); font-weight: 400; }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.85rem); font-weight: 400; }
h4 { font-size: clamp(1.05rem, 1.8vw, 1.25rem); font-weight: 500; font-family: var(--font-sans); letter-spacing: -0.015em; }

p {
  font-family: var(--font-thin);
  font-weight: 300;
  font-size: 0.9375rem;
  color: var(--color-gray);
  line-height: 1.75;
}

.section-label {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: block;
  margin-bottom: 0.875rem;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--color-charcoal);
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-family: var(--font-thin);
  font-weight: 300;
  font-size: 0.9375rem;
  color: var(--color-gray);
  max-width: 28rem;
  line-height: 1.75;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* --- Sections --- */
.section {
  padding: 20px;
}

.section-center {
  text-align: center;
}

.section-center .section-subtitle {
  margin: 0 auto;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background-color: var(--color-charcoal);
  padding: 0.45rem 0;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar-left {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.top-bar-right {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.top-bar a {
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color var(--transition-fast);
}

.top-bar a:hover { color: var(--color-gold); }

.top-bar-phone {
  color: #ffffff;
  font-weight: 400;
}

.top-bar-divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.15);
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  border-bottom: 1px solid var(--color-border-light);
  height: var(--header-height);
  transition: height var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
}

.header.scrolled {
  height: var(--header-height-scrolled);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
}

.header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo-mark {
  width: 42px;
  height: 42px;
  position: relative;
}

.logo-mark svg {
  width: 100%;
  height: 100%;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--color-charcoal);
  letter-spacing: 0.04em;
}

.logo-tagline {
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-charcoal);
  padding: 0.45rem 0.85rem;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width var(--transition-fast);
}

.nav-link:hover { color: var(--color-gold); }
.nav-link:hover::after { width: 60%; }
.nav-link.active { color: var(--color-gold); }
.nav-link.active::after { width: 60%; }

/* Header CTA */
.btn-book {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-white);
  background: var(--color-charcoal);
  border: 1px solid var(--color-charcoal);
  padding: 0.65rem 1.35rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-book::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-gold);
  transform: translateX(-100%);
  transition: transform var(--transition-fast);
  z-index: 0;
}

.btn-book span {
  position: relative;
  z-index: 1;
}

.btn-book:hover::before { transform: translateX(0); }
.btn-book:hover { border-color: var(--color-gold); }

/* ============================================
   MOBILE HEADER
   ============================================ */
.header-mobile-icons {
  display: none;
  align-items: center;
  gap: 1rem;
}

.header-mobile-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-charcoal);
  transition: all var(--transition-fast);
}

.header-mobile-icon:hover {
  background: var(--color-charcoal);
  color: var(--color-white);
}

/* ============================================
   BOTTOM MOBILE NAV
   ============================================ */
.mobile-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--color-border);
  padding: 0.35rem 0 calc(0.35rem + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -1px 0 rgba(20, 20, 20, 0.04);
}

.mobile-nav-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: 0.35rem 0.65rem;
  color: var(--color-gray-light);
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color var(--transition-fast);
  cursor: pointer;
  position: relative;
}

.mobile-nav-item--menu {
  border: none;
  background: transparent;
}

.mobile-nav-item.active { color: var(--color-gold); }
.mobile-nav-item:hover { color: var(--color-gold); }

.mobile-nav-item svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.35;
}

.mobile-nav-item.active svg {
  stroke: var(--color-gold);
}

.mobile-nav-indicator {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 2px;
  background: var(--color-gold);
  border-radius: 0 0 2px 2px;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.mobile-nav-item.active .mobile-nav-indicator { opacity: 1; }

.mobile-menu-panel {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(76px + env(safe-area-inset-bottom, 0px));
  z-index: 1001;
  background: rgba(255, 251, 245, 0.98);
  border: 1px solid rgba(193, 177, 151, 0.42);
  border-radius: 16px;
  box-shadow: 0 16px 38px rgba(44, 30, 17, 0.2);
  padding: 0.9rem;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.mobile-menu-panel.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-menu-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}

.mobile-menu-panel-header h4 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mobile-menu-close {
  border: 1px solid var(--color-border);
  background: #fff;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
}

.mobile-menu-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.mobile-menu-link {
  display: block;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 0.55rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-charcoal);
  background: #fff;
  text-align: center;
}

.mobile-menu-link.active {
  color: var(--color-white);
  background: var(--color-gold);
  border-color: var(--color-gold);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
  border: none;
  outline: none;
}

.btn-primary {
  background: var(--color-charcoal);
  color: var(--color-white);
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-sm);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.14);
  transform: translateX(-101%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary span { position: relative; z-index: 1; }
.btn-primary:hover::before { transform: translateX(0); }

.btn-outline {
  background: transparent;
  color: var(--color-charcoal);
  padding: 1rem 2.5rem;
  border: 1px solid var(--color-charcoal);
}

.btn-outline:hover {
  background: var(--color-charcoal);
  color: var(--color-white);
}

.btn-gold {
  background: var(--color-charcoal);
  color: var(--color-white);
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-gold:hover {
  background: var(--color-charcoal-light);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-white {
  background: var(--color-white);
  color: var(--color-charcoal);
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-sm);
}

.btn-white:hover {
  background: var(--color-charcoal);
  color: var(--color-white);
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-charcoal);
  padding-bottom: 1px;
  border-bottom: 1px solid var(--color-charcoal);
  transition: all var(--transition-fast);
}

.btn-arrow:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
  gap: 0.9rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 2.5s ease-in-out;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide.active { opacity: 1; }

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 10, 10, 0.65) 0%,
    rgba(10, 10, 10, 0.3) 60%,
    rgba(10, 10, 10, 0.1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  color: var(--color-white);
}

.hero-label {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeInUp 1s ease 0.3s forwards;
}

.hero-label::before {
  content: '';
  width: 28px;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.75rem);
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.05;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeInUp 1s ease 0.5s forwards;
}

.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 300;
  color: rgba(255,255,255,0.62);
  margin-bottom: 2rem;
  max-width: 22rem;
  line-height: 1.65;
  letter-spacing: -0.01em;
  opacity: 0;
  animation: fadeInUp 1s ease 0.7s forwards;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1s ease 0.9s forwards;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  opacity: 0;
  animation: fadeInUp 1s ease 1.1s forwards;
}

.hero-stat-item {
  text-align: left;
}

.hero-stat-number {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 400;
  color: var(--color-white);
  display: block;
  line-height: 1;
}

.hero-stat-label {
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  display: block;
  margin-top: 0.25rem;
}

/* Hero Form Card */
.hero-form-card {
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 213, 0, 0.5);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  animation: fadeInRight 1s ease 0.6s forwards;
}

.hero-form-top {
  position: relative;
  height: 140px;
  overflow: hidden;
  margin: -2rem -2rem 1.25rem;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: var(--color-charcoal);
}

.hero-form-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.hero-form-top-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(160deg, rgba(110,101,92,0.25) 0%, rgba(12,12,12,0.55) 100%); */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
}

.hero-form-top-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--color-white);
}

.hero-form-top-sub {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
}

.hero-form-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-charcoal);
  margin-bottom: 1.5rem;
}

/* Forms */
.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gray);
  margin-bottom: 0.35rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 0.9rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-charcoal);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--transition-fast);
  -webkit-appearance: none;
  appearance: none;
}

.form-control:focus {
  border-color: var(--color-gold);
  background: var(--color-white);
}

.form-control::placeholder {
  color: var(--color-gray-light);
  font-weight: 300;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6b6b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.btn-submit {
  width: 100%;
  padding: 0.85rem;
  background: var(--color-charcoal);
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
}

.btn-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-gold);
  transform: translateX(-101%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-submit span { position: relative; z-index: 1; }
.btn-submit:hover::before { transform: translateX(0); }

/* Hero Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-thin);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  animation: fadeInUp 1s ease 1.5s both;
}

.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}

.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-gold);
  animation: scrollDown 2s ease infinite;
}

/* Slider Dots */
.hero-dots {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.hero-dot.active {
  background: var(--color-gold);
  transform: scale(1.4);
}

/* ============================================
   ABOUT / INTRO SECTION
   ============================================ */
.intro-section {
  padding: 26px;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border-light);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.intro-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 260px 160px;
  gap: 1rem;
}

.intro-img {
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-md);
}

.intro-img:first-child {
  grid-row: span 2;
  grid-column: 1;
}

.intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.intro-img:hover img { transform: scale(1.05); }

.intro-img-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: var(--color-charcoal);
  color: var(--color-white);
  padding: 0.5rem 1rem;
  font-family: var(--font-thin);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.intro-text .section-label { margin-bottom: 0.75rem; }

.intro-text h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

.intro-text p {
  margin-bottom: 1.25rem;
}

.intro-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.intro-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.intro-highlight-icon {
  width: 36px;
  height: 36px;
  background: var(--color-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.intro-highlight-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-gold-dark);
}

.intro-highlight-text h5 {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-charcoal);
  margin-bottom: 0.2rem;
}

.intro-highlight-text p {
  font-size: 0.78rem;
  margin: 0;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
  background: var(--color-charcoal);
  /* padding: var(--spacing-lg) 0; */
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  padding: 2.5rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  position: relative;
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--color-gold);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: var(--font-thin);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ============================================
   SERVICES / WHAT WE OFFER
   ============================================ */
.services-section {
  padding: 26px;
  background: var(--color-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  /* background: var(--color-border-light); */
  margin-top: 4rem;
}

/* App-like service tiles on mobile */
@media (max-width: 768px) {
  .services-section {
    padding: 0;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    background: transparent;
    margin-top: 2.25rem;
  }

  .service-card {
    padding: 1.15rem 1.05rem;
    border-radius: 16px;
    border: 1px solid rgba(193, 177, 151, 0.35);
    box-shadow: 0 14px 28px rgba(75, 61, 52, 0.10);
    min-height: 200px;
  }

  .service-number {
    top: 1rem;
    right: 1rem;
    font-size: 1.65rem;
    color: rgba(193, 177, 151, 0.55);
  }

  .service-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 1rem;
    border-radius: 14px;
    background: rgba(245, 149, 13, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .service-icon svg {
    width: 26px;
    height: 26px;
    stroke: #047617;
  }

  .service-title {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
  }

  .service-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1rem;
  }

  .service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(75, 61, 52, 0.14);
  }
}

.service-card {
  background: var(--color-white);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-smooth);
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width var(--transition-smooth);
}

.service-card:hover::before { width: 100%; }

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  z-index: 1;
}

.service-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1.75rem;
  position: relative;
}

.service-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--color-gold);
  stroke-width: 1;
  fill: none;
}

.service-number {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 400;
  color: var(--color-gray-ultra-light);
  line-height: 1;
}

.service-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--color-charcoal);
  margin-bottom: 0.75rem;
}

.service-desc {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* ============================================
   PROJECTS SECTION
   ============================================ */
.projects-section {
  padding: var(--spacing-xl) 0;
  background: var(--color-white);
  overflow: hidden;
}

.projects-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.projects-slider-wrap {
  position: relative;
  overflow: hidden;
}

.projects-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 992px) {
  .projects-track {
    gap: 2.25rem;
  }
}

.project-card {
  flex: 0 0 calc(33.333% - 1rem);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  group: true;
}

/* Portfolio redesign: card shell + better gaps/hover */
.project-card {
  border-radius: 18px;
  border: 1px solid rgba(193, 177, 151, 0.22);
  padding: 0.6rem;
  background: rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(75, 61, 52, 0.14);
}

.project-card-img {
  height: 380px;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-md);
}

.project-card-img {
  border-radius: 14px;
}

.project-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .project-card-img img { transform: scale(1.08); }

.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-smooth);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}

.project-card:hover .project-card-overlay { opacity: 1; }

.project-view-btn {
  color: var(--color-white);
  font-family: var(--font-thin);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  padding-bottom: 2px;
}

.project-card-info {
  padding: 1.5rem 0;
}

.project-card-info {
  padding: 1rem 0 0.25rem;
}

.project-location {
  letter-spacing: 0.12em;
}

.project-name {
  font-size: 1.22rem;
}

.project-location {
  font-family: var(--font-thin);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 0.4rem;
  display: block;
}

.project-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--color-charcoal);
}

.projects-arrows {
  display: flex;
  gap: 0.5rem;
  margin-top: 2rem;
  justify-content: center;
}

.slider-arrow {
  width: 50px;
  height: 50px;
  border: 1px #ffffff;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.slider-arrow svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-charcoal);
  stroke-width: 1.5;
}

.slider-arrow:hover {
  background: var(--color-charcoal);
  border-color: var(--color-charcoal);
}

.slider-arrow:hover svg { stroke: var(--color-white); }

/* ============================================
   RECENT WORK SLIDER
   ============================================ */
.work-section {
  padding: var(--spacing-xl) 0;
  background: var(--color-charcoal);
  overflow: hidden;
}

.work-section .section-label { color: var(--color-gold); }
.work-section .section-title { color: var(--color-white); }

.work-slider-wrap {
  position: relative;
  overflow: hidden;
  margin-top: 3rem;
}

.work-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.work-slide {
  flex: 0 0 80%;
  padding: 0 0.75rem;
  position: relative;
}

.work-slide-inner {
  position: relative;
  overflow: hidden;
}

.work-slide-img {
  height: 500px;
  overflow: hidden;
}

.work-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.work-slide:hover .work-slide-img img { transform: scale(1.04); }

.work-slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, transparent 100%);
}

.work-slide-type {
  font-family: var(--font-thin);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: block;
  margin-bottom: 0.4rem;
}

.work-slide-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--color-white);
}

.work-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
}

.work-progress {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 0 1.5rem;
  position: relative;
}

.work-progress-fill {
  height: 100%;
  background: var(--color-gold);
  transition: width var(--transition-smooth);
}

/* ============================================
   INSTAGRAM REELS STRIP
   ============================================ */
.reels-section {
  padding: var(--spacing-xl) 0 calc(var(--spacing-lg) + 0.5rem);
  background: linear-gradient(180deg, #0f0f0f 0%, #141414 45%, #101010 100%);
  position: relative;
  overflow: hidden;
}

.reels-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 55% at 50% -10%, rgba(110, 101, 92, 0.18) 0%, transparent 55%);
  pointer-events: none;
}

.reels-header {
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
}

.reels-header-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.reels-section .reels-title {
  color: var(--color-white);
  margin-bottom: 0.65rem;
}

.reels-section .reels-lead {
  color: rgba(255, 255, 255, 0.48);
  max-width: 28rem;
  margin: 0;
}

.reels-section .reels-header .section-label {
  color: rgba(255, 255, 255, 0.4);
}

.reels-ig-btn {
  flex-shrink: 0;
  border-color: rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.92);
  padding: 0.65rem 1.25rem;
  font-size: 0.625rem;
}

.reels-ig-btn:hover {
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-charcoal);
  border-color: transparent;
}

.reels-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.35rem;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 0.75rem;
}

.reels-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.reels-arrow:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
}

.reels-arrow:active {
  transform: scale(0.96);
}

.reels-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  mask-image: linear-gradient(90deg, transparent 0%, #000 2.5%, #000 97.5%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 2.5%, #000 97.5%, transparent 100%);
  padding: 0.75rem 0 1.25rem;
}

.reels-viewport::-webkit-scrollbar {
  display: none;
}

.reels-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  padding: 0 0.5rem;
  margin: 0 auto;
}

.reel-card {
  flex: 0 0 auto;
  width: min(260px, 72vw);
  scroll-snap-align: center;
  scroll-snap-stop: always;
}

@media (min-width: 768px) {
  .reel-card {
    width: min(280px, 24vw);
  }
}

@media (min-width: 1200px) {
  .reel-card {
    width: 300px;
  }
}

.reel-frame {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #080808;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.15),
    0 20px 50px rgba(0, 0, 0, 0.45);
  transition: transform 0.45s cubic-bezier(0.34, 1.1, 0.64, 1), box-shadow 0.45s ease;
}

.reel-card:hover .reel-frame {
  transform: translateY(-3px);
  box-shadow:
    0 8px 12px rgba(0, 0, 0, 0.2),
    0 28px 60px rgba(0, 0, 0, 0.5);
}

.reel-frame .reel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reel-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, transparent 42%, transparent 58%, rgba(255, 255, 255, 0.03) 100%);
  pointer-events: none;
}

.reel-audio {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast);
  z-index: 2;
}

.reel-audio:hover {
  background: rgba(0, 0, 0, 0.6);
  transform: scale(1.05);
}

.reel-audio__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.reel-caption {
  margin-top: 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  text-align: center;
}

.reels-progress-wrap {
  position: relative;
  z-index: 1;
  margin-top: 0.25rem;
}

.reels-progress {
  height: 2px;
  max-width: 160px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.reels-progress-bar {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.65));
  border-radius: 2px;
  transition: width 0.25s ease-out;
}

@media (max-width: 991px) {
  .reels-arrow {
    display: none;
  }

  .reels-shell {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .reels-viewport {
    mask-image: none;
    -webkit-mask-image: none;
    padding-left: max(0.75rem, env(safe-area-inset-left));
    padding-right: max(0.75rem, env(safe-area-inset-right));
  }

  .reels-track {
    padding: 0 1rem;
  }
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-section {
  padding: var(--spacing-xl) 0;
  background: var(--color-bg);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.why-item {
  text-align: center;
  padding: 2rem 1rem;
  transition: all var(--transition-fast);
}

.why-item:hover { transform: translateY(-3px); }

.why-item {
  border-radius: 18px;
  border: 1px solid rgba(193, 177, 151, 0.32);
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 14px 30px rgba(75, 61, 52, 0.08);
  opacity: 0;
  transform: translateY(22px) scale(0.985);
}

.why-item.why-visible {
  animation: whyReveal 0.6s ease forwards;
}

.why-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.25rem;
  position: relative;
}

.why-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--color-charcoal);
  stroke-width: 1;
  fill: none;
}

.why-title {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--color-charcoal);
  letter-spacing: 0.02em;
  line-height: 1.4;
}

@keyframes whyReveal {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ============================================
   BLOG SECTION
   ============================================ */
.blog-section {
  padding: var(--spacing-xl) 0;
  background: var(--color-white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.blog-card {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.blog-card-img {
  height: 280px;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-card-img img { transform: scale(1.06); }

.blog-card-body {
  background: var(--color-white);
  padding: 1.75rem;
  margin: -2rem 1rem 0;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.blog-card:hover .blog-card-body {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.blog-cat {
  font-family: var(--font-thin);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #000000;
  display: block;
  margin-bottom: 0.75rem;
}

.blog-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--color-charcoal);
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.blog-date {
  font-family: var(--font-thin);
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--color-gray-light);
}

/* ============================================
   TRUSTED PARTNERS
   ============================================ */
.partners-section {
  padding: var(--spacing-lg) 0;
  background: var(--color-bg);
  overflow: hidden;
}

.partners-track-wrap {
  overflow: hidden;
  margin-top: 3rem;
  position: relative;
}

.partners-track-wrap::before,
.partners-track-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
}

.partners-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--color-bg), transparent);
}

.partners-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--color-bg), transparent);
}

.partners-track {
  display: flex;
  gap: 4rem;
  animation: scrollPartners 20s linear infinite;
  width: max-content;
}

.partners-track:hover { animation-play-state: paused; }

.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  height: 60px;
  filter: grayscale(100%) opacity(0.4);
  transition: all var(--transition-fast);
}

.partner-item:hover { filter: grayscale(0%) opacity(1); }

.partner-item img {
  max-height: 45px;
  max-width: 120px;
  object-fit: contain;
}

.partner-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-gray);
  letter-spacing: 0.08em;
  white-space: nowrap;
}

/* ============================================
   FAQ SECTION
   ============================================ */


.faq-list {
  max-width: 800px;
  margin: 4rem auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--color-border-light);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  cursor: pointer;
  text-align: left;
  transition: all var(--transition-fast);
}

.faq-q-text {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--color-charcoal);
  transition: color var(--transition-fast);
}

.faq-question:hover .faq-q-text { color: var(--color-gold); }

.faq-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border: 1px solid var(--color-border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--color-gray);
  stroke-width: 1.5;
  transition: all var(--transition-fast);
}

.faq-item.open .faq-icon {
  background: var(--color-charcoal);
  border-color: var(--color-charcoal);
  transform: rotate(45deg);
}

.faq-item.open .faq-icon svg { stroke: var(--color-white); }
.faq-item.open .faq-q-text { color: var(--color-gold); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding: 0 0 1.5rem;
}

.faq-answer-inner p {
  font-size: 0.875rem;
  line-height: 1.9;
}

/* ============================================
   CTA STRIP (homepage)
   ============================================ */
.cta-section {
  background: var(--color-charcoal);
  padding: clamp(2.75rem, 6vw, 4.25rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 255, 255, 0.07) 0%, transparent 55%);
  pointer-events: none;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section .section-label {
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.75rem;
}

.cta-section h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 0.75rem;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

.cta-section h2 em {
  font-style: italic;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.48);
  max-width: 26rem;
  margin: 0 auto 1.75rem;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.65;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  padding: var(--spacing-xl) 0;
  background: var(--color-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--color-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-gold-dark);
  stroke-width: 1.5;
}

.contact-detail h5 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gray-light);
  margin-bottom: 0.25rem;
}

.contact-detail p {
  font-size: 0.9rem;
  color: var(--color-charcoal);
  margin: 0;
}

.contact-detail a {
  font-size: 0.9rem;
  color: var(--color-charcoal);
  transition: color var(--transition-fast);
}

.contact-detail a:hover { color: var(--color-gold); }

.map-container {
  height: 250px;
  background: var(--color-gray-ultra-light);
  margin-top: 2rem;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-form-card {
  background: var(--color-white);
  padding: 3rem;
  box-shadow: var(--shadow-sm);
}

.contact-form-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--color-charcoal);
  margin-bottom: 0.5rem;
}

.contact-form-subtitle {
  font-size: 0.875rem;
  color: var(--color-gray);
  margin-bottom: 2rem;
}

/* ============================================
   POPUP / MODAL
   ============================================ */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}

.popup-overlay.open {
  opacity: 1;
  visibility: visible;
}

.popup-bg {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}

.popup-card {
  position: relative;
  background: var(--color-white);
  max-width: 480px;
  width: 100%;
  overflow: hidden;
  transform: translateY(30px) scale(0.97);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: var(--shadow-lg);
}

.popup-overlay.open .popup-card {
  transform: translateY(0) scale(1);
}

.popup-banner {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: var(--color-charcoal);
}

.popup-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

@media (max-width: 768px) {
  .popup-card {
    max-width: 520px;
    border-radius: 16px;
  }

  .popup-banner {
    height: 160px;
  }

  .popup-banner img {
    object-fit: contain;
    object-position: center;
    background: #1f1712;
    opacity: 0.95;
  }

  .popup-banner-overlay {
    background: linear-gradient(160deg, rgba(75,61,52,0.25) 0%, rgba(10,10,10,0.55) 100%);
    align-items: flex-start;
    justify-content: flex-end;
  }
}

.popup-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(110,101,92,0.35) 0%, rgba(10,10,10,0.65) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
}

.popup-banner-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-white);
  font-weight: 400;
}

.popup-banner-sub {
  font-family: var(--font-thin);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0.4rem;
}

.popup-body {
  padding: 2rem;
}

.popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all var(--transition-fast);
}

.popup-close:hover { background: var(--color-white); }

.popup-close svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-white);
  stroke-width: 2;
}

.popup-close:hover svg { stroke: var(--color-charcoal); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-charcoal);
  color: rgba(255,255,255,0.6);
}

.footer-top {
  padding: 5rem 0 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand .logo-name { color: var(--color-white); }

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin: 1.25rem 0 1.75rem;
  line-height: 1.9;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.footer-social-link:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
}

.footer-social-link svg {
  width: 16px;
  height: 16px;
  fill: rgba(255,255,255,0.6);
  transition: fill var(--transition-fast);
}

.footer-social-link:hover svg { fill: var(--color-white); }

.footer-col h5 {
  font-family: var(--font-thin);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-family: var(--font-thin);
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-link:hover { color: var(--color-gold); }

.footer-link::before {
  content: '';
  width: 12px;
  height: 1px;
  background: var(--color-gold);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.footer-link:hover::before { opacity: 1; }

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}

.footer-contact-item svg {
  width: 15px;
  height: 15px;
  stroke: var(--color-gold);
  stroke-width: 1.5;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.footer-contact-item a,
.footer-contact-item span {
  font-family: var(--font-thin);
  font-size: 0.84rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition-fast);
  line-height: 1.6;
}

.footer-contact-item a:hover { color: var(--color-gold); }

.footer-bottom {
  padding: 1.75rem 0;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy {
  font-family: var(--font-thin);
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
}

.footer-copy a {
  color: var(--color-gold);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-family: var(--font-thin);
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover { color: var(--color-gold); }

/* ============================================
   INTERIOR SECTION DIVIDER
   ============================================ */
.section-divider {
  width: 60px;
  height: 1px;
  background: var(--color-gold);
  margin: 1.5rem auto;
}

.section-divider.left { margin-left: 0; }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  height: 50vh;
  min-height: 400px;
  background: var(--color-charcoal);
  display: flex;
  align-items: flex-end;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero-breadcrumb {
  font-family: var(--font-thin);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.page-hero-breadcrumb a { color: var(--color-gold); }
.page-hero-breadcrumb span { color: rgba(255,255,255,0.3); }

.page-hero h1 {
  color: var(--color-white);
  font-size: clamp(2.5rem, 5vw, 4rem);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-gold { color: var(--color-gold); }
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }

/* Success/Error Messages */
.form-message {
  padding: 0.875rem 1rem;
  font-family: var(--font-thin);
  font-size: 0.82rem;
  font-weight: 300;
  margin-top: 1rem;
  display: none;
}

.form-message.success {
  background: rgba(46, 160, 67, 0.08);
  border: 1px solid rgba(46, 160, 67, 0.2);
  color: #1a7a30;
  display: block;
}

.form-message.error {
  background: rgba(218, 30, 40, 0.08);
  border: 1px solid rgba(218, 30, 40, 0.2);
  color: #c0392b;
  display: block;
}

/* ============================================
   ANIMATIONS (KEYFRAMES)
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scrollDown {
  0% { top: -100%; }
  100% { top: 100%; }
}

@keyframes scrollPartners {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes ripple {
  to { transform: scale(4); opacity: 0; }
}

@keyframes counterUp {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Loader */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--color-charcoal);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-inner {
  width: min(420px, 86vw);
  display: grid;
  gap: 1.15rem;
  justify-items: center;
}

.loader-logo {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 400;
  color: var(--color-white);
  position: relative;
}

.loader-logo .loader-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(10px);
  animation: loaderLetter 0.42s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.loader-logo .loader-letter:nth-child(1) { animation-delay: 0.05s; }
.loader-logo .loader-letter:nth-child(2) { animation-delay: 0.11s; }
.loader-logo .loader-letter:nth-child(3) { animation-delay: 0.17s; }
.loader-logo .loader-letter:nth-child(4) { animation-delay: 0.23s; }
.loader-logo .loader-letter:nth-child(5) { animation-delay: 0.29s; }

.loader-progress {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
  border: 1px solid rgba(193, 177, 151, 0.24);
}

.loader-progress-bar {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, #047617 0%, #ffd185 100%);
  box-shadow: 0 8px 22px rgba(245, 149, 13, 0.22);
  transition: width 0.18s ease-out;
}

@keyframes loaderLetter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
  .projects-track .project-card { flex: 0 0 calc(50% - 0.75rem); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: span 3; }
}

@media (max-width: 992px) {
  :root {
    --spacing-xl: 4rem;
    --spacing-lg: 3rem;
  }

  .top-bar { display: none; }
  .nav { display: none; }
  .btn-book { display: inline-flex; }
  .header-mobile-icons { display: flex; }
  .mobile-nav { display: block; }

  .hero .container { grid-template-columns: 1fr; }
  .hero-form-card { display: none; }

  .hero-mobile-cta,
  .hero-mobile-consult {
    display: flex !important;
    margin-top: 2rem;
  }

  .intro-grid { grid-template-columns: 1fr; gap: 3rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-item:nth-child(2n) { border-right: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }

  body { padding-bottom: 70px; }
}

@media (max-width: 768px) {
  .hero-title { font-size: clamp(2rem, 8vw, 3.5rem); }

  .projects-track .project-card { flex: 0 0 calc(100% - 2rem); }
  .work-slide { flex: 0 0 100%; }
  .blog-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }

  .intro-image-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: 350px;
  }

  .intro-img:first-child { grid-row: auto; }
  .intro-img:not(:first-child) { display: none; }

  .contact-form-card { padding: 1.75rem; }

  .footer-top { padding: 3rem 0 2rem; }
}

/* ============================================
   MOBILE APP-LIKE HEADER + HERO POLISH
   ============================================ */
@media (max-width: 992px) {
  .header {
    height: 72px;
  }

  .header .container {
    gap: 0.85rem;
  }

  .logo img {
    height: 44px !important;
  }

  .btn-book {
    padding: 0.65rem 1rem;
    border-radius: 999px;
    font-size: 0.72rem;
    background: linear-gradient(180deg, rgba(245,149,13,0.95), rgba(245,149,13,0.82));
    border-color: rgba(245,149,13,0.75);
    box-shadow: 0 10px 24px rgba(245,149,13,0.22);
    color: #1f1712;
  }

  .btn-book::before {
    background: rgba(255, 255, 255, 0.22);
  }

  .header-mobile-icon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(193, 177, 151, 0.4);
  }

  .hero-text {
    padding: 1.25rem 1.1rem;
    border-radius: 18px;
    background: rgba(47, 38, 33, 0.28);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border: 1px solid rgba(193, 177, 151, 0.22);
    box-shadow: 0 18px 38px rgba(26, 20, 16, 0.28);
  }

  .hero-subtitle {
    max-width: none;
    color: rgba(255, 248, 238, 0.82);
  }

  .hero-cta {
    gap: 0.85rem;
  }

  .btn-primary {
    border-radius: 14px;
    padding: 0.95rem 1.15rem;
    width: 100%;
    justify-content: center;
  }

  .btn-arrow {
    width: 100%;
    justify-content: center;
    border-bottom: none;
    padding: 0.9rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 14px;
    color: rgba(255, 255, 255, 0.92);
  }

  .btn-arrow:hover {
    border-color: rgba(245, 149, 13, 0.72);
    color: #fff;
  }

  .hero-stats {
    flex-direction: row;
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .hero-stat-item {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(193, 177, 151, 0.22);
    border-radius: 14px;
    padding: 0.85rem 0.9rem;
    min-width: calc(50% - 0.6rem);
  }
}

@media (max-width: 480px) {
  .hero-stat-item {
    min-width: 100%;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  h2 { font-size: 1.8rem; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   2026 HOMEPAGE REDESIGN OVERRIDES
   ============================================ */
:root {
  --color-bg: #f8f4ec;
  --color-charcoal: #4b3d34;
  --color-charcoal-light: #5e4d43;
  --color-gold: #047617;
  --color-gold-light: rgba(245, 149, 13, 0.16);
  --color-gold-dark: #c97a0a;
  --color-gray: #5d5149;
  --color-gray-light: #83746a;
  --color-gray-ultra-light: #eee4d4;
  --color-border: rgba(75, 61, 52, 0.16);
  --color-border-light: rgba(75, 61, 52, 0.1);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Manrope', system-ui, -apple-system, sans-serif;
  --font-thin: 'Manrope', system-ui, -apple-system, sans-serif;
}

html {
  font-size: 16px;
}

body {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.72;
  color: var(--color-charcoal);
}

p,
.section-subtitle,
.hero-subtitle,
.service-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-gray);
}

.hero-subtitle {
  color: #e7d5bb;
}



.section-label {
  font-size: 0.78rem;
  letter-spacing: 0.19em;
}

.nav-link {
  font-size: 0.84rem;
  letter-spacing: 0.1em;
}

.btn-book,
.btn,
.btn-arrow,
.btn-submit {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.top-bar {
  font-size: 0.78rem;
  background: #000000;
}

.header {
  background: rgba(255, 251, 245, 0.95);
  border-bottom: 1px solid rgba(193, 177, 151, 0.35);
}

.header.scrolled {
  background: rgba(255, 251, 245, 0.98);
}

.hero-slide::after {
  background: linear-gradient(
    to right,
    rgba(47, 38, 33, 0.82) 0%,
    rgba(47, 38, 33, 0.45) 55%,
    rgba(47, 38, 33, 0.2) 100%
  );
}

.hero-title {
  font-size: clamp(2.7rem, 5.6vw, 5rem);
}

.hero-stat-number {
  font-size: 2rem;
}

.hero-stat-label {
  font-size: 0.76rem;
  letter-spacing: 0.1em;
}

.hero-form-card {
  border: 1px solid rgba(243, 194, 0, 0.45);
  box-shadow: 0 16px 45px rgba(75, 61, 52, 0.15);
  transform-origin: top right;
  animation: formCardReveal 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) 0.25s both;
}

.services-section,
.why-section,
.contact-section {
  background: linear-gradient(180deg, #f8f4ec 0%, #f7f1e8 100%);
}

.service-card,
.blog-card-body,
.contact-form-card {
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(75, 61, 52, 0.08);
}

.hero-form-social {
  margin-top: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
}

.hero-form-social-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 149, 13, 0.08);
  border: 1px solid rgba(193, 177, 151, 0.4);
  color: var(--color-charcoal);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.hero-form-social-link svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.hero-form-social-link:hover {
  transform: translateY(-2px);
  background: var(--color-gold);
  color: #fff;
}

.services-section .section-title {
  position: relative;
}



.service-card {
  opacity: 0;
  transform: translateY(26px) scale(0.985);
}

.service-card.service-card-visible {
  animation: serviceCardReveal 0.6s ease forwards;
}

.service-card:nth-child(2).service-card-visible { animation-delay: 0.05s; }
.service-card:nth-child(3).service-card-visible { animation-delay: 0.1s; }
.service-card:nth-child(4).service-card-visible { animation-delay: 0.15s; }
.service-card:nth-child(5).service-card-visible { animation-delay: 0.2s; }
.service-card:nth-child(6).service-card-visible { animation-delay: 0.25s; }

.service-icon {
  animation: floatIcon 3.4s ease-in-out infinite;
}

.service-card:nth-child(even) .service-icon {
  animation-delay: 0.45s;
}
.blog-card-body{
border: solid 1px #F5950C;
}

.project-card-img,
.intro-img,
.map-container {
  border-radius: 16px;
}

.work-section {
  background:
    radial-gradient(circle at 18% 10%, rgba(245, 149, 13, 0.18), transparent 45%),
    radial-gradient(circle at 88% 88%, rgba(193, 177, 151, 0.24), transparent 50%),
    linear-gradient(145deg, #2c241f 0%, #4b3d34 55%, #5a473b 100%);
  border-top: 1px solid rgba(193, 177, 151, 0.35);
  border-bottom: 1px solid rgba(193, 177, 151, 0.35);
}

.work-section .section-label {
  color: #f3b95f;
}

.work-section .section-title {
  color: #fffdf8;
}

.work-section-subtitle {
  margin-top: 0.75rem;
  max-width: 720px;
  color: rgba(255, 250, 240, 0.86);
  font-size: 1.03rem;
}

.work-slider-wrap {
  margin-top: 2.5rem;
}

.work-slide {
  flex: 0 0 62%;
  padding: 0 0.85rem;
}

.work-slide-inner {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(193, 177, 151, 0.28);
  box-shadow: 0 22px 45px rgba(26, 20, 16, 0.35);
}

.work-slide-img {
  height: 295px;
}

.work-slide-caption {
  padding: 2.2rem;
  background: linear-gradient(to top, rgba(24, 18, 14, 0.95) 0%, rgba(24, 18, 14, 0.12) 100%);
}

.work-slide-type {
  color: #f7be67;
  font-size: 0.8rem;
}

.work-slide-title {
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  color: #fffaf0;
}

.work-progress {
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.work-progress-fill {
  border-radius: 999px;
  background: linear-gradient(90deg, #047617 0%, #ffd185 100%);
}

.work-nav .slider-arrow {
  border: 1px solid rgba(255, 243, 224, 0.45);
  border-radius: 50%;
  width: 54px;
  height: 54px;
  background: rgba(255, 255, 255, 0.05);
}

.work-nav .slider-arrow svg {
  stroke: #fff8ee;
}

.work-nav .slider-arrow:hover {
  background: rgba(245, 149, 13, 0.35);
  border-color: rgba(245, 149, 13, 0.82);
}

.footer {
  background: #ED8821;
}

@media (max-width: 992px) {
  html {
    font-size: 15px;
  }

  .hero-title {
    font-size: clamp(2.3rem, 9vw, 3.6rem);
  }

  .nav-link,
  .btn-book {
    letter-spacing: 0.07em;
  }

  .work-slide {
    flex: 0 0 82%;
  }

  .work-slide-img {
    height: 420px;
  }

  .mobile-nav {
    background: rgba(255, 249, 238, 0.96);
    border-top: 1px solid rgba(193, 177, 151, 0.4);
  }

  .mobile-nav-item {
    font-size: 0.67rem;
  }

  .hero-form-social {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  body {
    line-height: 1.68;
  }

  p,
  .section-subtitle,
  .hero-subtitle,
  .service-desc {
    font-size: 1.03rem;
  }

  .section-label {
    font-size: 0.76rem;
  }

  .work-section {
    padding-top: 4.2rem;
  }

  .work-section-subtitle {
    font-size: 1rem;
  }

  .work-slide {
    flex: 0 0 94%;
    padding: 0 0.35rem;
  }

  .work-slide-inner {
    border-radius: 16px;
  }

  .work-slide-img {
    height: 360px;
  }

  .work-slide-caption {
    padding: 1.5rem;
  }

  .work-slide-title {
    font-size: 1.35rem;
  }
}

@keyframes formCardReveal {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes serviceCardReveal {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.985);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes titleGlow {
  0%, 100% {
    opacity: 0.8;
    transform: scaleX(0.9);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
