:root {
  --gold: #c8a84b;
  --leaf: #7caf7c;
  --dark: #080c08;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Lora", serif;
  background: #080c08;
  color: #f0ead8;
  overflow-x: hidden;
}

/* Navbar */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(8, 12, 8, 0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(200, 168, 75, 0.1);
  animation: slideDown 0.6s ease-out;
}

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

.nav-links a {
  color: rgba(240, 234, 216, 0.8);
  text-decoration: none;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}

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

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-contact {
  background: var(--gold);
  color: #000 !important;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.88rem;
  transition: all 0.3s;
  border: 2px solid var(--gold);
}

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

.font-display {
  font-family: "Cinzel", serif;
  font-weight: 900;
}

.font-serif {
  font-family: "Lora", serif;
}

/* Hero Section */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 7rem 3rem 5rem;
  position: relative;
  overflow: hidden;
}

.bg-layer {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 70% 40%,
      rgba(45, 74, 45, 0.35) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 20% 80%,
      rgba(26, 46, 26, 0.5) 0%,
      transparent 50%
    ),
    linear-gradient(160deg, #080c08 0%, #0d1a0d 40%, #111e11 60%, #080c08 100%);
}

.grid-texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 80px,
      rgba(74, 124, 74, 0.03) 80px,
      rgba(74, 124, 74, 0.03) 81px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 80px,
      rgba(74, 124, 74, 0.03) 80px,
      rgba(74, 124, 74, 0.03) 81px
    );
}

.leaves-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.leaf {
  position: absolute;
  border-radius: 0 80% 0 80%;
  transform-origin: center center;
}

.content {
  position: relative;
  z-index: 10;
}

.hero-logo {
  text-align: center;
  margin-bottom: 2rem;
  animation: fadeUp 0.8s forwards 0.2s;
  opacity: 0;
}

.hero-logo img {
  height: 180px;
  width: auto;
  filter: drop-shadow(0 0 20px rgba(200, 168, 75, 0.4));
}

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

h1 {
  font-size: clamp(80px, 14vw, 180px);
  line-height: 0.9;
  color: white;
  animation: fadeUp 0.8s forwards 0.5s;
  opacity: 0;
  position: relative;
}

.headline-wrapper {
  position: relative;
  display: inline-block;
}

.headline-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.headline-text:nth-child(1) {
  position: relative;
  animation: fadeOutText 3s ease-in-out forwards;
  animation-delay: 2s;
}

.headline-text:nth-child(2) {
  opacity: 0;
  animation: fadeInText 3s ease-in-out forwards;
  animation-delay: 2s;
}

.hero-license {
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 500;
  color: rgba(240, 234, 216, 0.8);
  margin-top: 0.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeUp 0.8s forwards 0.55s;
  opacity: 0;
}

.hero-phone {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  color: var(--gold);
  margin-top: 1.5rem;
  letter-spacing: 0.05em;
  animation: fadeUp 0.8s forwards 0.6s;
  opacity: 0;
}

.hero-phone a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

.hero-phone a:hover {
  color: var(--leaf);
}

.subtitle {
  font-style: italic;
  margin-top: 1.5rem;
  max-width: 32rem;
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.7;
  color: rgba(240, 234, 216, 0.65);
  animation: fadeUp 0.8s forwards 0.7s;
  opacity: 0;
}

.buttons {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  margin-top: 2.5rem;
  animation: fadeUp 0.8s forwards 0.9s;
  opacity: 0;
}

.btn-primary {
  background: var(--gold);
  color: #0a0e0a;
  padding: 1rem 2rem;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.875rem;
  transition: all 0.3s;
  border: 2px solid var(--gold);
  display: inline-block;
}

.btn-primary:hover {
  background: transparent;
  color: var(--gold);
}

