@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&family=Jost:wght@300;400;500&display=swap');

:root {
  --cream: #FAF7F2;
  --ivory: #F4EFE6;
  --sand: #E8DDD0;
  --gold: #C9A96E;
  --gold-light: #E2C896;
  --gold-dark: #A67C4E;
  --charcoal: #1E1E1E;
  --charcoal-mid: #3A3732;
  --warm-grey: #9B8F82;
  --white: #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', sans-serif;

  --transition: 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.25s ease;
  --shadow-sm: 0 4px 20px rgba(30, 22, 10, 0.06);
  --shadow-md: 0 12px 48px rgba(30, 22, 10, 0.10);
  --shadow-lg: 0 24px 80px rgba(30, 22, 10, 0.14);
  --shadow-gold: 0 8px 40px rgba(201, 169, 110, 0.25);
  --radius: 16px;
  --radius-lg: 24px;
}

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


body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
  cursor: pointer;
}

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

ul {
  list-style: none;
}

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

button {
  cursor: pointer;
}

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--ivory);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 4px;
}

/* ---------- PRELOADER ---------- */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}

.preloader-logo {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--cream);
  letter-spacing: 0.12em;
  opacity: 0;
}

.preloader-bar {
  width: 200px;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.preloader-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: barSlide 1.8s ease infinite;
}

@keyframes barSlide {
  to {
    left: 100%;
  }
}

/* ---------- NAVBAR ---------- */
#navbar {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 13px 4%;
  background: black;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}

#navbar.scrolled {
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 16px 6%;
  box-shadow: var(--shadow-sm);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.06em;
  line-height: 1;
}

.nav-logo span {
  color: var(--gold);
}

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

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c9a96e;
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--charcoal);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: #c9a96e !important;
  color: var(--cream) !important;
  padding: 10px 24px !important;
  border-radius: 50px;
  letter-spacing: 0.12em !important;
  transition: background var(--transition-fast) !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
}

.nav-cta::after {
  display: none !important;
}

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

.hamburger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--charcoal);
  transition: var(--transition);
  transform-origin: left;
}

.hero {
  position: relative;
  height: 90vh;
  overflow: hidden;
  margin-top: 0;
}

.slides-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0s;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide.entering {
  animation: slideEnter 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.slide.leaving {
  animation: slideLeave 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  z-index: 3;
}

@keyframes slideEnter {
  0% {
    opacity: 0;
    transform: scale(1.06);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideLeave {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(0.96);
  }
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform-origin: center;
}

.slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.3) 55%, rgba(0, 0, 0, 0.15) 100%);
}

/* Slide backgrounds using CSS art */
.slide-bg.s1 {
  background-image: url(../image/AP274-musgrove-1920x800.png);
}

.slide-bg.s2 {
  background-image: url(../image/elg-sawrnamani-banner.webp);
}

.slide-bg.s3 {
  background-image: url(../image/AP274-musgrove-1920x800.png);
}

.slide-bg.s4 {
  background-image: url(../image/Bulgari-2.jpeg);
}

/* SVG room illustrations on slide bgs */
.slide-room-art {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 8%;
  opacity: 0.12;
  pointer-events: none;
}

.slide-room-art svg {
  width: 55%;
  max-width: 700px;
}

/* Slide Content */
.slide-content {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  z-index: 10;
  max-width: 580px;
}

.slide.active .slide-content .content-card {
  animation: cardReveal 0.9s 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes cardReveal {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.content-card {
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(6px);
  padding: 20px;
  border-left: 2px solid var(--gold);
  position: relative;
}

.slide-tag {
  font-size: 0.65rem;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.slide-tag::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.slide-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 2.0rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 6px;
}

.slide-divider {
  width: 36px;
  height: 1.5px;
  background: var(--gold);
  margin: 20px 0;
}

.slide-desc {
  font-size: 0.82rem;
  line-height: 1.75;
  color: rgba(245, 240, 234, 0.7);
  font-weight: 300;
  margin-bottom: 0px;
}

.slide-sketch {
  width: 180px;
  opacity: 0.75;
}

.slide-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  margin-top: 6px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(201, 169, 110, 0.3);
  transition: all 0.3s;
}

.slide-cta:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
  gap: 18px;
}

