/* ============================================
   CSS CUSTOM PROPERTIES (set by JS from theme)
   ============================================ */
:root {
  --primary: #2C5F2E;
  --secondary: #1A1A1A;
  --accent: #C8A03E;
  --dark: #0F1F10;
  --light: #F5F0E8;
  --text: #2A2A2A;
  --text-light: #6B6B5A;
  --radius: 12px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.14);
}

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

html { scroll-behavior: smooth; }

body {
  background-color: var(--light);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ============================================
   SKIP LINK
   ============================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--primary);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0 0 var(--radius) var(--radius);
  font-size: 0.875rem;
  z-index: 10000;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ============================================
   PAGE LOADER
   ============================================ */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

.loader-spinner {
  width: 44px;
  height: 44px;
  border: 3px solid rgba(255,255,255,0.1);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================
   TYPOGRAPHY HELPERS
   ============================================ */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 2rem;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 2px;
  background: var(--accent);
}

.section-headline {
  font-family: 'Fraunces', serif;
  font-optical-sizing: auto;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--secondary);
  white-space: pre-line;
}

/* ============================================
   NAVIGATION
   ============================================ */
#site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

#site-nav.nav-transparent {
  background: transparent;
}

#site-nav.nav-scrolled {
  background: rgba(245, 240, 232, 0.96);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.08);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.85; }

.nav-logo-icon {
  width: 38px;
  height: 38px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-logo-name {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--secondary);
  transition: color 0.3s;
}

.nav-logo-tagline {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-transparent .nav-logo-name,
.nav-transparent .nav-logo-tagline { color: rgba(255,255,255,0.9); }

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

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-link:hover { color: var(--primary); }
.nav-link:hover::after { width: 100%; }

.nav-transparent .nav-link { color: rgba(255,255,255,0.85); }
.nav-transparent .nav-link:hover { color: #fff; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.375rem;
  background: var(--primary);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover {
  background: var(--dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(44, 95, 46, 0.25);
}

.nav-transparent .nav-cta {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
}
.nav-transparent .nav-cta:hover {
  background: rgba(255,255,255,0.25);
  box-shadow: none;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  transition: background 0.2s;
}
.nav-hamburger:hover { background: rgba(0,0,0,0.06); }
.nav-hamburger:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }

.ham-bar {
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: var(--secondary);
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s;
}
.nav-transparent .ham-bar { background: #fff; }

.nav-hamburger.open .ham-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open .ham-bar:nth-child(2) { opacity: 0; }
.nav-hamburger.open .ham-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--light);
  padding: 2rem;
  gap: 1.5rem;
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-mobile.open { transform: translateX(0); }

.nav-mobile-link {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding-bottom: 1rem;
  transition: color 0.2s, padding-left 0.2s;
}
.nav-mobile-link:hover { color: var(--primary); padding-left: 0.5rem; }

.nav-mobile-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: var(--primary);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  margin-top: auto;
  width: fit-content;
  transition: background 0.2s;
}
.nav-mobile-cta:hover { background: var(--dark); }

/* ============================================
   HERO SECTION
   ============================================ */
#hero_1 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
  margin-bottom: -4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 31, 16, 0.78) 0%,
    rgba(15, 31, 16, 0.55) 60%,
    rgba(15, 31, 16, 0.35) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 8rem 2rem 10rem;
  max-width: 760px;
  margin-left: clamp(2rem, 8vw, 10rem);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(200, 160, 62, 0.4);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  background: rgba(200, 160, 62, 0.08);
}

.hero-headline {
  font-family: 'Fraunces', serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 1.5rem;
  white-space: pre-line;
}

.hero-headline span {
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.175rem);
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
  max-width: 500px;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--accent);
  color: #1a1a1a;
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.01em;
}
.btn-primary:hover {
  background: #d9b24e;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(200, 160, 62, 0.3);
}
.btn-primary:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: transparent;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.35);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  letter-spacing: 0.01em;
}
.btn-secondary:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}
.btn-secondary:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }

.hero-scroll {
  position: absolute;
  bottom: 7rem;
  left: clamp(2rem, 8vw, 10rem);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 1;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.35);
  animation: linePulse 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@keyframes linePulse {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 0.7; }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
#about_1 {
  background: var(--light);
  padding: 8rem 2rem 6rem;
  position: relative;
}

.about-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text .section-headline {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 1.5rem;
}

