/* ───── TOKENS ───── */
:root {
  --orange: #f07830;
  --orange-lt: #f79558;
  --orange-dk: #cc5e18;
  --orange-deep: #a84a10;
  --cream: #fff8f3;
  --cream-dk: #fdf0e6;
  --off-white: #fafafa;
  --white: #ffffff;
  --charcoal: #1c1410;
  --warm-dark: #f5ede4;
  --warm-mid: #ede2d8;
  --stone: #7a6458;
  --stone-lt: #a08878;
  --text-primary: #1c1410;
  --text-secondary: #5a4a3e;
  --text-muted: #9a8478;
  --gg: linear-gradient(
    135deg,
    var(--orange-dk),
    var(--orange),
    var(--orange-lt)
  );
  --gh: linear-gradient(90deg, var(--orange-dk), var(--orange-lt));
  --ff-head: "Playfair Display", Georgia, serif;
  /* --ff-head: "DM Serif Display", Georgia, serif; */
  --ff-body: "DM Sans", system-ui, sans-serif;
  --ease: all 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius: 2px;
  --shadow: 0 24px 64px rgba(184, 100, 30, 0.12);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.08);
}

/* ───── RESET ───── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--ff-body);
  background: var(--white);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
::selection {
  background: var(--orange);
  color: var(--white);
}
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: var(--cream-dk);
}
::-webkit-scrollbar-thumb {
  background: var(--orange);
}

/* ───── LOADER ───── */
#loader {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.7s ease,
    visibility 0.7s ease;
}
#loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.ld-name {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  background: var(--gg);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.3rem;
}
.ld-sub {
  font-size: 0.6rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--stone-lt);
  margin-bottom: 2rem;
}
.ld-bar {
  width: 160px;
  height: 1px;
  background: var(--cream-dk);
  overflow: hidden;
}
.ld-fill {
  height: 100%;
  width: 0;
  background: var(--gh);
  animation: ldbar 2.2s ease forwards;
}
@keyframes ldbar {
  to {
    width: 100%;
  }
}

/* ───── FLOATING CTA ───── */
.float-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-end;
}
.fab-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--ease);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
  position: relative;
}
.fab-btn::before {
  content: attr(data-tip);
  position: absolute;
  right: 58px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  color: var(--orange);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  white-space: nowrap;
  padding: 0.3rem 0.7rem;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
  border: 1px solid rgba(232, 100, 26, 0.2);
  box-shadow: var(--shadow-card);
}
.fab-btn:hover::before {
  opacity: 1;
}
.fab-wa {
  background: #25d366;
  color: #fff;
}
.fab-wa:hover {
  background: #1da851;
  transform: scale(1.08);
}
.fab-ph {
  background: var(--orange);
  color: var(--white);
}
.fab-ph:hover {
  background: var(--orange-lt);
  transform: scale(1.08);
}

/* ───── NAV ───── */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 1.5rem 0;
  transition: var(--ease);
}
#nav.solid {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(232, 100, 26, 0.12);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}
.nav-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.nav-brand-name {
  font-family: var(--ff-head);
  font-size: 1.2rem;
  font-weight: 700;
  background: var(--gg);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.08em;
}
.nav-brand-sub {
  font-size: 0.5rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--stone-lt);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
  padding: 0.5rem 0.85rem;
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0.85rem;
  right: 0.85rem;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.nav-links a:hover {
  color: var(--orange);
}
.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-book {
  background: var(--gg);
  color: var(--white) !important;
  font-weight: 700 !important;
  font-size: 0.68rem !important;
  padding: 0.5rem 1.25rem !important;
  transition: var(--ease) !important;
  flex-shrink: 0;
}
.nav-book:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(232, 100, 26, 0.4) !important;
}
.nav-book::after {
  display: none !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.25rem;
  border: none;
  background: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--orange);
  transition: var(--ease);
}
.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 790;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav a {
  font-family: var(--ff-head);
  font-size: 2rem;
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  transition: color 0.25s;
}
.mobile-nav a:hover {
  color: var(--orange);
}
.mobile-nav .mob-book {
  background: var(--gg);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.85rem 2.5rem;
}