.slide-cta svg {
  transition: transform 0.3s;
}

.slide-cta:hover svg {
  transform: translateX(4px);
}

/* Slider Controls */
.slider-dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 12px;
}

.dot {
  width: 28px;
  height: 3px;
  background: rgba(245, 240, 234, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.dot.active {
  background: rgba(245, 240, 234, 0.2);
  width: 52px;
}

.dot.active::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--gold);
  animation: dotFill 5s linear forwards;
}

@keyframes dotFill {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

.slider-arrows {
  position: absolute;
  bottom: 28px;
  right: 50px;
  z-index: 20;
  display: flex;
  gap: 12px;
}

.arrow-btn {
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(201, 169, 110, 0.3);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.arrow-btn:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* Progress bar */
.slide-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--gold);
  z-index: 30;
  animation: progress 5s linear forwards;
}

@keyframes progress {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

/* Slide counter */
.slide-counter {
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: var(--gold);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 50px;
  border: none;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 56px rgba(201, 169, 110, 0.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  border: 1px solid rgba(250, 247, 242, 0.45);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 50px;
  background: transparent;
  transition: border-color var(--transition-fast), color var(--transition-fast), background var(--transition-fast);
}

.btn-outline:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  background: rgba(201, 169, 110, 0.06);
}

/* Floating scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 44px;
  left: 8%;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  z-index: 2;
}

.hero-scroll span {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.55);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% {
    transform: scaleY(1);
    opacity: 1;
  }

  50% {
    transform: scaleY(0.6);
    opacity: 0.4;
  }
}

/* Hero 3D floating cards */
.hero-3d-cards {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 380px;
  height: 460px;
  z-index: 2;
  perspective: 1000px;
}

.float-card {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition);
}

.float-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.float-card-1 {
  width: 240px;
  height: 300px;
  top: 0;
  right: 0;
  transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
  animation: float1 6s ease-in-out infinite;
}

.float-card-2 {
  width: 185px;
  height: 220px;
  bottom: 0;
  left: 0;
  transform: perspective(1000px) rotateY(-6deg) rotateX(3deg);
  animation: float2 7s ease-in-out infinite;
}

.float-card-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 10px 14px;
}

.float-card-badge p {
  font-size: 0.7rem;
  color: var(--warm-grey);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.float-card-badge strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--charcoal);
}

@keyframes float1 {
  0%, 100% {
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg) translateY(0);
  }

  50% {
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg) translateY(-18px);
  }
}

@keyframes float2 {
  0%, 100% {
    transform: perspective(1000px) rotateY(-6deg) rotateX(3deg) translateY(0);
  }

  50% {
    transform: perspective(1000px) rotateY(-6deg) rotateX(3deg) translateY(14px);
  }
}

/* ---------- STATS BAR ---------- */
.stats-bar {
  background: #c9a96e;
  padding: 24px 4%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.stat-item {
  text-align: center;
  padding: 16px 20px;
  border: 1px solid gainsboro;
  background: black;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.5);
}

/* ---------- SECTION SHARED ---------- */
section {
  padding: 110px 8%;
}

.section-tag {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.section-tag::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.12;
  color: white;
  margin-bottom: 20px;
}

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

.section-body {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--gold);
  max-width: 540px;
}

/* ---------- ABOUT ---------- */
#about {
  background: black;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
  height: 560px;
}

.about-img-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 82%;
  height: 90%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
}

.about-img-main:hover img {
  transform: scale(1.04);
}

.about-img-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48%;
  height: 52%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--cream);
}

.about-img-accent img {
  height: 100%;
  object-fit: cover;
}

.about-award {
  position: absolute;
  top: 40px;
  left: 0;
  background: var(--gold);
  color: var(--charcoal);
  padding: 18px 22px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-gold);
  z-index: 2;
}

.about-award strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}

.about-award span {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-top: 4px;
}

