/* ================================ */
/* RESET & ROOT VARIABLES           */
/* ================================ */

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

:root {
  --ink: #0b1f14;
  --velvet: #0f2b1c;
  --forest: #163d28;
  --moss: #1e5035;
  --sage: #2a7048;
  --bone: #f4f1ea;
  --bone2: #edeae0;
  --white: #ffffff;
  --gold: #b8963c;
  --gold-lt: #d4b060;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bone);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  overflow-x: hidden;
}

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

/* ================================ */
/* CURSOR                           */
/* ================================ */

#cur-dot,
#cur-ring,
#cur-lbl {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  display: none;
}

body.use-cursor {
  cursor: none;
}

body.use-cursor a,
body.use-cursor button {
  cursor: none;
}

body.use-cursor #cur-dot,
body.use-cursor #cur-ring,
body.use-cursor #cur-lbl {
  display: block;
}

#cur-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  transition: width 0.2s, height 0.2s, opacity 0.2s;
}

#cur-ring {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(184, 150, 60, 0.5);
  transition: width 0.35s var(--ease), height 0.35s var(--ease), background 0.3s,
    border-color 0.3s;
}

#cur-lbl {
  font-family: var(--sans);
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  white-space: nowrap;
  transform: translate(14px, 14px);
  transition: opacity 0.2s;
}

body.cur-hover #cur-ring {
  width: 58px;
  height: 58px;
  background: rgba(184, 150, 60, 0.06);
  border-color: var(--gold);
}

body.cur-hover #cur-dot {
  width: 4px;
  height: 4px;
}

body.cur-btn #cur-ring {
  width: 80px;
  height: 80px;
  background: rgba(184, 150, 60, 0.1);
  border-color: var(--gold-lt);
}

body.cur-btn #cur-dot {
  opacity: 0;
}

body.cur-btn #cur-lbl {
  opacity: 1;
}

body.cur-img #cur-ring {
  width: 100px;
  height: 100px;
  border-color: rgba(184, 150, 60, 0.3);
}

/* ================================ */
/* PRELOADER                        */
/* ================================ */

#preloader {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 99990;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  transition: opacity 0.7s, visibility 0.7s;
}

#preloader.gone {
  opacity: 0;
  visibility: hidden;
}

.pre-name {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 5vw, 1.6rem);
  color: var(--white);
  font-weight: 400;
  letter-spacing: 0.08em;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.2s forwards;
}

.pre-sub {
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  animation: fadeUp 0.6s ease 0.35s forwards;
}

.pre-bar-w {
  width: 160px;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.pre-bar {
  height: 100%;
  background: var(--gold);
  width: 0;
  animation: loadbar 1.5s ease 0.4s forwards;
}

@keyframes loadbar {
  to {
    width: 100%;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* ================================ */
/* HEADER                           */
/* ================================ */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 60px);
  height: 68px;
  background: rgba(11, 31, 20, 0.96);
  border-bottom: 1px solid rgba(184, 150, 60, 0.14);
  backdrop-filter: blur(14px);
  transition: box-shadow 0.3s;
}

header.scrolled {
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}

.logo .n1 {
  font-family: var(--serif);
  font-size: clamp(0.85rem, 2.5vw, 1.05rem);
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.03em;
}

.logo .n2 {
  font-size: 0.55rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 300;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.67rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.25s;
  font-weight: 300;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

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

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  padding: 9px 20px !important;
  font-size: 0.62rem !important;
  letter-spacing: 0.2em !important;
  transition: all 0.3s !important;
}

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

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

.hbg {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 600;
}

.hbg span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: transform 0.35s var(--ease), opacity 0.25s, width 0.3s;
  transform-origin: center;
}

.hbg.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hbg.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.hbg.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.drawer {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 490;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
}

.drawer.open {
  transform: translateX(0);
}

.drawer a {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 8vw, 2.8rem);
  color: var(--white);
  text-decoration: none;
  font-weight: 400;
  letter-spacing: 0.04em;
  padding: 8px 0;
  opacity: 0;
  transform: translateX(20px);
  transition: color 0.25s, opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.drawer.open a {
  opacity: 1;
  transform: none;
}

.drawer.open a:nth-child(1) {
  transition-delay: 0.08s;
}

.drawer.open a:nth-child(2) {
  transition-delay: 0.14s;
}

.drawer.open a:nth-child(3) {
  transition-delay: 0.2s;
}

.drawer.open a:nth-child(4) {
  transition-delay: 0.26s;
}

.drawer.open a:nth-child(5) {
  transition-delay: 0.32s;
}

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

.drawer-sub {
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(184, 150, 60, 0.45);
  margin-top: 20px;
}

