/* ===================================
   COMPONENTS
   Navigation, Hero, Services, About, 
   CTA, Footer
   =================================== */

/* ---- NAVIGATION ---- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav.scrolled {
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}

.nav-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav-logo-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 2.1rem;
  letter-spacing: 0.04em;
  color: var(--warm-white);
  transition: color 0.5s;
  line-height: 1.15;
}

.nav-logo-tagline {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.92rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color 0.5s;
  margin-top: 2px;
}

.nav.scrolled .nav-logo-name {
  color: var(--charcoal);
}

.nav.scrolled .nav-logo-tagline {
  color: var(--sage);
}

.nav-links {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 16px;
  margin-right: 0;
  vertical-align: middle;
  -webkit-mask-image: url("/assets/nav-plant.svg");
  mask-image: url("/assets/nav-plant.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: rgba(255,255,255,0.85);
  opacity: 0;
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1), margin-right 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}

.nav-links a:hover::before {
  width: 16px;
  margin-right: 6px;
  opacity: 1;
}

.nav.scrolled .nav-links a::before {
  background-color: var(--sage-dark);
}

.nav-links a::after {
  display: none;
}

.nav-links a:hover {
  transition: color 0.35s;
}

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

.nav.scrolled .nav-links a:hover {
  color: var(--gold) !important;
}

.nav-cta {
  font-family: var(--font-body) !important;
  font-weight: 500 !important;
  font-size: 0.9rem !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase;
  padding: 12px 28px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 0;
  transition: all 0.4s !important;
}

.nav-cta:hover {
  background: var(--sage);
  border-color: var(--sage);
  color: white !important;
}

.nav.scrolled .nav-cta {
  border-color: var(--sage);
  color: var(--sage-dark) !important;
}

/* Mobile menu */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 5px;
}

.nav-hamburger span {
  width: 24px;
  height: 1.5px;
  background: var(--warm-white);
  transition: all 0.3s;
}

.nav.scrolled .nav-hamburger span {
  background: var(--charcoal);
}

/* ---- HERO ---- */

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
}

.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(30, 30, 25, 0.15) 0%,
    rgba(30, 30, 25, 0.1) 40%,
    rgba(30, 30, 25, 0.45) 70%,
    rgba(30, 30, 25, 0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(30px, 5vw, 80px);
  padding-bottom: clamp(60px, 8vh, 120px);
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  animation: fadeUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

.hero-top-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: white;
  background: rgba(90, 107, 79, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 10px 24px;
  border-radius: 4px;
  margin-bottom: 28px;
}

.hero-content h1 {
  color: white;
  font-weight: 300;
  margin-bottom: 20px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.15);
}

.hero-content h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
}

.hero-subtitle {
  color: rgba(255,255,255,0.8);
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  font-weight: 300;
  max-width: 55ch;
  margin: 0 auto;
  line-height: 1.8;
}

.hero-badge {
  display: none;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  right: clamp(30px, 5vw, 80px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: gentlePulse 3s ease-in-out infinite;
}

.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}

/* ---- INTRO / PHILOSOPHY ---- */

.intro {
  padding: var(--section-pad) 0;
  background: var(--cream);
  position: relative;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.intro-text h2 {
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.intro-text h2 em {
  font-style: italic;
  color: var(--sage-dark);
}

.intro-text p {
  color: var(--charcoal-light);
  margin-bottom: 1.2rem;
}

.intro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  color: var(--sage-dark);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-light);
  font-weight: 400;
}

.intro-image {
  position: relative;
  border-radius: 0;
}

.intro-image img {
  width: 100%;
  height: clamp(400px, 50vw, 600px);
  object-fit: cover;
}

.intro-image::after {
  content: '';
  position: absolute;
  top: 20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--sage-light);
  z-index: -1;
  opacity: 0.4;
}

/* ---- SERVICES ---- */

.services {
  padding: var(--section-pad) 0;
  background: var(--sand-light);
  position: relative;
}

.services-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 80px;
}

.services-header .section-label {
  justify-content: center;
  font-size: 1rem;
  letter-spacing: 0.25em;
}

.services-header .section-label::before {
  display: none;
}

.services-header h2 {
  margin-bottom: 1rem;
}

.services-header p {
  margin: 0 auto;
  color: var(--charcoal-light);
}

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