.about-text {
  padding-left: 20px;
}

.about-checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 36px 0 40px;
}

.about-check {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9rem;
  color: white;
}

.check-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgb(201 169 110);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  font-size: 0.85rem;
}

/* ---------- SERVICES ---------- */
#services {
  background: url(../image/parallax-img-new-1-1.jpg.bv_resized_desktop.jpg.bv.webp);

}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 0px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 20px 20px;
  border: 1px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 800px;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 0;
}

.service-card:hover {
  transform: translateY(-10px) rotateX(4deg);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.service-card:hover::before {
  opacity: 0.04;
}

.service-card img {
  border-radius: 10px;
}

.service-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgb(0 0 0);
  display: flex;
  top: 6%;
  right: 8%;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: absolute;
  z-index: 999999999;
  transition: background var(--transition), transform var(--transition);
}

.service-card:hover .service-icon-wrap {
  background: var(--gold);
  transform: scale(1.08);
}

.service-icon-wrap svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  transition: stroke var(--transition);
}

.service-card:hover .service-icon-wrap svg {
  stroke: var(--charcoal);
}

.service-num {
  position: absolute;
  top: 28px;
  right: 28px;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(201, 169, 110, 0.1);
  line-height: 1;
  z-index: 0;
  transition: color var(--transition);
}

.service-card:hover .service-num {
  color: rgba(201, 169, 110, 0.2);
}

.service-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 6px;
  margin-top: 12px;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.service-desc {
  font-size: 0.84rem;
  line-height: 1.85;
  color: var(--warm-grey);
  position: relative;
  z-index: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  position: relative;
  z-index: 1;
  transition: gap var(--transition-fast);
}

.service-link:hover {
  gap: 10px;
}

.service-link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* ---------- PORTFOLIO ---------- */
#portfolio {
  background: black;
}

.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
}

.portfolio-filters {
  display: flex;
  gap: 8px;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid var(--sand);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--warm-grey);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--cream);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 20px;
}

.port-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.port-item:nth-child(1) {
  grid-column: span 7;
  grid-row: span 2;
}

.port-item:nth-child(2) {
  grid-column: span 5;
}

.port-item:nth-child(3) {
  grid-column: span 5;
}

.port-item:nth-child(4) {
  grid-column: span 4;
}

.port-item:nth-child(5) {
  grid-column: span 4;
}

.port-item:nth-child(6) {
  grid-column: span 4;
}

.port-img-wrap {
  height: 100%;
  min-height: 260px;
  overflow: hidden;
}

.port-item:first-child .port-img-wrap {
  min-height: 540px;
}

.port-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.port-item:hover .port-img-wrap img {
  transform: scale(1.06);
}

.port-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 22, 10, 0.82) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 28px;
}

.port-item:hover .port-overlay {
  opacity: 1;
}

.port-info h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 4px;
}

.port-info p {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.port-plus {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity var(--transition), transform var(--transition);
}

.port-plus svg {
  width: 18px;
  height: 18px;
  stroke: var(--charcoal);
  fill: none;
  stroke-width: 2;
}

.port-item:hover .port-plus {
  opacity: 1;
  transform: scale(1);
}

/* ---------- PROCESS ---------- */
#process {
  background: var(--charcoal);
  padding: 60px 8%;
  position: relative;
}

#process::before {
  position: absolute;
  background-color: black;
  width: 100%;
  height: 100%;
  z-index: 999;
}

#process .section-tag {
  color: var(--gold-light);
}

#process .section-tag::before {
  background: var(--gold-light);
}

#process .section-title {
  color: var(--cream);
}

#process .section-body {
  color: rgba(250, 247, 242, 0.55);
  max-width: 440px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 72px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.4) 20%, rgba(201, 169, 110, 0.4) 80%, transparent);
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
}

.step-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--gold-light);
  margin-bottom: 28px;
  background: var(--charcoal);
  position: relative;
  z-index: 1;
  transition: background var(--transition), border-color var(--transition);
}