/* ───── HERO (REDESIGNED) ───── */

/* ── Keyframes ── */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(36px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes heroFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes hzoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.07);
  }
}
@keyframes scrollBob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}
@keyframes ringPulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.18;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.07);
    opacity: 0.28;
  }
}
@keyframes cardFloat1 {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-9px);
  }
}
@keyframes cardFloat2 {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(7px);
  }
}
@keyframes cardFloat3 {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-6px);
  }
}
@keyframes cardFloat4 {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(10px);
  }
}
@keyframes linesReveal {
  from {
    transform: scaleY(0);
    opacity: 0;
  }
  to {
    transform: scaleY(1);
    opacity: 1;
  }
}
@keyframes pillSlide {
  from {
    opacity: 0;
    transform: translateX(24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes dotBlink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

/* ── Section shell ── */
/* ───── HERO SPLIT ───── */
#hero {
  min-height: 100svh;
  display: flex;
  flex-direction: row;
  overflow: hidden;
  position: relative;
}

/* ── LEFT PANEL — cream bg ── */
.hero-split-left {
  width: 52%;
  background: var(--cream);
  display: flex;
  align-items: center;
  padding: 7rem 4rem 5rem 4rem;
  position: relative;
  z-index: 2;
}
.hero-split-left::after {
  content: "";
  position: absolute;
  top: 0;
  right: -40px;
  width: 80px;
  height: 100%;
  background: var(--cream);
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  z-index: 3;
}
.hero-left-inner {
  max-width: 520px;
  width: 100%;
}

/* ── RIGHT PANEL — building image ── */
.hero-split-right {
  width: 48%;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.hero-building-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 12s ease;
}
#hero:hover .hero-building-img {
  transform: scale(1.04);
}
.hero-img-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(255, 248, 243, 0.35) 0%, transparent 30%),
    linear-gradient(to top, rgba(28, 20, 16, 0.5) 0%, transparent 50%);
}

/* ── pill badge on image ── */
.hero-pill {
  position: absolute;
  top: 5.5rem;
  right: 2rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.5rem 1rem 0.5rem 0.7rem;
  z-index: 4;
  animation: pillSlide 0.7s ease 1.6s both;
}
.hero-pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange-lt);
  flex-shrink: 0;
  animation: dotBlink 1.8s ease infinite;
}

/* ── eyebrow ── */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--orange-dk);
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: heroFadeUp 0.8s ease 0.4s forwards;
}
.hero-eyebrow-line {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--orange);
  flex-shrink: 0;
}

/* ── H1 ── */
.hero-h1 {
  font-family: var(--ff-head);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.02em;
}
.hero-h1-line {
  display: block;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  color: var(--text-primary);
  opacity: 0;
  animation: heroFadeUp 0.8s ease both;
}
.hero-h1-line:nth-child(1) {
  animation-delay: 0.55s;
}
.hero-h1-line:nth-child(2) {
  animation-delay: 0.7s;
}
.hero-h1-line:nth-child(3) {
  animation-delay: 0.85s;
}
.hero-h1-italic {
  font-style: italic;
  font-weight: 400;
  color: var(--orange);
  -webkit-text-fill-color: var(--orange);
  background: none;
  text-shadow: none;
}

/* ── ornament rule ── */
.hero-rule {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: heroFadeIn 0.8s ease 1s forwards;
}
.hero-rule-bar {
  display: block;
  flex: 1;
  max-width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--orange), transparent);
}
.hero-rule-bar:last-child {
  background: linear-gradient(90deg, transparent, var(--orange));
}
.hero-rule-diamond {
  font-size: 0.55rem;
  color: var(--orange);
  line-height: 1;
}

