:root {
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --dark: #0e1a0e;
  --dark2: #162216;
  --forest: #1e3a1e;
  --cream: #f5f0e8;
  --cream2: #ede6d6;
  --text: #2a1f0a;
  --text-light: #7a6a4a;
  --white: #ffffff;
  --transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Jost", sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ── CUSTOM CURSOR ── */
.cursor {
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition:
    transform 0.15s ease,
    width 0.3s ease,
    height 0.3s ease;
}
.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition:
    transform 0.35s ease,
    width 0.4s ease,
    height 0.4s ease,
    opacity 0.3s ease;
  opacity: 0.7;
}
body:hover .cursor {
  opacity: 1;
}

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 28px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s ease;
}
nav.scrolled {
  background: rgba(14, 26, 14, 0.97);
  backdrop-filter: blur(12px);
  padding: 16px 6%;
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 42px;
  height: 42px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.nav-logo-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
}
.nav-logo-text span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.82);
  font-family: "Jost", sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s ease;
}
.nav-links a:hover {
  color: var(--gold);
}
.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--gold);
  color: var(--dark) !important;
  padding: 10px 24px;
  border-radius: 2px;
  font-weight: 600 !important;
  letter-spacing: 1.5px !important;
  transition:
    background 0.3s,
    transform 0.3s !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}
.nav-cta::after {
  display: none !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: all 0.4s ease;
  transform-origin: left;
}
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(1px, -1px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(1px, 1px);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(14, 26, 14, 0.98);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  z-index: 999;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.5s ease;
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu a {
  text-decoration: none;
  color: var(--white);
  font-family: "Cormorant Garamond", serif;
  font-size: 2.8rem;
  font-weight: 300;
  letter-spacing: 3px;
  transition: color 0.3s;
}
.mobile-menu a:hover {
  color: var(--gold);
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("img/28.jpeg");
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 8s ease-out;
  filter: brightness(0.45);
}
.hero-bg.loaded {
  transform: scale(1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(14, 26, 14, 0.7) 0%,
    rgba(0, 0, 0, 0.3) 60%,
    rgba(201, 168, 76, 0.15) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 900px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--gold);
  padding: 8px 20px;
  border-radius: 2px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 1s 0.3s forwards;
}
.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 1s 0.6s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.5px;
  margin-bottom: 48px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeUp 1s 0.9s forwards;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s 1.1s forwards;
}
.btn-primary {
  background: var(--gold);
  color: var(--dark);
  padding: 16px 40px;
  border: none;
  border-radius: 2px;
  font-family: "Jost", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold-light);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn-primary:hover::before {
  transform: translateX(0);
}
.btn-primary span {
  position: relative;
  z-index: 1;
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 16px 40px;
  border-radius: 2px;
  font-family: "Jost", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s ease;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  z-index: 2;
  animation: fadeUp 1s 1.5s both;
}
.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease infinite;
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--dark);
  padding: 32px 6%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}
.stat-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}
.stat-item:last-child {
  border-right: none;
}
.stat-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ── SECTION HEADER ── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 16px;
}
.section-tag::before,
.section-tag::after {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1.15;
}
.section-title em {
  font-style: italic;
  color: var(--forest);
}
.section-title.light {
  color: var(--white);
}
.section-title.light em {
  color: var(--gold);
}
.section-sub {
  margin-top: 16px;
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 300;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ── SERVICES ── */
#services {
  padding: 120px 6%;
  background: var(--cream);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  filter: brightness(0.6);
}
.service-card:hover img {
  transform: scale(1.08);
  filter: brightness(0.5);
}
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(14, 26, 14, 0.9) 0%,
    transparent 60%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  transition: all 0.5s ease;
}
.service-icon {
  width: 44px;
  height: 44px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 14px;
  transform: translateY(10px);
  opacity: 0.7;
  transition: all 0.5s ease;
}
.service-card:hover .service-icon {
  transform: translateY(0);
  opacity: 1;
  background: rgba(201, 168, 76, 0.3);
}
.service-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
}
.service-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.5s ease,
    opacity 0.5s ease;
  opacity: 0;
}
.service-card:hover .service-desc {
  max-height: 60px;
  opacity: 1;
}
.service-arrow {
  margin-top: 12px;
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.5s ease;
}
.service-card:hover .service-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ── ABOUT ── */
#about {
  padding: 140px 6%;
  background: var(--dark2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}