.step:hover .step-circle {
  background: rgba(201, 169, 110, 0.12);
  border-color: var(--gold);
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.8rem;
  line-height: 1.7;
  color: rgba(250, 247, 242, 0.45);
}

/* ---------- TESTIMONIALS ---------- */
#testimonials {
  background-image: url(../image/parallax-img-new-1-1.jpg.bv_resized_desktop.jpg.bv.webp);
}

.testimonials-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
}

.testimonials-left .section-body {
  margin-bottom: 36px;
}

.rating-row {
  display: flex;
  gap: 4px;
  margin-bottom: 8px;
}

.star {
  color: var(--gold);
  font-size: 1rem;
}

.rating-text {
  font-size: 0.8rem;
  color: var(--warm-grey);
  margin-bottom: 36px;
}

.client-avatars {
  display: flex;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2.5px solid var(--cream);
  overflow: hidden;
  margin-left: -10px;
}

.avatar:first-child {
  margin-left: 0;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-count {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2.5px solid var(--cream);
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-left: -10px;
}

.testimonials-slider {
  position: relative;
}

.testimonial-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 44px 44px 36px;
  box-shadow: var(--shadow-sm);
  display: none;
  border: 1px solid var(--sand);
  position: relative;
  overflow: hidden;
}

.testimonial-card.active {
  display: block;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  left: 32px;
  font-family: var(--font-display);
  font-size: 10rem;
  color: rgba(201, 169, 110, 0.08);
  line-height: 1;
  pointer-events: none;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
  font-style: italic;
}

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

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
}

.author-role {
  font-size: 0.78rem;
  color: var(--warm-grey);
  margin-top: 2px;
}

.testimonial-nav {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 24px;
}

.t-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--sand);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.t-btn:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
}

.t-btn svg {
  width: 16px;
  height: 16px;
  stroke: var(--charcoal-mid);
  fill: none;
  stroke-width: 1.8;
  transition: stroke var(--transition-fast);
}

.t-btn:hover svg {
  stroke: var(--cream);
}

/* ---------- CTA BAND ---------- */
#cta {
  background: linear-gradient(135deg, var(--charcoal) 0%, #2D2418 100%);
  padding: 100px 8%;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.12) 0%, transparent 70%);
  left: -100px;
  top: -200px;
  pointer-events: none;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
  position: relative;
  z-index: 1;
}

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

.cta-title span {
  display: block;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
  position: relative;
  z-index: 1;
}

.cta-phone {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: rgba(250, 247, 242, 0.55);
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--charcoal);
  padding: 80px 8% 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 64px;
}

.footer-brand .nav-logo {
  color: var(--cream);
  font-size: 1.8rem;
  margin-bottom: 20px;
  display: block;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.85;
  color: rgba(250, 247, 242, 0.45);
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250, 247, 242, 0.45);
  font-size: 0.75rem;
  transition: all var(--transition-fast);
  cursor: pointer;
}

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

.footer-col h5 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.35);
  margin-bottom: 24px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a {
  font-size: 0.87rem;
  color: rgba(250, 247, 242, 0.55);
  transition: color var(--transition-fast);
}

.footer-col ul li a:hover {
  color: var(--gold-light);
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.87rem;
  color: rgba(250, 247, 242, 0.55);
  margin-bottom: 14px;
  line-height: 1.6;
}

.footer-contact p svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
  margin-top: 3px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(250, 247, 242, 0.3);
}

.footer-bottom a {
  color: var(--gold-light);
  font-size: 0.8rem;
}

/* ---------- MOBILE NAV ---------- */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.06em;
  transition: color var(--transition-fast);
}

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

.mobile-nav-close {
  position: absolute;
  top: 32px;
  right: 6%;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--cream);
  cursor: pointer;
}

/* ---------- BACK TO TOP ---------- */
#back-top {
  position: fixed;
  bottom: 36px;
  right: 36px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
  box-shadow: var(--shadow-gold);
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition-fast);
}

#back-top.visible {
  opacity: 1;
  transform: translateY(0);
}

#back-top:hover {
  background: var(--gold-dark);
}