/* ================================ */
/* HERO                             */
/* ================================ */

.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
  background: var(--velvet);
}

/* Full-bleed background photo */
.hero-bg-img {
  position: absolute;
  inset: -12%;
  will-change: transform;
  z-index: 0;
}

.hero-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72) saturate(0.85);
}

/* Narrow green panel on left that fades into the photo */
.hero-green-panel {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    var(--velvet) 0%,
    var(--velvet) 28%,
    rgba(15, 43, 28, 0.88) 42%,
    rgba(15, 43, 28, 0.45) 58%,
    transparent 78%
  );
}

.hero-left {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 clamp(24px, 5vw, 64px) clamp(60px, 8vh, 100px)
    clamp(24px, 6vw, 80px);
  height: 100%;
  width: clamp(360px, 50%, 580px);
}

.hero-kicker {
  font-size: 0.6rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.8s forwards;
}

.hero-kicker span {
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.hero-h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.5rem, 5.5vw, 5.2rem);
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 18px;
  opacity: 0;
  animation: fadeUp 0.9s ease 1.95s forwards;
  transition: transform 0.6s var(--ease);
}

.hero-h1 em {
  font-style: italic;
  color: var(--gold-lt);
}

.hero-body {
  font-size: clamp(0.78rem, 0.9vw, 0.86rem);
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.48);
  max-width: 360px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s ease 2.1s forwards;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 2.25s forwards;
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
  border: none;
  padding: 13px 30px;
  font-family: var(--sans);
  font-size: 0.67rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s, transform 0.25s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.18);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 0.5s;
}

.btn-gold:hover::after {
  transform: translateX(120%) skewX(-15deg);
}

.btn-gold:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(184, 150, 60, 0.28);
}

.btn-ghost {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.67rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.25s;
}

.btn-ghost .arr {
  display: inline-block;
  transition: transform 0.3s;
}

.btn-ghost:hover {
  color: var(--white);
}

.btn-ghost:hover .arr {
  transform: translateX(5px);
}

/* ================================ */
/* GALLERY CAROUSEL                 */
/* ================================ */

.gallery-section {
  background: var(--ink);
  padding: clamp(50px, 7vw, 80px) 0 clamp(50px, 7vw, 80px);
  overflow: hidden;
}

.gal-hd {
  text-align: center;
  padding: 0 clamp(20px, 6vw, 80px);
  margin-bottom: clamp(28px, 4vw, 48px);
}

.gal-hd .section-h {
  color: var(--white);
}

.gal-hd .section-h em {
  color: var(--gold-lt);
}

.carousel-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
}

.car-slide {
  min-width: 100%;
  position: relative;
  aspect-ratio: 16 / 7;
  overflow: hidden;
}

.car-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.78) saturate(0.88);
  transition: transform 0.9s cubic-bezier(0.23, 1, 0.32, 1), filter 0.5s;
  display: block;
}

.car-slide:hover img {
  transform: scale(1.04);
  filter: brightness(0.9) saturate(1);
}

.car-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 48px 28px;
  background: linear-gradient(180deg, transparent 0%, rgba(11,31,20,0.72) 100%);
  z-index: 2;
}

.car-caption span {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.car-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(11, 31, 20, 0.75);
  border: 1px solid rgba(184, 150, 60, 0.3);
  color: var(--gold);
  width: 48px;
  height: 48px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  backdrop-filter: blur(8px);
}

.car-btn:hover {
  background: var(--velvet);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.08);
}

.car-prev {
  left: clamp(12px, 3vw, 36px);
}

.car-next {
  right: clamp(12px, 3vw, 36px);
}

.car-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
  padding: 0 20px;
}

.car-dot {
  width: 24px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: background 0.3s, width 0.35s;
}

.car-dot.active {
  background: var(--gold);
  width: 40px;
}


  position: absolute;
  bottom: clamp(48px, 8vh, 80px);
  right: clamp(24px, 5vw, 60px);
  z-index: 5;
  background: var(--velvet);
  border-top: 2px solid var(--gold);
  border-left: 1px solid rgba(184, 150, 60, 0.18);
  padding: clamp(16px, 2.5vw, 24px) clamp(20px, 3.5vw, 40px);
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  opacity: 0;
  animation: fadeUp 0.8s ease 2.4s forwards;
}

.stat-n {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}

.stat-l {
  font-size: 0.57rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
  margin-top: 5px;
}

.stat-div {
  width: 1px;
  background: rgba(255, 255, 255, 0.07);
  align-self: stretch;
}