/* ── desc ── */
.hero-desc {
  font-size: 0.92rem;
  line-height: 1.9;
  color: var(--text-secondary);
  margin-bottom: 1.8rem;
  max-width: 440px;
  opacity: 0;
  animation: heroFadeUp 0.8s ease 1.1s forwards;
}
.hero-desc strong {
  color: var(--orange-dk);
  font-weight: 600;
}

/* ── stat strip ── */
.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 2rem;
  background: var(--white);
  border: 1px solid rgba(232, 100, 26, 0.15);
  box-shadow: var(--shadow-card);
  opacity: 0;
  animation: heroFadeUp 0.8s ease 1.15s forwards;
}
.hero-stat {
  flex: 1;
  padding: 0.9rem 0.75rem;
  text-align: center;
  border-right: 1px solid rgba(232, 100, 26, 0.1);
}
.hero-stat:last-child {
  border-right: none;
}
.hero-stat-v {
  font-family: var(--ff-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}
.hero-stat-l {
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.25rem;
}
.hero-stat-sep {
  display: none;
}

/* ── actions ── */
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: heroFadeUp 0.8s ease 1.25s forwards;
}
.hero-btn-book {
  box-shadow: 0 8px 28px rgba(232, 100, 26, 0.35) !important;
}
.hero-btn-book:hover {
  box-shadow: 0 12px 36px rgba(232, 100, 26, 0.5) !important;
}
.hero-btn-price {
  border-color: var(--orange) !important;
  color: var(--orange-dk) !important;
  background: transparent !important;
}
.hero-btn-price:hover {
  background: var(--orange) !important;
  color: var(--white) !important;
}

/* ── trust strip ── */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeIn 0.8s ease 1.45s forwards;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.42rem;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
}
.hero-trust-item svg {
  color: var(--orange);
  flex-shrink: 0;
}
.hero-trust-sep {
  color: var(--warm-mid);
  font-size: 0.85rem;
}

/* ── scroll cue ── */
.hero-scroll-cue {
  display: none;
  position: absolute;
  bottom: 2rem;
  left: 26%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: heroFadeIn 0.8s ease 2s forwards;
  z-index: 5;
}
.hero-scroll-line {
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scrollBob 2.2s ease-in-out infinite;
}
.hero-scroll-cue span {
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--stone-lt);
}

/* ── mobile ── */
@media (max-width: 900px) {
  #hero {
    flex-direction: column;
  }
  .hero-split-left {
    position: relative;
    width: 100%;
    padding: 6rem 1.5rem 2.5rem;
  }
  .hero-split-left::after {
    display: none;
  }
  .hero-split-right {
    width: 100%;
    height: 55vw;
    min-height: 280px;
  }
  .hero-scroll-cue {
    left: 50%;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions a {
    justify-content: center;
  }
  .hero-h1-line {
    font-size: clamp(2.8rem, 12vw, 4rem);
  }
}

/* ───── BUTTONS ───── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--gg);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.95rem 2.2rem;
  transition: var(--ease);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
}
.btn-primary:hover::after {
  left: 100%;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(232, 100, 26, 0.4);
  color: var(--white);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border: 1.5px solid var(--orange);
  color: var(--orange-dk);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.95rem 2.2rem;
  transition: var(--ease);
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  white-space: nowrap;
  backdrop-filter: blur(4px);
}
.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-sm {
  padding: 0.55rem 1.1rem !important;
  font-size: 0.64rem !important;
}

/* ───── TICKER ───── */
.ticker {
  background: var(--orange);
  overflow: hidden;
  padding: 0.65rem 0;
}
.ticker-inner {
  display: flex;
  animation: tick 5s linear infinite;
  white-space: nowrap;
}
.ticker-inner:hover {
  animation-play-state: paused;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  flex-shrink: 0;
  padding-right: 2.5rem;
}
.ticker-dot {
  opacity: 0.5;
}
@keyframes tick {
  to {
    transform: translateX(-50%);
  }
}

