/* =============================================
   CUSTOM PROPERTIES
   ============================================= */
:root {
  --green-dark:   #1e3a2a;
  --green-mid:    #3a5c45;
  --green-accent: #5a8a6a;
  --gold:         #c9a84c;
  --gold-light:   #e8c96d;
  --cream:        #f5f0e8;
  --charcoal:     #1e1e1e;
  --text-dark:    #2c2c2c;
  --text-muted:   #6b7280;
  --white:        #ffffff;
  --gray-bg:      #f9f9f7;
  --border:       #e5e7eb;
  --shadow:       0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg:    0 8px 48px rgba(0, 0, 0, 0.14);
  --radius:       12px;
  --radius-lg:    20px;
  --transition:   all 0.3s ease;
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-sans:    'Inter', system-ui, sans-serif;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

p, h1, h2, h3, h4, li, a, span, label {
  overflow-wrap: break-word;
  word-break: break-word;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* =============================================
   LAYOUT UTILITIES
   ============================================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

section[id] {
  scroll-margin-top: 100px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-accent);
  margin-bottom: 12px;
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--charcoal);
  margin-bottom: 0;
  line-height: 1.2;
}

.section-header h2::after,
.about-text--centered h2::after {
  content: '';
  display: block;
  width: 44px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 14px auto 0;
}

.section-header .section-sub {
  margin-top: 20px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  background: rgba(30, 30, 30, 0.45);
  backdrop-filter: blur(12px);
  transition: var(--transition);
}

.navbar.shrunk {
  padding: 8px 0;
}

.navbar.scrolled {
  background: rgba(30, 30, 30, 0.97);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 82px;
  width: auto;
}

.hero-bull-logo {
  width: 140px;
  height: auto;
  margin: 0 auto 24px;
  display: block;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.4));
}

.footer-logo-img {
  height: 110px;
  width: auto;
  display: block;
  margin: 0 auto 10px;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: flex-end;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: var(--transition);
  position: relative;
  padding: 6px 14px;
  border-radius: 6px;
}

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--charcoal) !important;
  padding: 10px 22px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  transition: var(--transition) !important;
}

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

.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 14px rgba(201, 168, 76, 0.4) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

.hero-bg {
  position: absolute;
  inset: 0;
  /* Swap this for a real photo: background-image: url('../images/hero.jpg'); */
  background-image: url('../assets/stockpatio.jpg');
  background-size: cover;
  background-position: left center;
  background-position: center;
  transform: scale(1.06);
  transition: transform 1.2s ease;
}

.hero-bg.loaded {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.76) 0%, rgba(0,0,0,0.68) 50%, rgba(0,0,0,0.88) 100%),
    radial-gradient(ellipse at bottom right, rgba(0,0,0,0.6) 0%, transparent 65%);
}

.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 85%, rgba(90, 138, 106, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 85% 15%, rgba(201, 168, 76, 0.08) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
  padding: 0 24px;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-content h1 .accent {
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.78);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-down {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.45);
  font-size: 1.1rem;
  animation: bounce 2s infinite;
  transition: color 0.3s;
  z-index: 1;
}

.scroll-down:hover {
  color: var(--gold);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* =============================================
   SERVICES
   ============================================= */
.services-section {
  background: var(--gray-bg);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: var(--transition);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-mid), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

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

.service-icon {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon i {
  font-size: 1.35rem;
  color: var(--gold);
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* =============================================
   ABOUT
   ============================================= */
.about-section {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text--centered {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.about-text--centered .section-eyebrow {
  text-align: center !important;
}

.about-text--centered .about-stats {
  justify-content: center;
}

.about-text--centered .btn {
  margin: 0 auto;
  display: inline-flex;
}

.about-text .section-eyebrow {
  text-align: left;
}

.about-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 24px;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.75;
}

.about-stats {
  display: flex;
  gap: 36px;
  margin: 36px 0;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.about-image {
  position: relative;
}

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--green-dark), var(--green-accent));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.img-placeholder-content {
  text-align: center;
  color: rgba(255, 255, 255, 0.35);
}

.img-placeholder-content i {
  font-size: 3rem;
  display: block;
  margin-bottom: 12px;
}

.img-placeholder-content span {
  font-size: 0.88rem;
}

.about-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--gold);
  color: var(--charcoal);
  padding: 16px 24px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: var(--shadow);
}

/* =============================================
   GALLERY
   ============================================= */
.gallery-section {
  background: #1e1e1e;
}

.gallery-section .section-eyebrow { color: var(--gold); }
.gallery-section h2               { color: var(--white); }
.gallery-section h2::after        { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.gallery-section .section-sub     { color: rgba(255, 255, 255, 0.55); }

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

.gallery-item--large {
  grid-column: span 2;
}

.gallery-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item--large .gallery-img {
  aspect-ratio: 16 / 9;
}

.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-img:hover img {
  transform: scale(1.05);
}

.gallery-img {
  cursor: pointer;
}

.gallery-note {
  text-align: center;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.85rem;
  margin-top: 24px;
  font-style: italic;
}

/* =============================================
   ECO STRIP
   ============================================= */
.eco-strip {
  background: var(--green-dark);
  padding: 64px 0;
}

.eco-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.eco-heading {
  text-align: center;
}

.eco-heading > i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.eco-heading h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--white);
  margin-bottom: 10px;
}