.scroll-cue {
  position: absolute;
  bottom: clamp(24px, 4vh, 40px);
  left: clamp(24px, 6vw, 80px);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 0.8s ease 2.5s forwards;
}

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

.scroll-text {
  font-size: 0.5rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.35;
  }

  50% {
    opacity: 1;
  }
}

/* ================================ */
/* TICKER                           */
/* ================================ */

.ticker-w {
  overflow: hidden;
  background: var(--gold);
  padding: 10px 0;
  white-space: nowrap;
}

.ticker-i {
  display: inline-block;
  animation: ticker 30s linear infinite;
}

.ticker-i span {
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0 30px;
  font-weight: 500;
}

.ticker-i span::before {
  content: '◆';
  margin-right: 30px;
  opacity: 0.3;
  font-size: 0.42rem;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ================================ */
/* SHARED                           */
/* ================================ */

.eyebrow {
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-h {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 18px;
}

.section-h em {
  font-style: italic;
  color: var(--moss);
}

.section-p {
  font-size: clamp(0.78rem, 0.85vw, 0.84rem);
  line-height: 1.9;
  color: rgba(11, 31, 20, 0.52);
  letter-spacing: 0.02em;
}

.rv {
  opacity: 0;
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

.rv.up {
  transform: translateY(36px);
}

.rv.left {
  transform: translateX(-40px);
}

.rv.right {
  transform: translateX(40px);
}

.rv.sc {
  transform: scale(0.93);
}

.rv.in {
  opacity: 1;
  transform: none;
}

/* ================================ */
/* ABOUT                            */
/* ================================ */

.about {
  display: grid;
  grid-template-columns: 5fr 4fr;
  background: var(--white);
  overflow: hidden;
}

.about-img {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  background: var(--velvet);
}

.about-img-i {
  position: absolute;
  inset: -18%;
  will-change: transform;
}

.about-img-i img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-img.headshot-col {
  background: linear-gradient(170deg, var(--velvet) 0%, var(--forest) 100%);
}

.about-img.headshot-col .about-img-i {
  inset: 0;
  top: auto;
  bottom: 0;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.about-img.headshot-col .about-img-i img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: none;
  mix-blend-mode: luminosity;
  opacity: 0.92;
}

.about-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 43, 28, 0.35) 0%, transparent 60%);
  pointer-events: none;
}

.about-img.headshot-col::after {
  background: linear-gradient(0deg, rgba(11, 31, 20, 0.55) 0%, transparent 50%);
}

.about-badge {
  position: absolute;
  bottom: 36px;
  right: 0;
  z-index: 3;
  background: var(--ink);
  color: var(--gold);
  padding: 20px 28px;
  border-left: 3px solid var(--gold);
}

.about-badge .big {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1;
  display: block;
}

.about-badge .sm {
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(184, 150, 60, 0.55);
  margin-top: 5px;
  display: block;
}

.about-body {
  padding: clamp(48px, 7vw, 88px) clamp(28px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-body::before {
  content: 'GD';
  position: absolute;
  right: -16px;
  bottom: -24px;
  font-family: var(--serif);
  font-size: clamp(10rem, 18vw, 22rem);
  font-weight: 600;
  color: rgba(11, 31, 20, 0.022);
  line-height: 1;
  pointer-events: none;
  animation: floatBG 8s ease-in-out infinite;
}

@keyframes floatBG {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.about-body .section-p {
  max-width: 380px;
  margin-bottom: 14px;
}

.pillars {
  margin: 28px 0;
  display: flex;
  flex-direction: column;
}

.pillar {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(11, 31, 20, 0.06);
  transition: padding-left 0.3s;
}

.pillar:hover {
  padding-left: 8px;
}

.pillar-n {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  min-width: 26px;
  opacity: 0.5;
}

.pillar-t {
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  color: var(--ink);
  margin-bottom: 3px;
}

.pillar-d {
  font-size: 0.72rem;
  line-height: 1.7;
  color: rgba(11, 31, 20, 0.44);
}

/* ================================ */
/* SERVICES                         */
/* ================================ */

.services {
  background: var(--velvet);
  padding: clamp(60px, 8vw, 100px) clamp(20px, 6vw, 80px);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse at 80% 50%,
    rgba(42, 112, 72, 0.14) 0%,
    transparent 70%
  );
  animation: breathe 6s ease-in-out infinite;
}

@keyframes breathe {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

.services > * {
  position: relative;
  z-index: 1;
}

.svc-hd {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 60px);
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.svc-card {
  background: var(--forest);
  padding: clamp(32px, 4vw, 52px) clamp(24px, 3vw, 40px);
  border-bottom: 2px solid transparent;
  transition: border-color 0.35s, background 0.35s, transform 0.35s;
  position: relative;
  overflow: hidden;
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  background: linear-gradient(
    180deg,
    rgba(42, 112, 72, 0.2) 0%,
    transparent 100%
  );
  transition: height 0.5s;
}

.svc-card:hover {
  border-color: var(--gold);
  background: rgba(22, 61, 40, 0.9);
  transform: translateY(-4px);
}

.svc-card:hover::before {
  height: 100%;
}

.svc-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(184, 150, 60, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: border-color 0.3s, transform 0.3s;
}

.svc-card:hover .svc-icon {
  border-color: var(--gold);
  transform: rotate(10deg);
}

.svc-icon svg {
  width: 17px;
  height: 17px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.svc-title {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 400;
}

.svc-desc {
  font-size: 0.73rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.37);
}

.svc-arr {
  margin-top: 24px;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.svc-card:hover .svc-arr {
  opacity: 1;
  transform: translateY(0);
}

/* ================================ */
/* ================================ */
/* PARALLAX DIVIDER                 */
/* ================================ */

.par-div {
  height: clamp(240px, 35vw, 420px);
  overflow: hidden;
  position: relative;
}

.par-div-img {
  position: absolute;
  inset: -28%;
  will-change: transform;
}

.par-div-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.38) saturate(0.6);
}

.par-div-ov {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: rgba(11, 31, 20, 0.3);
}

.div-quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.3rem, 3.5vw, 3rem);
  color: var(--white);
  text-align: center;
  line-height: 1.35;
  padding: 0 20px;
}