/* ───── SECTIONS ───── */
.section {
  padding: 7rem 0;
}
.wrap {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 2rem;
}
.eyebrow {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
}
.eyebrow::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--orange);
  flex-shrink: 0;
}
.section-title {
  font-family: var(--ff-head);
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}
.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--orange);
}
.gold-rule {
  width: 40px;
  height: 2px;
  background: var(--gh);
  margin: 1.2rem 0;
}
.section-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.9;
}

/* ───── ABOUT ───── */
#about {
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.about-img-wrap {
  position: relative;
}
.about-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: drop-shadow(0 30px 60px rgba(232, 100, 26, 0.15));
}
.about-badge {
  position: absolute;
  top: -1.2rem;
  right: -1.2rem;
  background: var(--gg);
  padding: 1.3rem 1.4rem;
  text-align: center;
  box-shadow: 0 12px 36px rgba(232, 100, 26, 0.3);
}
@media (max-width: 900px) {
  .about-badge {
    top: 0.8rem;
    right: 0.8rem;
  }
}
.about-badge-n {
  font-family: var(--ff-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.about-badge-l {
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}
.about-corner {
  position: absolute;
  bottom: -1.2rem;
  left: -1.2rem;
  background: var(--white);
  border: 1.5px solid var(--orange);
  padding: 0.8rem 1.2rem;
  box-shadow: var(--shadow-card);
}
@media (max-width: 900px) {
  .about-corner {
    bottom: 0.8rem;
    left: 0.8rem;
  }
}
.about-corner-n {
  font-family: var(--ff-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}
.about-corner-l {
  font-size: 0.52rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone-lt);
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin: 2rem 0;
}
@media (max-width: 480px) {
  .about-features {
    grid-template-columns: 1fr;
  }
}
.about-feat {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1.1rem;
  background: var(--white);
  border: 1px solid rgba(232, 100, 26, 0.1);
  transition: var(--ease);
  box-shadow: var(--shadow-card);
}
.about-feat:hover {
  border-color: rgba(232, 100, 26, 0.3);
  background: var(--cream-dk);
  transform: translateY(-2px);
}
.about-feat-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: rgba(232, 100, 26, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 0.85rem;
  transition: var(--ease);
}

/* ===== Redesigned hero overrides (simple, responsive) ===== */
.hero-new {
  min-height: 78svh;
  display: block;
  padding: 5.5rem 0 3.5rem;
  background: linear-gradient(
    180deg,
    rgba(250, 248, 246, 0.35),
    transparent 40%
  );
}
.hero-wrap {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.25rem;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-wrap {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .hero-media {
    order: -1;
  }
}

.hero-panel .eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.12em;
  margin-bottom: 0.6rem;
}
.hero-title {
  font-family: var(--ff-head);
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  line-height: 1.02;
  margin-bottom: 1rem;
  color: var(--text-primary);
}
.hero-title em {
  font-style: italic;
  color: var(--orange-lt);
  font-weight: 500;
}
.hero-lead {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.9;
  max-width: 46ch;
  margin-bottom: 1.25rem;
}
.hero-ctas {
  display: flex;
  gap: 0.9rem;
  margin-bottom: 1.25rem;
}
.hero-ctas .btn-primary {
  padding: 0.85rem 1.8rem;
}
.hero-ctas .btn-outline {
  padding: 0.8rem 1.6rem;
}

.hero-trust-list {
  display: flex;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--text-secondary);
  list-style: none;
  padding: 0;
  margin: 0;
}
.hero-trust-list li {
  font-weight: 700;
  letter-spacing: 0.12em;
}

.hero-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  display: block;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  margin-top: 1rem;
}
.hero-stats .stat {
  background: var(--white);
  padding: 0.7rem 0.9rem;
  border-radius: 8px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-stats .stat strong {
  font-family: var(--ff-head);
  color: var(--text-primary);
  font-size: 1.05rem;
}
.hero-stats .stat span {
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* small refinement for very small screens */
@media (max-width: 420px) {
  .hero-panel .eyebrow {
    font-size: 0.62rem;
  }
  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
  .hero-media img {
    height: 300px;
  }
}

.about-feat:hover .about-feat-icon {
  background: var(--orange);
  color: var(--white);
}
.about-feat-h {
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
  color: var(--text-primary);
}
.about-feat-p {
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ───── FLOORS ───── */
#floors {
  background: var(--off-white);
}
.floors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 3rem;
}
@media (max-width: 640px) {
  .floors-grid {
    grid-template-columns: 1fr;
  }
}
.floor-card {
  background: var(--white);
  border: 1px solid rgba(232, 100, 26, 0.1);
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  transition: var(--ease);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.floor-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gh);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s ease;
}
.floor-card:hover {
  border-color: rgba(232, 100, 26, 0.3);
  transform: translateX(6px);
  box-shadow: 0 8px 32px rgba(232, 100, 26, 0.12);
}
.floor-card:hover::before {
  transform: scaleY(1);
}
.floor-num {
  font-family: var(--ff-head);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(232, 100, 26, 0.18);
  min-width: 52px;
  line-height: 1;
  transition: color 0.3s;
}
.floor-card:hover .floor-num {
  color: var(--orange);
}
.floor-info {
  flex: 1;
  min-width: 0;
}
.floor-info h5 {
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.22rem;
  color: var(--text-primary);
}
.floor-info p {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}
.floor-tag-badge {
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.22rem 0.72rem;
  border: 1px solid rgba(232, 100, 26, 0.28);
  color: var(--orange);
  margin-top: auto;
}
.floor-tag-badge.res {
  border-color: rgba(232, 100, 26, 0.55);
  color: var(--orange-dk);
  background: rgba(232, 100, 26, 0.06);
}