#back-top svg {
  width: 18px;
  height: 18px;
  stroke: var(--charcoal);
  fill: none;
  stroke-width: 2;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-3d-cards {
    display: none;
  }

  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }

  .process-steps::before {
    display: none;
  }
}

@media (max-width: 1024px) {
  #about {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-text {
    padding-left: 0;
  }

  .about-visual {
    height: 400px;
  }

  .testimonials-inner {
    grid-template-columns: 1fr;
    gap: 0px;
  }

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

  .services-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .portfolio-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  #cta {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .cta-actions {
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  section {
    padding: 30px 5%;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
  }

  .port-item {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }

  .port-item .port-img-wrap {
    min-height: 200px !important;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .hero-content {
    padding: 0 5%;
  }

  #navbar {
    padding: 20px 5%;
  }

  .step-circle {
    width: 45px;
    height: 45px;
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .service-name {
    font-family: var(--font-display);
    font-size: 14px;
    margin-bottom: 7px;
    line-height: 1;
  }

  .service-num {
    top: 9px;
    right: 15px;
    font-size: 2rem;
  }

  .service-desc {
    font-size: 9px;
    line-height: 14px;
  }

  .service-icon-wrap {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
  }

  .service-card {
    padding: 10px !important;
  }

  .service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.12em;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .hero-eyebrow {
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 500;
    align-items: center;
    gap: 14px;
    opacity: 0;
    margin-bottom: 7px !important;
  }

  .hero-title {
    font-size: 35px;
    margin-bottom: 4px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .hero-desc {
    margin-bottom: 16px;
  }

  #hero {
    min-height: 90vh;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 33px;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item::after {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    width: 100%;
    justify-content: center;
  }
}

/* ---------- UTILITIES ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
}

.reveal.visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
}

.reveal-left.visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
}

.reveal-right.visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

/* ══════════════════════════════════════
   BLOG SECTION
══════════════════════════════════════ */
#blog {
  background: var(--cream);
}

.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 20px;
  gap: 40px;
  flex-wrap: wrap;
}

.blog-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* Grid: featured (left) + 3 compact (right) */
.blog-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}

/* Shared card base */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--sand);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  position: relative;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

/* Category badge */
.blog-cat-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  z-index: 2;
}

/* Meta row */
.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.blog-date {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: white;
}

.blog-date svg {
  flex-shrink: 0;
  stroke: white;
}

.blog-read {
  font-size: 0.72rem;
  color: var(--warm-grey);
  padding: 3px 10px;
  background: var(--ivory);
  border-radius: 50px;
}

/* Title */
.blog-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1.35;
  color: var(--charcoal);
  margin-bottom: 10px;
  transition: color var(--transition-fast);
}

.blog-card:hover .blog-title {
  color: var(--gold-dark);
}

/* Excerpt */
.blog-excerpt {
  font-size: 0.84rem;
  line-height: 1.8;
  color: white;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Footer row */
.blog-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--sand);
}

/* Author */
.blog-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-author img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.blog-author-name {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.2;
}

.blog-author-role {
  display: block;
  font-size: 0.7rem;
  color: var(--warm-grey);
}

/* Read link */
.blog-read-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  white-space: nowrap;
  transition: gap var(--transition-fast), color var(--transition-fast);
}

.blog-read-link:hover {
  gap: 9px;
  color: var(--charcoal);
}

.blog-read-link svg {
  stroke: currentColor;
  fill: none;
}