.eco-heading p {
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  max-width: 480px;
  margin: 0 auto;
}

.eco-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 700px;
}

.eco-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 16px 20px;
}

.eco-item i {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.eco-item span {
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  line-height: 1.5;
}

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

/* Conservation footer link */
.footer-webad {
  padding-bottom: 4px;
}

.webad-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.35);
  font-size: 0.78rem;
  transition: color 0.3s;
}

.webad-link i {
  font-size: 0.8rem;
  opacity: 0.6;
}

.webad-favicon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  opacity: 0.85;
  border-radius: 3px;
}

.webad-link:hover {
  color: rgba(255,255,255,0.65);
}

.webad-link strong {
  color: rgba(255,255,255,0.6);
  font-weight: 600;
}

.footer-conservation {
  padding-bottom: 8px;
}

.conservation-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
  transition: color 0.3s;
}

.conservation-link i {
  color: var(--gold);
  opacity: 0.6;
  font-size: 0.9rem;
}

.conservation-link:hover {
  color: rgba(255,255,255,0.75);
}

.conservation-link:hover i {
  opacity: 1;
}

/* =============================================
   LOCATIONS
   ============================================= */
.locations-strip {
  background: var(--gray-bg);
  padding: 72px 0;
}

.locations-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--charcoal);
  text-align: center;
  margin-bottom: 40px;
}

.locations-heading::after {
  content: '';
  display: block;
  width: 44px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 14px auto 0;
}

.locations-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
}

.location-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 10px 22px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.location-item i {
  color: var(--gold);
  font-size: 0.85rem;
}

.location-item:hover {
  border-color: var(--green-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.locations-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-style: italic;
}

/* =============================================
   REVIEW STRIP
   ============================================= */
.review-strip {
  background: var(--green-dark);
  padding: 52px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.review-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  text-align: center;
}

.review-stars {
  display: flex;
  gap: 6px;
}

.review-stars i {
  font-size: 1.6rem;
  color: var(--gold);
  animation: starPop 0.4s ease both;
}

.review-stars i:nth-child(1) { animation-delay: 0.05s; }
.review-stars i:nth-child(2) { animation-delay: 0.10s; }
.review-stars i:nth-child(3) { animation-delay: 0.15s; }
.review-stars i:nth-child(4) { animation-delay: 0.20s; }
.review-stars i:nth-child(5) { animation-delay: 0.25s; }

@keyframes starPop {
  0%   { transform: scale(0.5); opacity: 0; }
  70%  { transform: scale(1.2); }
  100% { transform: scale(1);   opacity: 1; }
}

.review-text h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 6px;
}

.review-text p {
  color: rgba(255,255,255,0.55);
  font-size: 0.92rem;
}

.review-btn {
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .review-strip-inner { gap: 24px; flex-direction: column; align-items: center; }
  .location-item { font-size: min(0.88rem, 4vw); }
}

/* =============================================
   CONTACT
   ============================================= */
.contact-section {
  background: var(--gray-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-eyebrow {
  text-align: left;
}

.contact-info h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--charcoal);
  margin-bottom: 16px;
  line-height: 1.2;
}

.contact-info > p {
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item i {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  color: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.contact-item div {
  display: flex;
  flex-direction: column;
}

.contact-item .label {
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-item a,
.contact-item span:last-child {
  color: var(--charcoal);
  font-weight: 500;
  transition: color 0.3s;
}

.contact-item a:hover {
  color: var(--green-accent);
}

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

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

.form-group label {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-accent);
  box-shadow: 0 0 0 3px rgba(90, 138, 106, 0.15);
}

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

.checkbox-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.checkbox-pill {
  cursor: pointer;
}

.checkbox-pill input {
  display: none;
}

.checkbox-pill span {
  display: inline-block;
  padding: 9px 18px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--white);
  transition: var(--transition);
  user-select: none;
}

.checkbox-pill:hover span {
  border-color: var(--green-accent);
  color: var(--green-accent);
}

.checkbox-pill input:checked + span {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
}

.form-success {
  text-align: center;
  padding: 48px 20px;
}

.form-success i {
  font-size: 3.2rem;
  color: var(--green-accent);
  margin-bottom: 16px;
  display: block;
}

.form-success h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--text-muted);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--charcoal);
  padding: 60px 0 28px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.87rem;
  max-width: 360px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.87rem;
  transition: color 0.3s;
}

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

.footer-badge img {
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-badge img:hover {
  opacity: 0.9;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  width: 100%;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.28);
  font-size: 0.82rem;
}

/* =============================================
   SERVICE MODALS
   ============================================= */
.service-card--clickable {
  cursor: pointer;
}

.service-card--clickable:hover .card-learn-more {
  color: var(--gold);
  gap: 10px;
}

.card-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: var(--transition);
}