/* ───── COUNTERS ───── */
#counters {
  background: var(--gg);
  padding: 4rem 0;
}
.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}
@media (max-width: 600px) {
  .counters-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.counter-item {
  text-align: center;
  padding: 2rem 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}
.counter-item:last-child {
  border-right: none;
}
.counter-n {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.counter-l {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.35rem;
}

/* ───── PRICING ───── */
#pricing {
  background: var(--cream);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}
.pcard {
  background: var(--white);
  border: 1px solid rgba(232, 100, 26, 0.1);
  padding: 2rem;
  transition: var(--ease);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.pcard::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gh);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.38s ease;
}
.pcard:hover::after {
  transform: scaleX(1);
}
.pcard:hover {
  border-color: rgba(232, 100, 26, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(232, 100, 26, 0.15);
}
.pcard-featured {
  border-color: rgba(232, 100, 26, 0.25);
  background: linear-gradient(160deg, rgba(232, 100, 26, 0.05), var(--white));
}
.pcard-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--orange);
  color: var(--white);
  padding: 0.18rem 0.65rem;
}
.pcard-badge.grad {
  background: var(--gg);
}
.pcard-type {
  font-size: 0.57rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.4rem;
}
.pcard-title {
  font-family: var(--ff-head);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}
.pcard-size {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.pcard-divider {
  height: 1px;
  background: rgba(232, 100, 26, 0.1);
  margin: 1rem 0;
}
.pcard-from {
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}
.pcard-price {
  font-family: var(--ff-head);
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gg);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}
.pcard-note {
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
  margin-bottom: 1.25rem;
}
.pricing-contact {
  background: rgba(232, 100, 26, 0.04);
  border: 1px solid rgba(232, 100, 26, 0.15);
  padding: 2.5rem;
  text-align: center;
  margin-top: 2.5rem;
}
.pricing-contact h4 {
  font-family: var(--ff-head);
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 0.65rem;
  color: var(--text-primary);
}
.pricing-contact p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

