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

:root {
  --gold: #C9A84C;
  --gold2: #E8C97A;
  --gold3: #8B6914;
  --dark: #0A0A0A;
  --dark2: #111111;
  --dark3: #1A1A1A;
  --light: #F8F6F0;
  --light2: #EFEFEA;
  --gray: #888;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;
}

html {
  scroll-behavior: smooth
}

body {
  background: var(--dark);
  color: var(--light);
  font-family: var(--font-body);
  overflow-x: hidden
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: padding 0.4s;
}

nav::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(10, 10, 10, 0.35);
  backdrop-filter: blur(8px);
  border-bottom: 0.5px solid rgba(201, 168, 76, 0.05);
  transition: background 0.4s, backdrop-filter 0.4s;
}

nav.scrolled {
  padding: 1rem 4rem;
}

nav.scrolled::before {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid rgba(201, 168, 76, 0.2);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase
}

.nav-logo span {
  display: block;
  font-size: 0.55rem;
  font-family: var(--font-body);
  font-weight: 300;
  letter-spacing: 0.5em;
  color: rgba(201, 168, 76, 0.7);
  text-transform: uppercase;
  margin-top: 2px
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none
}

.nav-links a {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(248, 246, 240, 0.75);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 400
}

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

.nav-cta {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.6rem 1.5rem;
  border: 0.5px solid var(--gold);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
  font-family: var(--font-body);
  font-weight: 400
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--dark)
}

/* HERO */
#hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden
}

.hero-parallax .parallax-layer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 115%;
  object-fit: cover;
  pointer-events: none;
  will-change: translate, scale, opacity;
  opacity: 0;
  animation: layerEntry 2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards
}

.pl-bg {
  z-index: 0;
  animation-delay: 0s
}

.pl-house {
  z-index: 1;
  animation-delay: 0.6s
}

.pl-trees {
  z-index: 2;
  animation-delay: 1.2s
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.1) 0%, rgba(10, 10, 10, 0.4) 4%, rgba(10, 10, 10, 1) 100%)
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 2rem
}

.hero-eyebrow {
  font-size: 0.6rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: 0.08em;
  color: var(--light);
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 1s ease 0.6s forwards
}

.hero-title .gold {
  color: var(--gold)
}

.hero-sub {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(248, 246, 240, 0.5);
  margin-top: 1.2rem;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 1s ease 0.9s forwards
}

.hero-divider {
  width: 60px;
  height: 0.5px;
  background: var(--gold);
  margin: 2rem auto;
  opacity: 0;
  animation: fadeUp 1s ease 1.1s forwards
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 1s ease 1.3s forwards
}

.btn-primary {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  background: var(--gold);
  color: var(--dark);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 500;
  transition: all 0.3s;
  position: relative;
  z-index: 10
}

.btn-primary:hover {
  background: var(--gold2)
}

.btn-outline {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  background: transparent;
  color: var(--light);
  border: 0.5px solid rgba(248, 246, 240, 0.3);
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 300;
  transition: all 0.3s;
  position: relative;
  z-index: 10
}

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

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1s ease 2s forwards;
  z-index: 10
}

.scroll-hint span {
  font-size: 0.5rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(248, 246, 240, 0.4)
}

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

/* SECTIONS */
section {
  padding: 8rem 6rem
}

.section-label {
  font-size: 0.55rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1.1;
  color: var(--light)
}

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

.gold-line {
  width: 40px;
  height: 0.5px;
  background: var(--gold);
  margin: 2rem 0
}

/* ABOUT */
#about {
  background: var(--dark2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center
}

.about-text p {
  font-size: 0.85rem;
  line-height: 1.9;
  color: rgba(248, 246, 240, 0.65);
  font-weight: 300;
  margin-bottom: 1.5rem
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0
}

.stat-item {
  padding: 2.5rem;
  border: 0.5px solid rgba(201, 168, 76, 0.15)
}

.stat-item:nth-child(odd) {
  border-right: none
}

.stat-item:nth-child(n+3) {
  border-top: none
}

.stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1
}