.service-card {
  background: var(--warm-white);
  overflow: hidden;
  position: relative;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.service-card-image {
  height: 320px;
  overflow: hidden;
  position: relative;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover .service-card-image img {
  transform: scale(1.06);
}

.service-card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(transparent, rgba(0,0,0,0.05));
}

.service-card-body {
  padding: 35px 30px 40px;
}

.service-card-number {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--sage);
  margin-bottom: 12px;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.service-card-body h3 {
  margin-bottom: 15px;
  color: var(--charcoal);
  font-weight: 400;
}

.service-card-body p {
  font-size: 0.92rem;
  color: var(--charcoal-light);
  line-height: 1.7;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 25px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-dark);
  transition: gap 0.3s;
}

.service-card:hover .service-card-link {
  gap: 14px;
}

.service-card-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}

.service-card:hover .service-card-link svg {
  transform: translateX(3px);
}

/* ---- ADDITIONAL SERVICES STRIP ---- */

.extras {
  padding: 70px 0;
  background: var(--sand);
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.extras-inner {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.extras-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 30px;
}

.extras-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px 16px;
}

.extras-item {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: 0.01em;
  padding: 12px 24px;
  background: var(--warm-white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.extras-item:hover {
  background: var(--sage-dark);
  color: white;
  border-color: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(90,107,79,0.2);
}

.extras-divider {
  display: none;
}

@media (max-width: 768px) {
  .extras {
    padding: 40px 0;
  }
  .extras-item {
    font-size: 0.95rem;
  }
}

/* ---- ABOUT ---- */

.about {
  padding: var(--section-pad) 0;
  background: var(--cream);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(50px, 7vw, 120px);
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  position: relative;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: clamp(450px, 55vw, 650px);
  object-fit: cover;
}

.about-image-accent {
  position: absolute;
  bottom: -15px;
  left: -15px;
  width: 120px;
  height: 120px;
  border: 1px solid var(--sage-light);
  opacity: 0.5;
}

.about-content h2 {
  margin-bottom: 1.5rem;
  color: var(--charcoal);
}

.about-content h2 em {
  font-style: italic;
  color: var(--sage-dark);
}

.about-content p {
  color: var(--charcoal-light);
  margin-bottom: 1.2rem;
}

.about-signature {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.about-signature-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 400;
  color: var(--sage-dark);
}

.about-signature-title {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-light);
  margin-top: 4px;
}

/* ---- TESTIMONIAL / QUOTE ---- */

.testimonial {
  padding: var(--section-pad) 0;
  background: var(--moss);
  position: relative;
  overflow: hidden;
}

.testimonial::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.testimonial-content {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 6rem;
  color: rgba(255,255,255,0.15);
  line-height: 1;
  margin-bottom: -30px;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  color: white;
  line-height: 1.5;
  margin-bottom: 35px;
}

.testimonial-divider {
  width: 50px;
  height: 1px;
  background: rgba(255,255,255,0.3);
  margin: 0 auto 25px;
}

.testimonial-note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  font-style: italic;
}

/* ---- CTA ---- */

.cta {
  padding: var(--section-pad) 0;
  background: var(--sand);
  position: relative;
}

.cta-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-inner h2 {
  margin-bottom: 1.2rem;
}

.cta-inner h2 em {
  font-style: italic;
  color: var(--sage-dark);
}

.cta-inner p {
  margin: 0 auto 40px;
  color: var(--charcoal-light);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--sage-dark);
  color: white;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-primary:hover {
  background: var(--moss);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(74, 93, 62, 0.25);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: transparent;
  color: var(--charcoal);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--charcoal-light);
  cursor: pointer;
  transition: all 0.4s;
}

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

.cta-contact-info {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid rgba(0,0,0,0.08);
  flex-wrap: wrap;
}

.cta-contact-item {
  text-align: center;
}

.cta-contact-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 6px;
  font-weight: 500;
}

.cta-contact-value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--charcoal);
}

.cta-contact-value a {
  transition: color 0.3s;
}

.cta-contact-value a:hover {
  color: var(--sage-dark);
}

/* ---- FOOTER ---- */

.footer {
  padding: 50px 0;
  background: var(--charcoal);
  color: rgba(255,255,255,0.5);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
}

.footer-info {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}

.footer-location {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 6px;
}