/* ───── AMENITIES ───── */
#amenities {
  background: var(--off-white);
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(232, 100, 26, 0.08);
  margin-top: 3rem;
  border: 1px solid rgba(232, 100, 26, 0.08);
}
@media (max-width: 900px) {
  .amenities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
  }

  .ami {
    padding: 1rem 0.6rem;
  }

  .ami-icon {
    width: 40px;
    height: 40px;
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
  }

  .ami-name {
    font-size: 0.72rem;
  }

  .ami-desc {
    font-size: 0.58rem;
    line-height: 1.4;
  }
}

.ami {
  background: var(--white);
  padding: 2rem 1.25rem;
  text-align: center;
  transition: var(--ease);
}
.ami:hover {
  background: var(--cream);
}
.ami-icon {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(232, 100, 26, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.85rem;
  font-size: 1.1rem;
  color: var(--orange);
  transition: var(--ease);
}
.ami:hover .ami-icon {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.ami-name {
  font-family: var(--ff-head);
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}
.ami-desc {
  font-size: 0.68rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ───── GALLERY ───── */
#gallery {
  background: var(--cream);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 0.75rem;
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
.gitem {
  overflow: hidden;
  cursor: pointer;
  border-radius: 6px;
  position: relative;
}
.gitem.tall {
  grid-row: span 2;
}
@media (max-width: 768px) {
  .gitem.tall {
    grid-row: span 1;
  }
}
.gitem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
}
.gitem.tall img {
  aspect-ratio: 3/4;
}
@media (max-width: 768px) {
  .gitem.tall img {
    aspect-ratio: 4/3;
  }
}
.gitem:hover img {
  transform: scale(1.07);
}
.gitem-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.62) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.gitem:hover .gitem-overlay {
  opacity: 1;
}
.gitem-overlay .gitem-label {
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ───── GALLERY TABS ───── */
.gtabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}
.gtab {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.55rem 1.4rem;
  border: 1.5px solid var(--warm-mid);
  background: transparent;
  color: var(--stone);
  cursor: pointer;
  border-radius: 2px;
  transition: var(--ease);
}
.gtab:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.gtab.active {
  background: var(--gg);
  border-color: transparent;
  color: var(--white);
}
.gtab-panel {
  display: none !important;
  overflow: hidden;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.42s ease,
    transform 0.42s ease;
  pointer-events: none;
}
.gtab-panel.active {
  display: block !important;
  animation: panelIn 0.42s ease forwards;
  pointer-events: auto;
}
@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.gtab-empty {
  text-align: center;
  padding: 5rem 2rem;
  background: var(--cream-dk);
  border-radius: 4px;
}
.gtab-empty-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.gtab-empty-title {
  font-family: var(--ff-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}
.gtab-empty-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 380px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ───── WHY US ───── */
#why {
  background: var(--warm-mid);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}
.why-card {
  background: var(--white);
  border: 1px solid rgba(232, 100, 26, 0.1);
  padding: 2rem;
  transition: var(--ease);
  box-shadow: var(--shadow-card);
}
.why-card:hover {
  border-color: rgba(232, 100, 26, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(232, 100, 26, 0.12);
}
.why-n {
  font-family: var(--ff-head);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(232, 100, 26, 0.1);
  line-height: 1;
  margin-bottom: 1rem;
  transition: color 0.35s;
}
.why-card:hover .why-n {
  color: rgba(232, 100, 26, 0.25);
}
.why-title {
  font-family: var(--ff-head);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--text-primary);
}
.why-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.9;
}

/* ───── LEAD FORM ───── */
#lead {
  background: var(--off-white);
}
.lead-inner {
  max-width: 740px;
  margin: 0 auto;
}
.form-box {
  background: var(--white);
  border: 1px solid rgba(232, 100, 26, 0.15);
  padding: clamp(2rem, 5vw, 3.5rem);
  position: relative;
  overflow: hidden;
  margin-top: 2.5rem;
  box-shadow: 0 8px 48px rgba(232, 100, 26, 0.08);
}
.form-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--orange-dk),
    var(--orange-lt),
    var(--orange-dk)
  );
}
.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
@media (max-width: 560px) {
  .frow {
    grid-template-columns: 1fr;
  }
}
.frow.full {
  grid-template-columns: 1fr;
}
.flabel {
  display: block;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}