/* FEATURED card */
.blog-featured .blog-img-wrap {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.blog-featured .blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.blog-featured:hover .blog-img-wrap img {
  transform: scale(1.05);
}

.blog-featured .blog-content {
  padding: 28px 32px 32px;
}

.blog-featured .blog-title {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

/* SIDE column */
.blog-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blog-compact {
  display: grid;
  grid-template-columns: 130px 1fr;
  border-radius: var(--radius);
}

.blog-compact-img {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius) 0 0 var(--radius);
  min-height: 140px;
}

.blog-compact-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.blog-compact:hover .blog-compact-img img {
  transform: scale(1.06);
}

.blog-compact .blog-content {
  padding: 18px 20px 18px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-compact .blog-title {
  font-size: 0.92rem;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-compact .blog-excerpt {
  font-size: 0.78rem;
  -webkit-line-clamp: 2;
  margin-bottom: 12px;
}

.blog-compact .blog-footer-row {
  padding-top: 10px;
}

.blog-compact .blog-author img {
  width: 28px;
  height: 28px;
}

/* BOTTOM ROW — 3 equal cards */
.blog-row3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}

.blog-row-card .blog-row-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.blog-row-card .blog-row-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.blog-row-card:hover .blog-row-img img {
  transform: scale(1.06);
}

.blog-row-card .blog-content {
  padding: 24px 26px 28px;
  background: #c9a96e;
}

.blog-row-card .blog-title {
  font-size: 1.05rem;
}

.blog-row-card .blog-excerpt {
  -webkit-line-clamp: 2;
  margin-bottom: 16px;
}

/* Shine on hover */
.blog-featured .blog-img-wrap::after,
.blog-compact-img::after,
.blog-row-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.18) 50%, transparent 100%);
  transform: skewX(-20deg);
  opacity: 0;
  pointer-events: none;
}

.blog-featured:hover .blog-img-wrap::after,
.blog-compact:hover .blog-compact-img::after,
.blog-row-card:hover .blog-row-img::after {
  left: 125%;
  opacity: 1;
  transition: left 0.6s ease, opacity 0.1s;
}

/* NEWSLETTER STRIP */
.blog-newsletter {
  background: linear-gradient(135deg, var(--charcoal) 0%, #2d2010 100%);
  border-radius: var(--radius-lg);
  padding: 52px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  overflow: hidden;
}

.blog-newsletter::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.14) 0%, transparent 70%);
  right: -80px;
  bottom: -150px;
  pointer-events: none;
}

.newsletter-text .section-tag {
  color: var(--gold-light);
}

.newsletter-text .section-tag::before {
  background: var(--gold-light);
}

.newsletter-text h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 10px;
}

.newsletter-text p {
  font-size: 0.88rem;
  color: rgba(250, 247, 242, 0.5);
  line-height: 1.7;
}

.newsletter-form {
  flex-shrink: 0;
  min-width: 380px;
}

.newsletter-input-wrap {
  display: flex;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  padding: 6px 6px 6px 22px;
  margin-bottom: 12px;
}

.newsletter-input-wrap input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--cream);
  min-width: 0;
}

.newsletter-input-wrap input::placeholder {
  color: rgba(250, 247, 242, 0.35);
}

.newsletter-input-wrap .btn-primary {
  padding: 12px 26px;
  flex-shrink: 0;
  font-size: 0.75rem;
}

.newsletter-note {
  font-size: 0.73rem;
  color: rgba(250, 247, 242, 0.3);
  text-align: center;
}

