@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Raleway:wght@300;400;500;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --black: #0a0a0a;
  --dark: #111111;
  --dark-panel: rgba(10, 10, 10, 0.88);
  --green-dark: #1e3a1e;
  --green-mid: #2d5a2d;
  --green-accent: #4a8c3f;
  --green-bright: #5cb85c;
  --gold: #c9a84c;
  --gold-light: #e0c070;
  --white: #f5f5f0;
  --white-dim: rgba(245, 245, 240, 0.85);
  --text-light: #d4d4cc;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Raleway', sans-serif;
  --header-height: 70px;
  --transition: all 0.4s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
ul { list-style: none; }

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-height);
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  z-index: 1000;
  border-bottom: 1px solid rgba(74, 140, 63, 0.2);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
  overflow: visible;
}

/* ===== TEXT BRANDING ===== */
.header-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  min-width: max-content;
  overflow: visible;
}

.header-brand-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e0c070;
}

.header-brand-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245, 245, 240, 0.85);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white-dim);
  letter-spacing: 0.05em;
}

.header-phone svg {
  width: 14px;
  height: 14px;
  fill: var(--green-accent);
}

.header-divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.2);
}

.header-socials {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: var(--white-dim);
  transition: var(--transition);
  font-size: 0.9rem;
}

.header-socials a:hover { color: var(--green-accent); }

.menu-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.5rem;
  transition: var(--transition);
}

.menu-btn:hover { color: var(--green-accent); }

.menu-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

@media (max-width: 768px) {
  .header-phone-desktop { display: none !important; }
  .header-divider { display: none !important; }
  .header-brand { min-width: unset; }

  header { padding: 0 1rem; }
  .header-right { gap: 0.5rem; flex-shrink: 0; }
  .header-logo { flex-shrink: 1; overflow: hidden; }

  .header-brand-name { font-size: 0.85rem; }
  .header-brand-sub { font-size: 0.4rem; letter-spacing: 0.1em; }

  .header-socials { gap: 0.5rem; }
  .header-socials a { width: 26px; height: 26px; }
  .header-socials svg { width: 19px !important; height: 19px !important; }

  .menu-btn { padding: 0.3rem; gap: 0; }
  .menu-btn svg { width: 22px; height: 22px; }
}

.header-call-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: var(--white-dim);
  transition: var(--transition);
  cursor: pointer;
}

.header-call-btn:hover { color: var(--green-accent); }

/* ===== CALL MODAL ===== */
.call-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.call-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.call-modal {
  background: var(--dark);
  border: 1px solid var(--gold);
  border-radius: 8px;
  padding: 2.5rem 3rem;
  text-align: center;
  transform: scale(0.9);
  transition: transform 0.3s ease;
  min-width: 300px;
}

.call-modal-overlay.active .call-modal {
  transform: scale(1);
}

.call-modal-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.call-modal-sub {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.call-modal-numbers {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.call-modal-numbers a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  transition: var(--transition);
}

.call-modal-numbers a:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--gold);
  color: var(--white);
}

.call-modal-close {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--transition);
}

.call-modal-close:hover {
  color: var(--white);
}

/* ===== SIDE MENU DRAWER ===== */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.side-menu {
  position: fixed;
  top: 0; right: 0;
  width: 50%;
  height: 100vh;
  background: var(--dark);
  z-index: 1999;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 3rem;
}

.side-menu.active {
  transform: translateX(0);
}

.side-menu-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.side-menu-logo img {
  height: 80px;
}

.side-menu-logo span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--white-dim);
  text-align: center;
}

.side-menu nav {
  width: 100%;
  text-align: center;
}

.side-menu nav a {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--white-dim);
  padding: 0.6rem 0;
  transition: var(--transition);
  position: relative;
  text-transform: capitalize;
}

.side-menu nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 1px;
  background: var(--green-accent);
  transition: width 0.3s ease;
}

.side-menu nav a:hover { color: var(--white); }
.side-menu nav a:hover::after { width: 60%; }

.menu-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none;
  border: none;
  color: var(--white-dim);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}

.menu-close:hover { color: var(--green-accent); }

/* ===== PAGE WRAPPER ===== */
.page {
  padding-top: var(--header-height);
  min-height: 100vh;
}

/* ===== SECTION LAYOUT: SPLIT (photo left, text right) ===== */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--header-height));
}