.finput {
  width: 100%;
  background: var(--cream);
  border: 1px solid rgba(232, 100, 26, 0.15);
  color: var(--text-primary);
  font-family: var(--ff-body);
  font-size: 0.88rem;
  padding: 0.85rem 1rem;
  transition:
    border-color 0.25s,
    background 0.25s;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
}
.finput::placeholder {
  color: rgba(90, 74, 62, 0.35);
}
.finput:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(232, 100, 26, 0.08);
}
.finput:invalid:not(:placeholder-shown) {
  border-color: #e05555;
}
select.finput {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23e8641a' stroke-width='1.5' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 11px;
  background-color: var(--cream);
  appearance: none;
  cursor: pointer;
}
select.finput option {
  background: var(--white);
  color: var(--text-primary);
}
.form-gap {
  margin-top: 1.1rem;
}
.btn-submit {
  width: 100%;
  background: var(--gg);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 1.05rem;
  border: none;
  cursor: pointer;
  transition: var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(232, 100, 26, 0.45);
}
.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.btn-wa-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  background: #25d366;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem;
  margin-top: 0.75rem;
  transition: var(--ease);
}
.btn-wa-form:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
  color: #fff;
}
.form-success {
  display: none;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #16a34a;
  font-size: 0.82rem;
  text-align: center;
  padding: 0.9rem;
  margin-top: 0.85rem;
}
.form-error {
  display: none;
  background: rgba(224, 85, 85, 0.08);
  border: 1px solid rgba(224, 85, 85, 0.3);
  color: #dc2626;
  font-size: 0.82rem;
  text-align: center;
  padding: 0.9rem;
  margin-top: 0.85rem;
}
.form-contacts {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.7rem;
  color: var(--text-muted);
}
.form-contacts a {
  color: var(--orange);
  transition: color 0.2s;
}
.form-contacts a:hover {
  color: var(--orange-dk);
}