/* Blog responsive */
@media (max-width: 1100px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-featured .blog-img-wrap {
    height: 260px;
  }

  .blog-side {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .blog-side .blog-compact {
    width: calc(50% - 10px);
  }

  .blog-row3 {
    grid-template-columns: 1fr 1fr;
  }

  .blog-newsletter {
    padding: 44px 48px;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .blog-side {
    flex-direction: column;
  }

  .blog-side .blog-compact {
    width: 100%;
  }

  .blog-compact {
    grid-template-columns: 100px 1fr;
  }

  .blog-row3 {
    grid-template-columns: 1fr;
  }

  .blog-newsletter {
    flex-direction: column;
    padding: 36px 28px;
    gap: 32px;
    text-align: center;
  }

  .blog-newsletter .section-tag {
    justify-content: center;
  }

  .newsletter-form {
    min-width: 0;
    width: 100%;
  }

  .newsletter-input-wrap {
    flex-direction: column;
    border-radius: var(--radius);
    padding: 16px;
    gap: 12px;
  }

  .newsletter-input-wrap .btn-primary {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .blog-compact {
    grid-template-columns: 1fr;
  }

  .blog-compact-img {
    border-radius: var(--radius) var(--radius) 0 0;
    min-height: 160px;
  }
}

.announcement-bar {
  width: 100%;
  background-color: var(--gold);
  padding: 5px 4%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: black;
  border-radius: 50%;
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.social-icons a:hover {
  background-color: #e09400;
  transform: scale(1.1);
}

.announcement-text {
  flex: 1;
  text-align: center;
  color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.announcement-text span {
  margin: 0 6px;
  opacity: 0.5;
}

.wcu-section {
  background: #0d0d0d;
  padding: 80px 40px;
  font-family: 'Jost', sans-serif;
  color: #fff;
}

.wcu-header {
  text-align: center;
  margin-bottom: 24px;
}

.wcu-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 14px;
  display: block;
}

.wcu-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
  margin: 0 0 18px;
}

.wcu-title em {
  color: #c9a84c;
  font-style: italic;
}

.wcu-subtitle {
  font-size: 14px;
  font-weight: 300;
  color: #888;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.8;
  letter-spacing: 0.3px;
}

.wcu-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, #c9a84c, transparent);
  margin: 24px auto 0;
}

.wcu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #222;
  border: 2px solid #c9a96e;
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}

.wcu-card {
  background: #111;
  padding: 40px 32px;
  position: relative;
  transition: background 0.3s ease;
  cursor: default;
}

.wcu-card:hover {
  background: #161410;
}

.wcu-card:hover .wcu-icon-wrap {
  border-color: #c9a84c;
}

.wcu-card:hover .wcu-card-num {
  color: rgba(201, 168, 76, 0.15);
}

.wcu-card-num {
  position: absolute;
  top: 18px;
  right: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  transition: color 0.3s;
  user-select: none;
}

.wcu-icon-wrap {
  width: 52px;
  height: 52px;
  border: 1px solid #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: border-color 0.3s ease;
}

.wcu-icon-wrap svg {
  width: 22px;
  height: 22px;
  stroke: #c9a84c;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wcu-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: #c9a96e;
  margin: 0 0 10px;
}

.wcu-card-text {
  font-size: 13px;
  font-weight: 300;
  color: white;
  line-height: 1.85;
  margin: 0;
}

.wcu-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-top: 60px;
  padding-top: 48px;
  border-top: 1px solid #1e1e1e;
}

.wcu-stat {
  text-align: center;
}

.wcu-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 600;
  color: #c9a84c;
  line-height: 1;
  margin-bottom: 6px;
}

.wcu-stat-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #555;
  font-weight: 400;
}

.wcu-stat-sep {
  width: 1px;
  height: 50px;
  background: #222;
}

.wcu-cta {
  display: inline-block;
  margin-top: 48px;
  padding: 14px 38px;
  border: 1px solid #c9a84c;
  color: #c9a84c;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  background: transparent;
  transition: background 0.3s, color 0.3s;
}

.wcu-cta:hover {
  background: #c9a84c;
  color: #000;
}

.wcu-cta-wrap {
  text-align: center;
}

.enq-section {
  background: #0d0d0d;
  font-family: 'Jost', sans-serif;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: 600px;
}

.enq-left {
  background: #0a0a0a;
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-right: 1px solid #1e1e1e;
  position: relative;
  overflow: hidden;
}

.enq-left::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px solid #1e1a12;
  pointer-events: none;
}

.enq-left::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid #1e1a12;
  pointer-events: none;
}

.enq-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 14px;
  display: block;
}

.enq-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.3;
  color: #f0e8d5;
  margin: 0 0 18px;
}

.enq-title em {
  color: #c9a84c;
  font-style: italic;
}

.enq-desc {
  font-size: 13px;
  font-weight: 300;
  color: #666;
  line-height: 1.9;
  margin: 0 0 40px;
}

.enq-divider {
  width: 48px;
  height: 1px;
  background: #c9a84c;
  margin-bottom: 40px;
  opacity: 0.5;
}