.stat-label {
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(248, 246, 240, 0.45);
  margin-top: 0.5rem
}

/* SERVICES */
#services {
  background: var(--dark3)
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 4rem;
  border: 0.5px solid rgba(201, 168, 76, 0.12)
}

.service-card {
  padding: 3rem 2.5rem;
  border-right: 0.5px solid rgba(201, 168, 76, 0.12);
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
  cursor: default
}

.service-card:last-child {
  border-right: none
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: linear-gradient(to top, rgba(201, 168, 76, 0.06), transparent);
  transition: height 0.4s
}

.service-card:hover::before {
  height: 100%
}

.service-card:hover .service-icon-line {
  width: 100%
}

.service-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: rgba(201, 168, 76, 0.4);
  letter-spacing: 0.2em;
  margin-bottom: 2rem
}

.service-icon-line {
  width: 24px;
  height: 0.5px;
  background: var(--gold);
  margin-bottom: 1.5rem;
  transition: width 0.5s ease
}

.service-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--light);
  margin-bottom: 1rem;
  letter-spacing: 0.04em
}

.service-desc {
  font-size: 0.72rem;
  line-height: 1.9;
  color: rgba(248, 246, 240, 0.5);
  font-weight: 300
}

/* WHY US */
#why {
  background: var(--dark2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start
}

.why-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0
}

.why-item {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 0.5px solid rgba(201, 168, 76, 0.1)
}

.why-item:first-child {
  padding-top: 0
}

.why-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: rgba(201, 168, 76, 0.3);
  flex-shrink: 0;
  line-height: 1
}

.why-content h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--light);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em
}

.why-content p {
  font-size: 0.72rem;
  line-height: 1.8;
  color: rgba(248, 246, 240, 0.5);
  font-weight: 300
}

.why-image-block {
  position: sticky;
  top: 8rem
}

.why-img-placeholder {
  background: var(--dark3);
  border: 0.5px solid rgba(201, 168, 76, 0.15);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden
}

.why-img-inner {
  text-align: center
}

.why-img-inner .big-letter {
  font-family: var(--font-display);
  font-size: 12rem;
  font-weight: 300;
  color: rgba(201, 168, 76, 0.08);
  line-height: 1;
  display: block
}

.why-img-label {
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.4);
  margin-top: 1rem
}

.why-img-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0.4
}

.why-img-corner.tl {
  top: 1.5rem;
  left: 1.5rem;
  border-width: 0.5px 0 0 0.5px
}

.why-img-corner.br {
  bottom: 1.5rem;
  right: 1.5rem;
  border-width: 0 0.5px 0.5px 0
}

/* TESTIMONIALS */
#testimonials {
  background: var(--dark);
  text-align: center;
  padding: 8rem 4rem
}

.testimonial-carousel {
  max-width: 700px;
  margin: 4rem auto 0;
  position: relative
}

.testimonial-item {
  display: none
}

.testimonial-item.active {
  display: block
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--light);
  letter-spacing: 0.02em;
  margin-bottom: 2rem
}

.testimonial-quote::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--gold);
  line-height: 0;
  vertical-align: -1rem;
  margin-right: 0.2rem;
  opacity: 0.6
}

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

.testimonial-role {
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248, 246, 240, 0.35);
  margin-top: 0.3rem
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 3rem
}

.dot {
  width: 20px;
  height: 0.5px;
  background: rgba(201, 168, 76, 0.25);
  cursor: pointer;
  transition: all 0.3s
}

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

/* CONTACT */
#contact {
  background: var(--dark2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start
}

.contact-info {
  padding-top: 1rem
}

.contact-detail {
  display: flex;
  gap: 1.5rem;
  padding: 1.8rem 0;
  border-bottom: 0.5px solid rgba(201, 168, 76, 0.1)
}

.contact-detail:first-child {
  padding-top: 0
}

.contact-icon {
  width: 28px;
  height: 28px;
  border: 0.5px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px
}

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

.contact-detail-label {
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.6);
  margin-bottom: 0.4rem
}