.div-quote em {
  color: var(--gold-lt);
  font-style: normal;
}

.div-line {
  width: 48px;
  height: 1px;
  background: var(--gold);
  opacity: 0.55;
}

/* ================================ */
/* LISTING                          */
/* ================================ */

.listing {
  background: var(--bone);
  padding: clamp(60px, 8vw, 100px) clamp(20px, 6vw, 80px);
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}

.listing-img-w {
  overflow: hidden;
  position: relative;
}

.listing-img-w img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.88);
  transition: transform 0.8s var(--ease), filter 0.5s;
  display: block;
}

.listing-img-w:hover img {
  transform: scale(1.04);
  filter: saturate(0.95) brightness(0.95);
}

.listing-strip {
  position: absolute;
  top: 28px;
  left: -20px;
  background: var(--velvet);
  color: var(--gold);
  padding: 9px 18px;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-right: 2px solid var(--gold);
  z-index: 2;
}

.listing-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 30px 0;
}

.lf {
  border-top: 1px solid rgba(11, 31, 20, 0.1);
  padding-top: 12px;
  transition: border-color 0.3s;
}

.lf:hover {
  border-color: var(--gold);
}

.lf-v {
  font-family: var(--serif);
  font-size: 1.45rem;
  color: var(--ink);
  line-height: 1;
}

.lf-k {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(11, 31, 20, 0.37);
  margin-top: 3px;
}

.search-b {
  display: flex;
  align-items: stretch;
  margin-top: 30px;
  border: 1px solid rgba(11, 31, 20, 0.14);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.search-b:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 150, 60, 0.1);
}

.search-b input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--sans);
  font-size: 0.78rem;
  padding: 13px 16px;
  color: var(--ink);
  min-width: 0;
}

.search-b input::placeholder {
  color: rgba(11, 31, 20, 0.28);
}

.search-b button {
  background: var(--ink);
  border: none;
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 13px 18px;
  font-weight: 400;
  transition: background 0.25s;
  white-space: nowrap;
}

.search-b button:hover {
  background: var(--forest);
}

/* ================================ */
/* TESTIMONIAL                      */
/* ================================ */