.about-paragraph {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.about-paragraph:first-of-type::first-letter {
  font-family: 'Fraunces', serif;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 0.85;
  float: left;
  margin-right: 0.125rem;
  color: var(--primary);
  margin-top: 0.2rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-value {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--text-light);
  font-weight: 500;
  line-height: 1.3;
}

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

.about-image-container {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-image-container:hover img { transform: scale(1.04); }

.about-image-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--primary);
  color: #fff;
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.about-image-badge-number {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 2.25rem;
  line-height: 1;
  color: var(--accent);
}

.about-image-badge-text {
  font-size: 0.8125rem;
  font-weight: 500;
  margin-top: 0.25rem;
  opacity: 0.85;
  line-height: 1.3;
}

.about-decor-dot {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--accent);
  opacity: 0.25;
}

/* ============================================
   SERVICES SECTION (ZIGZAG)
   ============================================ */
#services_1 {
  background: #fff;
  padding: 6rem 2rem;
  position: relative;
}

.services-header {
  max-width: 1280px;
  margin: 0 auto 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: end;
}

.services-header .section-headline {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
}

.services-sub {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-light);
  align-self: end;
  padding-bottom: 0.25rem;
}

.service-row {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.service-row:first-of-type { border-top: 1px solid rgba(0,0,0,0.07); }

.service-row.reverse { direction: rtl; }
.service-row.reverse > * { direction: ltr; }

.service-image-col {
  overflow: hidden;
  aspect-ratio: 4/3;
}

.service-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-row:hover .service-image-col img { transform: scale(1.04); }

.service-content-col {
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--light);
  position: relative;
  overflow: hidden;
}

.service-number {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 5rem;
  color: var(--primary);
  opacity: 0.06;
  line-height: 1;
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
}

.service-icon-wrap {
  width: 48px;
  height: 48px;
  background: rgba(44, 95, 46, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--primary);
  transition: background 0.2s;
}

.service-row:hover .service-icon-wrap { background: rgba(44, 95, 46, 0.18); }

.service-title {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.625rem;
  color: var(--secondary);
  margin-bottom: 0.875rem;
  line-height: 1.2;
}

.service-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
}

/* ============================================
   GALLERY SECTION
   ============================================ */
#gallery_1 {
  background: var(--secondary);
  padding: 6rem 2rem;
  position: relative;
}

.gallery-header {
  max-width: 1280px;
  margin: 0 auto 3rem;
  text-align: center;
}

.gallery-header .section-label { justify-content: center; padding-left: 0; }
.gallery-header .section-label::before { display: none; }

.gallery-header .section-headline {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: #fff;
}

.gallery-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.75rem;
}

.gallery-grid {
  max-width: 1280px;
  margin: 0 auto;
  columns: 4;
  column-gap: 1rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
  display: block;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 31, 16, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
  background: rgba(15, 31, 16, 0.4);
}

.gallery-item-icon {
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.3s ease, transform 0.3s ease;
  color: #fff;
  background: rgba(200, 160, 62, 0.85);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-item-icon {
  opacity: 1;
  transform: scale(1);
}

.gallery-instagram-link {
  max-width: 1280px;
  margin: 2.5rem auto 0;
  text-align: center;
}

.gallery-instagram-link a {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.gallery-instagram-link a:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.05);
}

/* ============================================
   PROCESS SECTION
   ============================================ */
#process_1 {
  background: var(--light);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.process-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(44, 95, 46, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.process-header {
  max-width: 1280px;
  margin: 0 auto 4rem;
  text-align: center;
}

.process-header .section-label { justify-content: center; padding-left: 0; }
.process-header .section-label::before { display: none; }

.process-header .section-headline {
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.process-sub {
  font-size: 1.0625rem;
  color: var(--text-light);
  margin-top: 0.75rem;
}

.process-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 2.75rem;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 1px;
  background: var(--primary);
  opacity: 0.2;
  z-index: 0;
}

.process-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
  z-index: 1;
}

.process-icon-circle {
  width: 56px;
  height: 56px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 16px rgba(44, 95, 46, 0.25);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.process-item:hover .process-icon-circle {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(44, 95, 46, 0.35);
}

.process-step-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 22px;
  height: 22px;
  background: var(--accent);
  border-radius: 50%;
  font-size: 0.625rem;
  font-weight: 700;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.process-title {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.175rem;
  color: var(--secondary);
  margin-bottom: 0.625rem;
}

.process-desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-light);
}