.contact-detail-value {
  font-size: 0.8rem;
  color: var(--light);
  font-weight: 300
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem
}

.form-group label {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.6);
  margin-bottom: 0.5rem
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: transparent;
  border: 0.5px solid rgba(201, 168, 76, 0.2);
  padding: 0.9rem 1rem;
  color: var(--light);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold)
}

.form-group textarea {
  height: 120px;
  resize: none
}

.form-group select {
  appearance: none;
  cursor: pointer
}

.form-group select option {
  background: var(--dark2);
  color: var(--light)
}

.form-submit {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  background: var(--gold);
  color: var(--dark);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 500;
  transition: all 0.3s;
  align-self: flex-start;
  margin-top: 0.5rem
}

.form-submit:hover {
  background: var(--gold2)
}

/* FOOTER */
footer {
  background: var(--dark);
  padding: 4rem 6rem 2rem;
  border-top: 0.5px solid rgba(201, 168, 76, 0.1)
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1rem
}

.footer-brand span {
  display: block;
  font-size: 0.5rem;
  letter-spacing: 0.45em;
  font-family: var(--font-body);
  font-weight: 300;
  color: rgba(201, 168, 76, 0.5);
  margin-top: 3px
}

.footer-desc {
  font-size: 0.72rem;
  line-height: 1.9;
  color: rgba(248, 246, 240, 0.4);
  font-weight: 300;
  max-width: 280px
}

.footer-col h5 {
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem
}

.footer-col li {
  font-size: 0.7rem;
  color: rgba(248, 246, 240, 0.45);
  font-weight: 300;
  cursor: pointer;
  transition: color 0.3s;
  letter-spacing: 0.05em
}

.footer-col li:hover {
  color: var(--gold)
}

.footer-bottom {
  border-top: 0.5px solid rgba(201, 168, 76, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center
}

.footer-copy {
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  color: rgba(248, 246, 240, 0.25)
}

.footer-by {
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  color: rgba(201, 168, 76, 0.35)
}

/* ANIMATIONS */
@keyframes layerEntry {
  from {
    opacity: 0;
    translate: 0 150px;
    scale: 1.05;
  }

  to {
    opacity: 1;
    translate: 0 0;
    scale: 1;
  }
}

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

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes scrollAnim {
  0% {
    transform: scaleY(0);
    transform-origin: top
  }

  50% {
    transform: scaleY(1);
    transform-origin: top
  }

  51% {
    transform: scaleY(1);
    transform-origin: bottom
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

.reveal-delay-1 {
  transition-delay: 0.15s
}

.reveal-delay-2 {
  transition-delay: 0.3s
}

.reveal-delay-3 {
  transition-delay: 0.45s
}

/* RESPONSIVE DESIGN */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 101;
}

.hamburger span {
  width: 25px;
  height: 1.5px;
  background: var(--gold);
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

@media (max-width: 1024px) {
  section {
    padding: 6rem 4rem;
  }

  #about,
  #why,
  #contact {
    gap: 4rem;
  }

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

  .service-card:nth-child(2) {
    border-right: none;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  section {
    padding: 4rem 2rem;
  }

  nav {
    padding: 1rem 2rem;
  }

  nav.scrolled {
    padding: 0.8rem 2rem;
  }

  .hamburger {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    z-index: 100;
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .nav-links a {
    font-size: 1rem;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 1rem;
  }

  #about,
  #why,
  #contact {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-stats {
    margin-top: 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    border: none;
    border-top: 0.5px solid rgba(201, 168, 76, 0.12);
  }

  .service-card {
    border-right: none;
    border-bottom: 0.5px solid rgba(201, 168, 76, 0.12);
    padding: 2.5rem 1.5rem;
  }

  .service-card:last-child {
    border-bottom: none;
  }

  .why-image-block {
    position: relative;
    top: 0;
    aspect-ratio: 1;
  }

  .why-img-placeholder {
    aspect-ratio: 1;
  }

  .why-img-inner .big-letter {
    font-size: 8rem;
  }

  .contact-detail {
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem 0;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  footer {
    padding: 3rem 2rem 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}