.btn-ghost {
  background: var(--gold);
  color: #0a0e0a;
  padding: 1rem 2rem;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.875rem;
  border: 2px solid var(--gold);
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-ghost:hover {
  background: transparent;
  color: var(--gold);
}

.stats-bar {
  position: absolute;
  bottom: 5rem;
  right: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  z-index: 10;
}

.stat {
  text-align: right;
  opacity: 0;
  transform: translateY(100vh);
  animation: rollUpAndOut 26s ease-in-out forwards;
}

.stat:nth-child(1) {
  animation-delay: 0s;
}

.stat:nth-child(2) {
  animation-delay: 2s;
}

.stat:nth-child(3) {
  animation-delay: 3.5s;
}

.stat-number {
  font-size: 6.5rem;
  color: var(--gold);
  line-height: 1;
  font-weight: 700;
}

.stat-label {
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.5rem;
  color: rgba(240, 234, 216, 0.6);
}

/* Services Section */
#services {
  padding: 8rem 3rem;
  background: linear-gradient(180deg, #080c08 0%, #0d1a0d 50%, #080c08 100%);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

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

.section-title {
  font-family: "Cinzel", serif;
  font-size: clamp(48px, 8vw, 72px);
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
}

.section-description {
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(240, 234, 216, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: rgba(26, 46, 26, 0.2);
  border: 1px solid rgba(124, 175, 124, 0.2);
  padding: 2.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.service-title {
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
}

.service-description {
  color: rgba(240, 234, 216, 0.7);
  line-height: 1.7;
}

/* Portfolio Section */
#portfolio {
  padding: 8rem 3rem;
  background: #080c08;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.portfolio-item {
  position: relative;
  height: 400px;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(26, 46, 26, 0.3),
    rgba(45, 74, 45, 0.2)
  );
  border: 1px solid rgba(124, 175, 124, 0.2);
  cursor: pointer;
  transition: all 0.4s ease;
}

.portfolio-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(8, 12, 8, 0.9) 100%);
  z-index: 1;
  transition: opacity 0.4s;
}

.portfolio-item:hover::before {
  opacity: 0.5;
}

.portfolio-item:hover {
  border-color: var(--gold);
  transform: scale(1.02);
}

.portfolio-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  z-index: 2;
}

.portfolio-title {
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 0.5rem;
}

.portfolio-category {
  color: var(--gold);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* About Section */
#about {
  padding: 8rem 3rem;
  background: linear-gradient(180deg, #080c08 0%, #0d1a0d 100%);
}

.about-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  width: 100%;
  height: 500px;
  background: linear-gradient(
    135deg,
    rgba(45, 74, 45, 0.3),
    rgba(26, 46, 26, 0.3)
  );
  border: 1px solid rgba(124, 175, 124, 0.3);
  position: relative;
  overflow: hidden;
}

.about-content .video-container {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(200, 168, 75, 0.3);
}

.about-content .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.about-text h2 {
  font-family: "Cinzel", serif;
  font-size: clamp(36px, 6vw, 54px);
  color: white;
  margin-bottom: 1.5rem;
}

.about-text p {
  color: rgba(240, 234, 216, 0.7);
  line-height: 1.8;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.about-stat {
  text-align: center;
}

.about-stat-number {
  font-family: "Cinzel", serif;
  font-size: 3rem;
  color: var(--gold);
  font-weight: 700;
}

.about-stat-label {
  color: rgba(240, 234, 216, 0.6);
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}

/* Testimonials Section */
#testimonials {
  padding: 8rem 3rem;
  background: #080c08;
}

.testimonials-container {
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(26, 46, 26, 0.2);
  border: 1px solid rgba(124, 175, 124, 0.2);
  padding: 3rem;
  margin-bottom: 2rem;
  position: relative;
}

.testimonial-quote {
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.8;
  color: rgba(240, 234, 216, 0.8);
  margin-bottom: 2rem;
}

.testimonial-quote::before {
  content: '"';
  font-size: 4rem;
  color: var(--gold);
  position: absolute;
  top: 1rem;
  left: 2rem;
  opacity: 0.3;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--leaf));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
  color: #080c08;
  font-weight: 700;
}

.testimonial-info h4 {
  color: white;
  font-family: "Cinzel", serif;
  margin-bottom: 0.25rem;
}

.testimonial-info p {
  color: var(--gold);
  font-size: 0.875rem;
}