.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 55%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 2px;
  border: 6px solid var(--dark2);
}
.about-badge {
  position: absolute;
  top: 32px;
  left: -20px;
  background: var(--gold);
  color: var(--dark);
  padding: 16px 20px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  border-radius: 2px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.about-badge strong {
  display: block;
  font-size: 2.2rem;
  line-height: 1;
}
.about-content {
  padding-bottom: 40px;
}
.about-content .section-tag {
  justify-content: flex-start;
}
.about-content .section-title {
  text-align: left;
}
.about-text {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.85;
  margin: 24px 0 36px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.about-feature-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-top: 2px;
}
.about-feature-title {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 4px;
}
.about-feature-text {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8rem;
  font-weight: 300;
}

/* ── GALLERY ── */
#gallery {
  padding: 120px 6%;
  background: var(--cream2);
}
.gallery-filter {
  display: flex;
  gap: 4px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 9px 22px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: transparent;
  border-radius: 2px;
  font-family: "Jost", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--text-light);
  transition: all 0.3s ease;
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 220px;
  gap: 6px;
}
.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border-radius: 2px;
}
.gallery-item:nth-child(1) {
  grid-column: span 5;
  grid-row: span 2;
}
.gallery-item:nth-child(2) {
  grid-column: span 4;
  grid-row: span 1;
}
.gallery-item:nth-child(3) {
  grid-column: span 3;
  grid-row: span 1;
}
.gallery-item:nth-child(4) {
  grid-column: span 3;
  grid-row: span 1;
}
.gallery-item:nth-child(5) {
  grid-column: span 4;
  grid-row: span 1;
}
.gallery-item:nth-child(6) {
  grid-column: span 4;
  grid-row: span 1;
}
.gallery-item:nth-child(7) {
  grid-column: span 4;
  grid-row: span 1;
}
.gallery-item:nth-child(8) {
  grid-column: span 4;
  grid-row: span 1;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.5s ease;
  filter: brightness(0.9) saturate(0.9);
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.7) saturate(1.1);
}
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 26, 14, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.5s ease;
}
.gallery-item:hover .gallery-item-overlay {
  background: rgba(14, 26, 14, 0.4);
}
.gallery-zoom {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--dark);
  transform: scale(0);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.gallery-item:hover .gallery-zoom {
  transform: scale(1);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.open {
  display: flex;
}
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 2px;
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.3s;
}
.lightbox-close:hover {
  color: var(--gold);
}

/* ── PROCESS ── */
#process {
  padding: 120px 6%;
  background: var(--dark);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 64px;
}
.process-step {
  text-align: center;
  position: relative;
}
.process-step::after {
  content: "→";
  position: absolute;
  top: 24px;
  right: -28px;
  color: rgba(201, 168, 76, 0.3);
  font-size: 1.2rem;
}
.process-step:last-child::after {
  display: none;
}
.process-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  font-weight: 300;
  color: rgba(201, 168, 76, 0.15);
  line-height: 1;
  margin-bottom: 8px;
}
.process-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}
.process-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 10px;
}
.process-text {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.7;
}

/* ── TESTIMONIALS ── */
#testimonials {
  padding: 120px 6%;
  background: var(--forest);
  overflow: hidden;
}
.testimonials-track {
  display: flex;
  gap: 28px;
  margin-top: 64px;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.testimonial-card {
  min-width: calc(33.33% - 19px);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 44px 36px;
  border-radius: 2px;
  position: relative;
  transition: border-color 0.4s;
}
.testimonial-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
}
.testimonial-quote {
  font-size: 4rem;
  line-height: 0.5;
  color: var(--gold);
  opacity: 0.4;
  font-family: Georgia, serif;
  margin-bottom: 24px;
  display: block;
}
.testimonial-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 28px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.2);
  border: 2px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.testimonial-name {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
}
.testimonial-loc {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.78rem;
  margin-top: 2px;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 4px;
}
.testimonial-nav {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 48px;
}
.t-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.t-nav-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