.quote-band {
  background: var(--forest);
  padding: clamp(56px, 7vw, 96px) clamp(20px, 6vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-band::before {
  content: '\201C';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: clamp(16rem, 30vw, 34rem);
  color: rgba(255, 255, 255, 0.022);
  pointer-events: none;
  line-height: 1;
}

.quote-text {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.1rem, 2.5vw, 1.85rem);
  line-height: 1.6;
  color: var(--white);
  max-width: 700px;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}

.quote-attr {
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(184, 150, 60, 0.65);
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.quote-attr::before,
.quote-attr::after {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

/* ================================ */
/* AREAS                            */
/* ================================ */

.areas {
  background: var(--bone2);
  padding: clamp(60px, 8vw, 100px) clamp(20px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}

.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.area-chip {
  padding: 10px 14px;
  border: 1px solid rgba(11, 31, 20, 0.1);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: rgba(11, 31, 20, 0.58);
  transition: all 0.3s;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.area-chip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--velvet);
  transform: translateY(100%);
  transition: transform 0.35s var(--ease);
  z-index: 0;
}

.area-chip span {
  position: relative;
  z-index: 1;
  transition: color 0.3s;
}

.area-chip:hover {
  border-color: var(--velvet);
}

.area-chip:hover::before {
  transform: translateY(0);
}

.area-chip:hover span {
  color: var(--gold);
}

/* ================================ */
/* CONTACT                          */
/* ================================ */

.contact {
  background: var(--ink);
  padding: clamp(60px, 8vw, 100px) clamp(20px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(42, 112, 72, 0.12) 0%,
    transparent 70%
  );
  animation: breathe 7s ease-in-out infinite;
  pointer-events: none;
}

.cf {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.ff {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.ff label {
  font-size: 0.56rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.27);
}

.ff input,
.ff select,
.ff textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.8rem;
  padding: 12px 14px;
  outline: none;
  font-weight: 300;
  transition: border-color 0.3s, background 0.3s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.ff input::placeholder,
.ff textarea::placeholder {
  color: rgba(255, 255, 255, 0.18);
}

.ff input:focus,
.ff select:focus,
.ff textarea:focus {
  border-color: rgba(184, 150, 60, 0.55);
  background: rgba(255, 255, 255, 0.07);
}

.ff textarea {
  resize: none;
  height: 90px;
}

.ff select {
  color: rgba(255, 255, 255, 0.42);
}

.ff select option {
  background: var(--ink);
}

.form-sub {
  background: var(--gold);
  border: none;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.67rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 15px;
  transition: background 0.3s, transform 0.25s, box-shadow 0.3s;
  margin-top: 4px;
  position: relative;
  overflow: hidden;
}

.form-sub::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 0.5s;
}

.form-sub:hover::after {
  transform: translateX(120%) skewX(-15deg);
}

.form-sub:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 150, 60, 0.24);
}

.cinfo {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 36px;
}

.cinfo a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  transition: color 0.3s, gap 0.3s;
}

.cinfo a:hover {
  color: var(--gold);
  gap: 18px;
}

.ci {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(184, 150, 60, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.3s, background 0.3s;
}

.cinfo a:hover .ci {
  border-color: var(--gold);
  background: rgba(184, 150, 60, 0.08);
}

.ci svg {
  width: 13px;
  height: 13px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

/* ================================ */
/* FOOTER                           */
/* ================================ */

footer {
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: clamp(20px, 3vw, 28px) clamp(20px, 6vw, 80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.foot-l .n1 {
  font-family: var(--serif);
  color: var(--white);
  font-size: 0.9rem;
}

.foot-l .n2 {
  font-size: 0.55rem;
  letter-spacing: 0.24em;
  color: var(--gold);
  margin-top: 2px;
}

.foot-links {
  display: flex;
  gap: 22px;
  list-style: none;
  flex-wrap: wrap;
}

.foot-links a {
  text-decoration: none;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.27);
  transition: color 0.3s;
}

.foot-links a:hover {
  color: var(--gold);
}

.foot-r {
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.17);
}

/* ================================ */
/* MOBILE                           */
/* ================================ */

@media (max-width: 900px) {
  .hero {
    height: auto;
    min-height: 100svh;
  }

  .hero-bg-img {
    inset: 0;
  }

  .hero-green-panel {
    background: linear-gradient(
      180deg,
      rgba(11, 31, 20, 0.75) 0%,
      rgba(11, 31, 20, 0.92) 100%
    );
  }

  .hero-left {
    width: 100%;
    justify-content: flex-end;
    padding: 100px 28px 64px;
    min-height: 100svh;
  }

  .hero-float,
  .scroll-cue {
    display: none;
  }

  .hero-h1 {
    font-size: clamp(2.6rem, 10vw, 4rem);
  }

  .hero-body {
    max-width: 100%;
  }

  .nav-links {
    display: none;
  }

  .hbg {
    display: flex;
  }

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

  .about-img {
    min-height: 380px;
    order: -1;
  }

  .about-img-i {
    inset: -10%;
  }

  .about-body {
    padding: 44px 24px;
  }

  .about-body::before {
    font-size: 8rem;
  }

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

  .car-slide {
    aspect-ratio: 4 / 3;
  }

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

  .listing-strip {
    left: 0;
  }

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

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .foot-r,
  .foot-links {
    display: none;
  }
}

@media (max-width: 600px) {
  .area-grid {
    grid-template-columns: 1fr 1fr;
  }

  .listing-feats {
    grid-template-columns: 1fr 1fr;
  }
}