/* ============================================
   CTA BANNER
   ============================================ */
#cta_1 {
  position: relative;
  overflow: hidden;
  padding: 7rem 2rem;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 25, 11, 0.82);
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.cta-headline {
  font-family: 'Fraunces', serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  white-space: pre-line;
}

.cta-text {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
  margin-bottom: 2.5rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9375rem 2.25rem;
  background: var(--accent);
  color: #1a1a1a;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: background 0.2s, transform 0.2s;
}
.btn-accent:hover { background: #d9b24e; transform: translateY(-2px); }

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9375rem 2.25rem;
  background: transparent;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.4);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.btn-outline-white:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
#contact_1 {
  background: #fff;
  padding: 6rem 2rem;
}

.contact-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contact-info .section-headline {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 1rem;
}

.contact-sub {
  font-size: 1.0625rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 2.5rem;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.125rem 1.25rem;
  background: var(--light);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  border: 1px solid transparent;
}
.contact-card:hover {
  background: #fff;
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(0,0,0,0.06);
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(44, 95, 46, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-card-body { display: flex; flex-direction: column; }

.contact-card-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
}

.contact-card-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--secondary);
  margin-top: 0.125rem;
}

.contact-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.125rem;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 50px;
  text-decoration: none;
  color: var(--text);
  font-size: 0.875rem;
  font-weight: 500;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.social-link:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(44, 95, 46, 0.04);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--light);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: #fff;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(44, 95, 46, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder { color: #aaa; }

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

.form-input.error,
.form-textarea.error { border-color: #e55; }

.form-submit {
  width: 100%;
  padding: 0.9375rem;
  background: var(--primary);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.form-submit:hover {
  background: var(--dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(44, 95, 46, 0.25);
}
.form-submit:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; }

.form-success {
  display: none;
  text-align: center;
  padding: 1.5rem;
  background: rgba(44, 95, 46, 0.08);
  border-radius: 10px;
  border: 1px solid rgba(44, 95, 46, 0.2);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9375rem;
  margin-top: 1rem;
}

/* ============================================
   FOOTER
   ============================================ */
#site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding: 5rem 2rem 2rem;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 2rem;
}

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  margin-bottom: 1.25rem;
}

.footer-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-logo-name {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.0625rem;
  color: #fff;
}

.footer-logo-tag {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.45);
  display: block;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.625rem;
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.footer-social-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(200, 160, 62, 0.08);
}

.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-link {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.2s, padding-left 0.2s;
}
.footer-link:hover { color: var(--accent); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.9375rem;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact-item a:hover { color: var(--accent); }

.footer-contact-icon { flex-shrink: 0; color: var(--accent); margin-top: 2px; }

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.35);
}

.footer-website {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.35);
}

/* ============================================
   FLOATING BUTTONS
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  z-index: 900;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  opacity: 0;
  transform: translateY(20px) scale(0.9);
}
.whatsapp-float.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.whatsapp-float:hover {
  background: #20bc5d;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.scroll-top-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  width: 44px;
  height: 44px;
  background: var(--primary);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(44, 95, 46, 0.3);
  transition: background 0.2s, transform 0.2s, opacity 0.2s;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}
.scroll-top-btn.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.scroll-top-btn:hover { background: var(--dark); transform: translateY(-2px); }
.scroll-top-btn:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .gallery-grid { columns: 3; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile { display: flex; }

  #hero_1 {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%);
  }

  .hero-inner { padding: 7rem 1.5rem 8rem; margin-left: 0; }
  .hero-headline { font-size: clamp(2.25rem, 8vw, 3.5rem); }
  .hero-scroll { display: none; }

  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-wrap { order: -1; }
  .about-image-badge { left: 1rem; bottom: -1rem; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }

  .services-header { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 1fr; }
  .service-row.reverse { direction: ltr; }
  .service-image-col { aspect-ratio: 16/9; }
  .service-content-col { padding: 2.5rem 1.5rem; }

  .gallery-grid { columns: 2; }

  .process-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .process-grid::before { display: none; }

  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .gallery-grid { columns: 1; }
  .process-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  .contact-form-wrap { padding: 1.75rem 1.25rem; }
}

/* ============================================
   PREFERS REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