/* ── CTA BANNER ── */
.cta-banner {
  position: relative;
  padding: 120px 6%;
  overflow: hidden;
  background-image: url("https://images.unsplash.com/photo-1416879595882-3373a0480b5b?w=1800&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(14, 26, 14, 0.82);
}
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
}
.cta-content .section-title {
  margin-bottom: 20px;
}
.cta-content p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* ── CONTACT ── */
#contact {
  padding: 120px 6%;
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
}
.contact-info .section-tag {
  justify-content: flex-start;
}
.contact-info .section-title {
  text-align: left;
  margin-bottom: 24px;
}
.contact-info p {
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 40px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-detail-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: var(--forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
}
.contact-detail-label {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 3px;
}
.contact-detail-value {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}
.contact-detail-value a {
  color: inherit;
  text-decoration: none;
}

.contact-form {
  background: var(--white);
  padding: 52px 44px;
  border-radius: 2px;
  box-shadow: 0 4px 60px rgba(0, 0, 0, 0.08);
}
.form-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 32px;
  color: var(--text);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 2px;
  font-family: "Jost", sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--cream);
  outline: none;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
  background: var(--white);
}
.form-group textarea {
  resize: none;
  min-height: 120px;
}
.form-submit {
  width: 100%;
  padding: 18px;
  background: var(--forest);
  border: none;
  border-radius: 2px;
  color: var(--white);
  font-family: "Jost", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.form-submit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.form-submit:hover::before {
  transform: scaleX(1);
}
.form-submit span {
  position: relative;
  z-index: 1;
}
.form-submit:hover span {
  color: var(--dark);
}
.form-success {
  display: none;
  text-align: center;
  padding: 20px;
  background: rgba(30, 58, 30, 0.1);
  border-radius: 2px;
  color: var(--forest);
  font-weight: 500;
  border: 1px solid rgba(30, 58, 30, 0.2);
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  padding: 80px 6% 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand .nav-logo {
  margin-bottom: 20px;
}
.footer-tagline {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.social-link {
  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(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer-col-title {
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.88rem;
  font-weight: 300;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a:hover {
  color: var(--gold);
}
.footer-links a::before {
  content: "—";
  font-size: 0.6rem;
  color: rgba(201, 168, 76, 0.4);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
}
.footer-copy a {
  color: var(--gold);
  text-decoration: none;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scrollLine {
  0%,
  100% {
    transform: scaleY(1);
    opacity: 1;
  }
  50% {
    transform: scaleY(0.3);
    opacity: 0.3;
  }
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  #about {
    grid-template-columns: 1fr;
  }
  .about-img-secondary {
    display: none;
  }
  #contact {
    grid-template-columns: 1fr;
  }
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-step::after {
    display: none;
  }
  .testimonial-card {
    min-width: calc(50% - 14px);
  }
}
@media (max-width: 768px) {
  /* --- GLOBAL MOBILE FIX (The "X-Axis" Killer) --- */
  html,
  body {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    position: relative !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* --- NAVBAR FIX (Aggressive Alignment) --- */
  nav {
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    position: fixed !important;
    box-sizing: border-box !important; /* Includes padding inside the 100% width */
    padding: 15px 20px !important;
    margin: 0 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    background: rgba(14, 26, 14, 0.98) !important; /* Ensure visibility */
  }

  .nav-logo {
    flex-shrink: 1 !important;
    max-width: 70% !important;
  }

  .nav-logo-text {
    font-size: 1.2rem !important;
    white-space: nowrap !important;
  }

  .nav-links,
  .nav-cta {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* --- HERO SECTION REPAIR --- */
  /* .hero {
    width: 100% !important;
    padding: 0 20px !important;
    overflow: hidden !important;
  } */

  /* .hero-title {
    font-size: clamp(2rem, 10vw, 3rem) !important;
    line-height: 1.2 !important;
    width: 100% !important;
  } */

  /* --- OTHER SECTIONS REPAIR --- */
  /* #about,
  #contact,
  #services,
  #gallery,
  #testimonials {
    padding: 60px 20px !important;
    width: 100% !important;
    overflow: hidden !important;
  } */

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }

  .gallery-item {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 32px 24px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .process-steps {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    min-width: calc(85vw);
  }

  .cursor,
  .cursor-ring {
    display: none !important;
  }
}

/* --- EXTRA TIGHT FIX FOR SMALL PHONES --- */
@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Base logo style */
.site-logo {
  height: 42px;       /* main control */
  width: auto;        /* keeps rectangular ratio */
  object-fit: contain;
  display: block;
}

/* Footer variation (optional) */
.footer-logo {
  height: 36px;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
  .site-logo {
    height: 32px;
  }
}