.split-photo {
  position: relative;
  overflow: hidden;
}

.split-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.split-photo .photo-placeholder {
  width: 100%;
  height: 100%;
  min-height: 500px;
  background: linear-gradient(135deg, var(--green-dark) 0%, #0d1f0d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.split-content {
  background: var(--dark-panel);
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 2rem;
}

.section-body {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-light);
  max-width: 540px;
}

.section-body p + p { margin-top: 1.2rem; }

.section-body strong {
  color: var(--white);
  font-weight: 600;
}

.section-cta {
  margin-top: 2.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-dim);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: var(--transition);
  background: none;
  border: none;
}

.section-cta:hover { color: var(--green-accent); }

.accent-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--green-accent), var(--gold));
  margin-bottom: 1.5rem;
}

/* ===== FULL-SCREEN HERO (Home) ===== */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active { opacity: 1; }

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide .slide-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.15);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-slide .slide-placeholder:nth-child(1) { background: linear-gradient(135deg, #0d1a0d, #1e3a1e); }

.slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.2) 60%),
    linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0) 100%);
}

.hero-content {
  position: absolute;
  bottom: 12%;
  left: 6%;
  max-width: 580px;
  z-index: 10;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  font-style: italic;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-explore {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-dim);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: var(--transition);
  cursor: pointer;
  background: none;
  border: none;
}

.hero-explore:hover { color: var(--green-accent); }

.hero-nav {
  position: absolute;
  bottom: 5%;
  right: 3%;
  display: flex;
  gap: 0.75rem;
  z-index: 10;
}

.hero-nav button {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(0,0,0,0.4);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 1.1rem;
}

.hero-nav button:hover {
  background: var(--green-accent);
  border-color: var(--green-accent);
}

.hero-dots {
  position: absolute;
  bottom: 6%;
  left: 6%;
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--transition);
}

.hero-dot.active {
  background: var(--green-accent);
  transform: scale(1.3);
}

/* ===== SERVICES PAGE ===== */
.services-list-section {
  min-height: calc(100vh - var(--header-height));
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.services-list-photo {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - var(--header-height));
}

.services-list-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.services-list-content {
  background: var(--dark-panel);
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.services-list-content .section-title {
  margin-bottom: 0.5rem;
}

.services-select-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  margin-top: 0.5rem;
}

.services-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 2rem;
}

.services-columns li {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-dim);
  padding: 0.3rem 0;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.services-columns li::before {
  content: '•';
  color: var(--green-accent);
  font-size: 1rem;
}

.services-columns li:hover { color: var(--white); }

/* ===== SERVICE ROW (Full-screen scroll sections) ===== */
.service-row {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
}

.service-row img.service-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s ease;
}

.service-row:hover img.service-bg {
  transform: scale(1.03);
}

.service-overlay-panel {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 45%;
  min-width: 300px;
  background: rgba(10, 10, 10, 0.88);
  padding: 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-row.panel-left .service-overlay-panel {
  right: auto;
  left: 0;
}

.service-overlay-panel h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 300;
  letter-spacing: .06em;
  color: var(--white);
  margin-bottom: .8rem;
  text-transform: uppercase;
  line-height: 1.1;
}

.service-overlay-panel p {
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-light);
}

.service-overlay-panel .view-next {
  margin-top: 1.5rem;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--white-dim);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  transition: color .3s;
}

.service-overlay-panel .view-next:hover {
  color: var(--green-accent);
}

.scroll-up-btn {
  position: absolute;
  bottom: 1.2rem;
  right: 1.2rem;
  background: none;
  border: none;
  color: var(--white-dim);
  font-size: 1.2rem;
  cursor: pointer;
  transition: color .3s;
}

.scroll-up-btn:hover { color: var(--green-accent); }

/* ===== PORTFOLIO PAGE ===== */
.portfolio-page {
  background: var(--black);
  padding: 5rem 0 4rem;
}

.portfolio-header {
  text-align: center;
  padding: 0 2rem 3rem;
}

.portfolio-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.portfolio-header p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.portfolio-accent {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--green-accent), var(--gold));
  margin: 1rem auto 0;
}

.portfolio-slider-wrap {
  position: relative;
  overflow: hidden;
  padding: 0 3rem;
}

.portfolio-track {
  display: flex;
  gap: 1.2rem;
  transition: transform 0.5s ease;
}