/* ───── LOCATION ───── */
#location {
  background: var(--cream);
}
.location-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
  align-items: stretch;
}
@media (max-width: 768px) {
  .location-grid {
    grid-template-columns: 1fr;
  }
}
.map-frame {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
  filter: grayscale(0.2) contrast(0.95);
  transition: filter 0.5s;
}
.map-frame:hover {
  filter: none;
}
@media (max-width: 768px) {
  .map-frame {
    height: 280px;
  }
}
.locbox {
  background: var(--white);
  border: 1px solid rgba(232, 100, 26, 0.12);
  padding: 2rem;
  height: 100%;
  box-shadow: var(--shadow-card);
}
.loc-item {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(232, 100, 26, 0.07);
}
.loc-item:last-of-type {
  border-bottom: none;
}
.loc-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  background: rgba(232, 100, 26, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 0.78rem;
}
.loc-text strong {
  font-size: 0.75rem;
  font-weight: 600;
  display: block;
  margin-bottom: 0.12rem;
  color: var(--text-primary);
}
.loc-text span {
  font-size: 0.68rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ───── FOOTER ───── */
footer {
  background: var(--text-primary);
  border-top: 1px solid rgba(232, 100, 26, 0.2);
  padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
}
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}
@media (max-width: 500px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
.ft-brand-name {
  font-family: var(--ff-head);
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gg);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}
.ft-brand-tag {
  font-size: 0.52rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1rem;
}
.ft-desc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.9;
  max-width: 280px;
}
.ft-socials {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}
.ft-soc {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(232, 100, 26, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  transition: var(--ease);
}
.ft-soc:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  transform: translateY(-2px);
}
.ft-col-h {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.1rem;
}
.ft-link {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.55rem;
  transition:
    color 0.25s,
    padding-left 0.25s;
}
.ft-link:hover {
  color: var(--orange-lt);
  padding-left: 0.35rem;
}
.ft-addr {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 2.1;
}
.ft-addr a {
  color: var(--orange-lt);
  transition: color 0.2s;
}
.ft-addr a:hover {
  color: var(--white);
}
.footer-bottom {
  border-top: 1px solid rgba(232, 100, 26, 0.1);
  margin-top: 3rem;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p {
  font-size: 0.66rem;
  color: rgba(255, 255, 255, 0.3);
}
.footer-bottom a {
  color: var(--orange);
}

/* ───── LIGHTBOX ───── */
#ks-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    background 0.3s ease;
  backdrop-filter: blur(0px);
}
#ks-lightbox.open {
  opacity: 1;
  pointer-events: auto;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
}
.lb-inner {
  position: relative;
  max-width: min(90vw, 960px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#lb-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 6px;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}
#lb-img.switching {
  opacity: 0;
  transform: scale(0.96);
}
.lb-caption {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.lb-counter {
  margin-top: 0.4rem;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}
.lb-close {
  position: fixed;
  top: 1.5rem;
  right: 1.75rem;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    transform 0.2s;
  z-index: 10000;
  backdrop-filter: blur(4px);
}
.lb-close:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: rotate(90deg);
}
.lb-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    transform 0.2s;
  z-index: 10000;
  backdrop-filter: blur(4px);
  user-select: none;
}
.lb-arrow:hover {
  background: rgba(255, 255, 255, 0.2);
}
.lb-prev {
  left: 1.5rem;
}
.lb-next {
  right: 1.5rem;
}
.lb-prev:hover {
  transform: translateY(-50%) translateX(-3px);
}
.lb-next:hover {
  transform: translateY(-50%) translateX(3px);
}
.lb-dots {
  display: flex;
  gap: 0.45rem;
  margin-top: 0.85rem;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 300px;
}
.lb-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
  flex-shrink: 0;
}
.lb-dot.active {
  background: #c9a96e;
  transform: scale(1.35);
}
@media (max-width: 600px) {
  .lb-arrow {
    display: none;
  }
  .lb-inner {
    max-width: 95vw;
  }
  #lb-img {
    max-height: 65vh;
  }
}

/* ───── REVEAL ANIMATIONS ───── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-delay="1"] {
  transition-delay: 0.1s;
}
[data-reveal-delay="2"] {
  transition-delay: 0.2s;
}
[data-reveal-delay="3"] {
  transition-delay: 0.3s;
}
[data-reveal-delay="4"] {
  transition-delay: 0.4s;
}

/* ───── RESPONSIVE ───── */
@media (max-width: 860px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}
@media (max-width: 400px) {
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    width: 100%;
    justify-content: center;
  }
  .hero-stats {
    gap: 1.8rem;
  }
  .counters-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Swiper Gallery ── */
.ks-swiper {
  margin-top: 1.5rem;
  padding-bottom: 3rem !important;
}
.ks-slide {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.ks-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.ks-slide:hover img {
  transform: scale(1.05);
}
.ks-slide-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.swiper-button-prev,
.swiper-button-next {
  color: var(--orange) !important;
}
.swiper-pagination-bullet-active {
  background: var(--orange) !important;
}

.ks-swiper {
  margin-top: 1.5rem;
  padding-bottom: 3rem !important;
}
.ks-slide {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--cream-dk);
}
.ks-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.ks-slide:hover img {
  transform: scale(1.05);
}
.ks-slide-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.swiper-button-prev,
.swiper-button-next {
  color: var(--orange) !important;
}
.swiper-pagination-bullet-active {
  background: var(--orange) !important;
}

/* ───── ABOUT MOBILE ORDER FIX ───── */
@media (max-width: 900px) {
  .about-grid {
    display: flex;
    flex-direction: column;
  }

  .about-grid > div:first-child {
    order: 2; /* image goes second on mobile */
  }

  .about-grid > div:last-child {
    order: 1; /* text goes first on mobile */
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
  }
}

.footer-grid {
  grid-template-columns: 1.8fr 1fr 1.2fr;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