.enq-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.enq-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.enq-info-icon {
  width: 36px;
  height: 36px;
  border: 1px solid #2a2a2a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.enq-info-icon svg {
  width: 15px;
  height: 15px;
  stroke: #c9a84c;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.enq-info-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 3px;
}

.enq-info-val {
  font-size: 13px;
  color: #bbb;
  font-weight: 300;
}

.enq-right {
  padding: 64px 48px;
  background: #111;
}

.enq-form-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: #f0e8d5;
  margin: 0 0 32px;
}

.enq-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.enq-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.enq-field.no-mb {
  margin-bottom: 0;
}

.enq-label {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #c9a96e;
  font-weight: 500;
}

.enq-input, .enq-select, .enq-textarea {
  background: #0d0d0d;
  border: 1px solid #c9a96e;
  color: #ddd;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 300;
  padding: 13px 16px;
  outline: none;
  border-radius: 0;
  transition: border-color 0.25s ease;
  width: 100%;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}

.enq-input::placeholder, .enq-textarea::placeholder {
  color: #383838;
}

.enq-input:focus, .enq-select:focus, .enq-textarea:focus {
  border-color: #c9a84c;
}

.enq-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

.enq-select option {
  background: #111;
  color: #ddd;
}

.enq-textarea {
  resize: none;
  height: 110px;
  line-height: 1.7;
}

.enq-budget-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 0;
}

.enq-budget-opt {
  display: none;
}

.enq-budget-label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 6px;
  border: 1px solid #ffffff;
  font-size: 11px;
  font-weight: 400;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  letter-spacing: 0.5px;
  user-select: none;
}

.enq-budget-opt:checked+.enq-budget-label {
  border-color: #c9a84c;
  color: #c9a84c;
  background: rgba(201, 168, 76, 0.06);
}

.enq-budget-label:hover {
  border-color: #3a3020;
  color: #888;
}

.enq-submit {
  width: 100%;
  padding: 16px;
  background: transparent;
  border: 1px solid #c9a84c;
  color: #c9a84c;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 24px;
  transition: background 0.3s ease, color 0.3s ease;
}

.enq-submit:hover {
  background: #c9a84c;
  color: #000;
}

.enq-privacy {
  margin-top: 14px;
  font-size: 11px;
  color: #3a3a3a;
  text-align: center;
  font-weight: 300;
  letter-spacing: 0.3px;
}

@media(max-width: 768px) {
  .enq-section {
    background: #0d0d0d;
    font-family: 'Jost', sans-serif;
    color: #fff;
    display: block;
    min-height: 600px;
  }

  .enq-left {
    background: #0a0a0a;
    padding: 33px 28px;
  }

  .enq-title {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.3;
    color: #f0e8d5;
    margin: 0 0 8px;
  }

  .enq-right {
    padding: 15px 21px;
    background: #111;
  }

  .wcu-section {
    background: #0d0d0d;
    padding: 32px 17px;
    font-family: 'Jost', sans-serif;
    color: #fff;
  }

  .wcu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .wcu-card {
    background: #111;
    padding: 20px 13px;
  }

  .announcement-text {
    display: none;
  }

  .nav-cta {
    background: #c9a96e !important;
    color: var(--cream) !important;
    padding: 10px 16px !important;
    border-radius: 50px;
    font-size: 10px;
    letter-spacing: 0.12em !important;
    transition: background var(--transition-fast) !important;
  }

  .hamburger span {
    display: block;
    width: 26px;
    height: 1.5px;
    background: #c9a96e;
    transition: var(--transition);
    transform-origin: left;
  }

  .content-card {
    background: rgba(10, 10, 10, 0.82);
    backdrop-filter: blur(6px);
    padding: 20px 17px;
    border-left: 2px solid var(--gold);
    position: relative;
  }

  .slide-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 4.2rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 16px;
  }

  .slide-content {
    position: absolute;
    top: 50%;
    left: 3%;
    transform: translateY(-50%);
    z-index: 10;
    max-width: 290px;
  }

  .hero {
    position: relative;
    height: 73vh;
    overflow: hidden;
    margin-top: 0;
  }


}