.portfolio-card {
  flex: 0 0 calc(25% - 0.9rem);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  background: var(--green-dark);
}

.portfolio-card img,
.portfolio-card .photo-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portfolio-card .photo-placeholder {
  background: linear-gradient(160deg, #0d1a0d, #1e3a1e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.15);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.portfolio-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  color: var(--black);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: bold;
  z-index: 10;
  transition: var(--transition);
}

.portfolio-arrow:hover { background: var(--green-accent); color: var(--white); }
.portfolio-arrow.prev { left: 0.5rem; }
.portfolio-arrow.next { right: 0.5rem; }

/* ===== TESTIMONIALS PAGE ===== */
.testimonials-section {
  min-height: calc(100vh - var(--header-height));
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.testimonials-photo {
  position: relative;
  overflow: hidden;
}

.testimonials-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  display: block;
}

.testimonials-photo .photo-placeholder {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background: linear-gradient(160deg, #0d1a0d, #1a3020);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.15);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.testimonials-content {
  background: var(--dark);
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
}

.testimonial-item {
  padding: 2rem 0 2rem 2rem;
  border-left: 2px solid var(--green-accent);
  margin-bottom: 2.5rem;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.8;
  color: var(--white-dim);
  margin-bottom: 1rem;
}

.testimonial-author {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

/* ===== CONTACT PAGE ===== */
.contact-info-section {
  min-height: calc(100vh - var(--header-height));
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.contact-form-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.contact-form-content {
  background: var(--black);
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 2.5rem;
  text-align: center;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  background: rgba(245, 245, 240, 0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  outline: none;
  transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.35);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green-accent);
  background: rgba(245, 245, 240, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.submit-btn {
  align-self: flex-end;
  padding: 0.8rem 2.5rem;
  background: var(--white);
  color: var(--black);
  border: none;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 0.5rem;
}

.submit-btn:hover {
  background: var(--green-accent);
  color: var(--white);
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.contact-detail-item svg {
  width: 18px;
  height: 18px;
  fill: var(--green-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail-item span {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.5;
}

/* ===== FOOTER ===== */
footer {
  background: var(--black);
  border-top: 1px solid rgba(74, 140, 63, 0.15);
  text-align: center;
  padding: 1.5rem 2rem;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.25);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .split-section,
  .service-detail,
  .contact-info-section,
  .contact-form-section { grid-template-columns: 1fr; }

  .split-photo,
  .service-detail-photo {
    min-height: 30vh;
    height: 40vh;
  }

  .split-content,
  .service-detail-content,
  .contact-form-content { padding: 3rem 2rem; }

  .services-list-section { grid-template-columns: 1fr; }
  .services-list-photo { min-height: 40vh; height: 40vh; }
  .services-list-content { padding: 3rem 2rem; }
  .services-columns { grid-template-columns: 1fr; }

  .testimonials-section { grid-template-columns: 1fr; }
  .testimonials-photo { min-height: 40vh; height: 40vh; }
  .testimonials-content { padding: 3rem 2rem; min-height: unset; }

  .portfolio-card { flex: 0 0 calc(50% - 0.6rem); }
  .side-menu { width: 80%; }
  .hero-content { left: 4%; max-width: 90%; }
}

@media (max-width: 768px) {
  .service-row {
    height: 100vh;
    min-height: 480px;
  }

  .service-overlay-panel,
  .service-row.panel-left .service-overlay-panel {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    min-width: unset;
    padding: 1.8rem 1.4rem 2rem;
    background: rgba(10, 10, 10, 0.85);
  }

  .service-overlay-panel h2 {
    font-size: clamp(1.1rem, 5vw, 1.5rem);
    margin-bottom: .5rem;
  }

  .service-overlay-panel p {
    font-size: .88rem;
    line-height: 1.65;
  }

  .service-overlay-panel .view-next {
    margin-top: 1rem;
  }
}

@media (max-width: 600px) {
  .portfolio-card { flex: 0 0 calc(85% - 0.6rem); }
  .services-columns { grid-template-columns: 1fr; }
}

/* ===== LOGO EN CONTACT PAGE ===== */
.split-photo.logo-photo {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #0a0a0a;
}

.split-photo.logo-photo img {
  width: auto !important;
  height: auto !important;
  max-width: 60% !important;
  max-height: 60% !important;
  object-fit: contain !important;
  position: relative !important;
}