.card-learn-more i {
  font-size: 0.75rem;
  transition: var(--transition);
}

.service-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1500;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.service-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.service-modal {
  background: var(--gray-bg);
  width: 100%;
  max-width: 860px;
  max-height: 88vh;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
  position: relative;
  display: flex;
  flex-direction: column;
}

.service-modal-scroll {
  overflow-y: auto;
  flex: 1;
}

.service-modal-overlay.active .service-modal {
  transform: translateY(0);
}

.service-modal-scroll {
  scrollbar-width: none;
}

.service-modal-scroll::-webkit-scrollbar {
  display: none;
}

.custom-scrollbar {
  position: absolute;
  top: 16px;
  right: 10px;
  bottom: 16px;
  width: 4px;
  border-radius: 99px;
  pointer-events: none;
}

.custom-scrollbar-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(45, 106, 79, 0.4);
  border-radius: 99px;
  min-height: 32px;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.service-modal-close {
  position: absolute;
  top: 14px;
  right: 22px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
  transition: var(--transition);
  z-index: 10;
}

.service-modal-close:hover {
  background: #d1d5db;
  color: var(--charcoal);
}

.service-modal-body {
  padding: 8px 40px 48px;
  clear: both;
}

.modal-icon {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.modal-icon i {
  font-size: 1.4rem;
  color: var(--gold);
}

.service-modal-body h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.modal-intro {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 24px;
}

.modal-section {
  margin-bottom: 28px;
}

.modal-section h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--green-dark);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.modal-section p {
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 0.93rem;
}

.modal-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-section ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-dark);
  font-size: 0.93rem;
}

.modal-section ul li i {
  color: var(--green-accent);
  font-size: 0.8rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.modal-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 32px;
  border-radius: var(--radius);
  overflow: hidden;
}

.modal-photo {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

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

.modal-photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: rgba(255,255,255,0.35);
}

.modal-photo-placeholder i { font-size: 1.4rem; }
.modal-photo-placeholder span { font-size: 0.72rem; }

@media (max-width: 480px) {
  .modal-photos { grid-template-columns: 1fr 1fr; }
  .modal-photos .modal-photo:last-child { display: none; }
}

.modal-cta {
  margin-top: 12px;
  display: inline-flex;
}

@media (min-width: 769px) {
  .service-modal-overlay { align-items: center; }
  .service-modal {
    border-radius: var(--radius-lg);
    transform: none;
    transition: none;
    max-height: 84vh;
    max-width: 860px;
  }
  .service-modal-overlay.active .service-modal {
    transform: none;
  }
}

@media (max-width: 768px) {
  .service-modal-body { padding: 8px 22px 40px; }
  .service-modal-body h2 { font-size: 1.5rem; }
}

/* =============================================
   LIGHTBOX
   ============================================= */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img-wrap img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 8px 60px rgba(0, 0, 0, 0.6);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background 0.2s ease;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.22);
}

.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev  { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 20px; top: 50%; transform: translateY(-50%); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .about-grid   { gap: 48px; }
  .contact-grid { gap: 48px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  /* Prevent ANY element from busting out of the viewport */
  * { max-width: 100%; }

  /* Cap font sizes so large system fonts don't break layout */
  h1 { font-size: min(2.2rem, 10vw) !important; }
  h2 { font-size: min(1.7rem, 8vw) !important; }
  h3 { font-size: min(1rem, 5vw) !important; }
  p  { font-size: min(0.95rem, 4.5vw) !important; }

  /* Mobile nav */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #1e1e1e;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 36px 36px;
    gap: 4px;
    transition: right 0.35s ease;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.2);
    z-index: 999;
  }

  .nav-links.open { right: 0; }

  .nav-links li { width: 100%; }

  .nav-links a {
    font-size: 1rem;
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    display: block;
    border-radius: 0;
    background: none !important;
  }

  .nav-cta {
    margin-top: 12px;
    display: block !important;
    text-align: center;
    border-radius: 8px !important;
  }


  .hamburger { display: flex; }

  .nav-logo-img { height: 60px; }

  /* Sections */
  .services-grid {
    gap: 14px;
    max-width: 100%;
  }

  .services-grid > *,
  .gallery-grid > *,
  .locations-grid > * {
    min-width: 0;
  }

  .service-card {
    padding: 24px 18px;
    overflow: hidden;
  }

  .service-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 14px;
  }

  .service-icon i { font-size: 1.1rem; }

  .service-card h3 { font-size: 1rem; }

  .service-card > p { display: none; }
  .about-grid     { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid   { grid-template-columns: 1fr; gap: 48px; }
  .form-row       { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .about-stats    { gap: 20px; }
  .about-badge    { bottom: -12px; left: 12px; }

  .gallery-grid           { grid-template-columns: 1fr 1fr; }
  .gallery-item--large    { grid-column: span 2; }
}

@media (max-width: 480px) {
  .hero-btns              { flex-direction: column; align-items: center; }
  .gallery-grid           { grid-template-columns: 1fr; }
  .gallery-item--large    { grid-column: span 1; }
}