.stars {
  color: var(--gold);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

/* Video Testimonial Section */
#video-testimonial {
  padding: 8rem 3rem;
  background: linear-gradient(180deg, #0d1a0d 0%, #080c08 100%);
}

.video-container {
  max-width: 900px;
  margin: 3rem auto 0;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(200, 168, 75, 0.3);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Contact Section */
#contact {
  padding: 8rem 3rem;
  background: linear-gradient(180deg, #080c08 0%, #0d1a0d 100%);
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-form {
  display: grid;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

label {
  color: rgba(240, 234, 216, 0.8);
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

input,
textarea,
select {
  background: rgba(26, 46, 26, 0.2);
  border: 1px solid rgba(124, 175, 124, 0.2);
  color: #f0ead8;
  padding: 1rem;
  font-family: "Lora", serif;
  font-size: 1rem;
  transition: all 0.3s;
}

select {
  background: var(--gold);
  color: #000;
  border: 1px solid var(--gold);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(26, 46, 26, 0.3);
}

select:focus {
  background: var(--gold);
  opacity: 0.9;
}

textarea {
  resize: vertical;
  min-height: 150px;
}

.submit-btn {
  background: var(--gold);
  color: #0a0e0a;
  padding: 1.25rem 3rem;
  border: 2px solid var(--gold);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  font-family: "Cinzel", serif;
}

.submit-btn:hover {
  background: transparent;
  color: var(--gold);
}

/* Footer */
footer {
  background: rgba(8, 12, 8, 0.95);
  border-top: 1px solid rgba(200, 168, 75, 0.2);
  padding: 4rem 3rem 4rem;
}

.footer-logo {
  text-align: center;
  margin-bottom: 3rem;
}

.footer-logo img {
  height: 120px;
  width: auto;
  filter: drop-shadow(0 0 20px rgba(200, 168, 75, 0.4));
  margin-bottom: 1.5rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  font-family: "Cinzel", serif;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.footer-section:first-child {
  padding-right: 3rem;
}

.footer-section p,
.footer-section a {
  color: rgba(240, 234, 216, 0.7);
  line-height: 1.8;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(200, 168, 75, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: rgba(240, 234, 216, 0.5);
  font-size: 0.875rem;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

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

@keyframes rollUpAndOut {
  0% {
    opacity: 0;
    transform: translateY(100vh);
  }
  8% {
    opacity: 1;
  }
  35% {
    opacity: 1;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
  }
  65% {
    opacity: 0;
    transform: translateY(-120vh);
  }
  70% {
    opacity: 0;
    transform: translateY(-120vh);
  }
  85% {
    opacity: 0;
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes sway1 {
  0%,
  100% {
    transform: rotate(-20deg);
  }
  50% {
    transform: rotate(-35deg);
  }
}

@keyframes sway2 {
  0%,
  100% {
    transform: rotate(-35deg);
  }
  50% {
    transform: rotate(-50deg);
  }
}

@keyframes sway3 {
  0%,
  100% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(-25deg);
  }
}

@keyframes fadeOutText {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.9);
  }
}

@keyframes fadeInText {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Scroll Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

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

/* Responsive */
@media (max-width: 768px) {
  nav {
    padding: 0.75rem 1rem;
  }

  .nav-links {
    gap: 0.5rem;
    font-size: 0.65rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-links li {
    flex-shrink: 0;
  }

  .nav-contact {
    padding: 0.5rem 1rem !important;
    font-size: 0.7rem !important;
    white-space: nowrap;
  }

  #hero {
    padding: 5rem 1.5rem 3rem;
    min-height: 100vh;
  }

  .hero-logo img {
    height: 120px;
  }

  h1 {
    font-size: clamp(40px, 12vw, 80px) !important;
  }

  .headline-wrapper {
    text-align: center;
  }

  .hero-phone {
    font-size: clamp(20px, 5vw, 28px) !important;
  }

  .stats-bar {
    position: static;
    margin-top: 3rem;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .stat {
    text-align: left;
  }

  .stat-number {
    font-size: 3rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }

  .buttons {
    flex-direction: column;
    align-items: stretch;
  }

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

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

  #services,
  #portfolio,
  #about,
  #testimonials,
  #contact {
    padding: 4rem 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .modal-close {
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    z-index: 1001;
  }

  .modal-overlay {
    padding: 1rem;
    padding-top: 5rem;
  }

  .modal-content {
    margin-top: 2rem;
  }

  .modal-header {
    margin-bottom: 1.5rem;
  }

  .modal-title {
    font-size: 1.5rem;
  }
}

/* Custom Cursor */
body {
  cursor: none;
}

.cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition:
    transform 0.15s ease-out,
    opacity 0.3s ease;
  transform: translate(-50%, -50%);
}

.cursor-follower {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(200, 168, 75, 0.3);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition:
    transform 0.25s ease-out,
    width 0.3s ease,
    height 0.3s ease,
    opacity 0.3s ease;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(200, 168, 75, 0.1) 0%,
    transparent 70%
  );
}

.cursor.hover {
  transform: translate(-50%, -50%) scale(0.5);
  background: var(--gold);
}

.cursor-follower.hover {
  width: 60px;
  height: 60px;
  border-color: var(--gold);
  background: radial-gradient(
    circle,
    rgba(200, 168, 75, 0.2) 0%,
    transparent 70%
  );
}

.cursor.hidden,
.cursor-follower.hidden {
  opacity: 0;
}

a,
button,
input,
textarea,
select,
.nav-contact,
.service-card,
.portfolio-item,
.testimonial-card,
.submit-btn {
  cursor: none;
}

/* Modal/Lightbox Styles */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(8, 12, 8, 0.95);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  max-width: 1400px;
  width: 100%;
  position: relative;
  animation: slideUp 0.4s ease;
}

.modal-header {
  text-align: center;
  margin-bottom: 2rem;
}

.modal-title {
  font-family: "Cinzel", serif;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.modal-category {
  color: rgba(240, 234, 216, 0.7);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.modal-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.modal-image-wrapper {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 2px solid var(--gold);
  border-radius: 4px;
}

.modal-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-image-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(8, 12, 8, 0.9);
  color: var(--gold);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
}

.modal-close {
  position: absolute;
  top: -3rem;
  right: 0;
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.modal-close:hover {
  background: var(--gold);
  color: #080c08;
  transform: rotate(90deg);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .modal-images {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .modal-overlay {
    padding: 1rem;
  }

  .modal-content {
    padding-top: 3rem;
  }

  .modal-close {
    position: fixed;
    top: 5rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    z-index: 1001;
  }

  .modal-header {
    margin-top: 1rem;
  }
}

/* Utility Classes */
.leaf-1 {
  width: 300px;
  height: 500px;
  top: -100px;
  right: 5%;
  background: rgba(74, 124, 74, 0.08);
  animation: sway1 8s ease-in-out infinite;
}

.leaf-2 {
  width: 200px;
  height: 350px;
  top: 50px;
  right: 18%;
  background: rgba(74, 124, 74, 0.12);
  animation: sway2 9s ease-in-out infinite;
  animation-delay: -2s;
}

.leaf-3 {
  width: 400px;
  height: 600px;
  top: -200px;
  right: -5%;
  background: rgba(74, 124, 74, 0.15);
  animation: sway3 10s ease-in-out infinite;
  animation-delay: -4s;
}

.text-leaf {
  color: var(--leaf);
}

.text-gold {
  color: var(--gold);
}

.headline-dot {
  display: inline-block;
  width: 0.15em;
  height: 0.15em;
  background-color: var(--gold);
  vertical-align: middle;
  margin-top: -0.5em;
}

.portfolio-modern-look {
  background-image: url("images/Modern Look.jpg");
  background-size: cover;
  background-position: center;
}

.portfolio-backyard-paradise {
  background-image: url("images/Backyard Paradise.jpg");
  background-size: cover;
  background-position: center;
}

.portfolio-elegant-entry {
  background-image: url("images/Elegant Entry.jpg");
  background-size: cover;
  background-position: center;
}

.portfolio-luxury-landscape {
  background-image: url("images/Luxury Landscape.jpeg");
  background-size: cover;
  background-position: center;
}

.portfolio-water-feature {
  background-image: url("images/Tranquil Water Feature.jpeg");
  background-size: cover;
  background-position: center;
}

.portfolio-sod-oasis {
  background-image: url("images/Natural SOD Oasis.jpeg");
  background-size: cover;
  background-position: center;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-05 {
  margin-top: 0.5rem;
}
