/* ============================================================
   SouthCoast Build & Yard — Design System
   Aesthetic: Industrial-Organic / Rugged Craftsman
   Fonts: Playfair Display (headings) + DM Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=DM+Sans:wght@300;400;500;600;700&family=DM+Mono:wght@400;500&display=swap');

/* ---- CSS Variables ---- */
:root {
  --green-deep:   #1a3a2a;
  --green-mid:    #2d5a3d;
  --green-accent: #4a8c5c;
  --green-light:  #7ab893;
  --wood-dark:    #5c3d1e;
  --wood-mid:     #8b5e2e;
  --wood-light:   #c8956c;
  --sand:         #f5ede0;
  --cream:        #faf7f2;
  --gray-dark:    #1c1c1c;
  --gray-mid:     #3a3a3a;
  --gray-light:   #6b6b6b;
  --gray-border:  #e0ddd8;
  --white:        #ffffff;
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:    0 6px 24px rgba(0,0,0,0.12);
  --shadow-lg:    0 16px 48px rgba(0,0,0,0.18);
  --radius-sm:    4px;
  --radius-md:    10px;
  --radius-lg:    18px;
  --transition:   all 0.28s cubic-bezier(0.4,0,0.2,1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--gray-dark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.18;
  color: var(--gray-dark);
}
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 700; }
p { font-size: 1rem; color: var(--gray-mid); }
.lead { font-size: 1.15rem; font-weight: 400; }
.overline {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-accent);
  font-weight: 500;
}

/* ---- Layout Utilities ---- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.text-center { text-align: center; }
.gap-4 { gap: 16px; }
.gap-8 { gap: 32px; }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  min-height: 52px;
  text-decoration: none;
}
.btn-primary {
  background: var(--green-mid);
  color: var(--white);
  border-color: var(--green-mid);
}
.btn-primary:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,90,61,0.35);
}
.btn-call {
  background: var(--wood-dark);
  color: var(--white);
  border-color: var(--wood-dark);
}
.btn-call:hover {
  background: #3d2510;
  border-color: #3d2510;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(92,61,30,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--green-deep);
}
.btn-outline-dark {
  background: transparent;
  color: var(--green-mid);
  border-color: var(--green-mid);
}
.btn-outline-dark:hover {
  background: var(--green-mid);
  color: var(--white);
}
.btn-lg {
  padding: 20px 44px;
  font-size: 1.1rem;
  min-height: 60px;
}
.btn-block {
  width: 100%;
  display: flex;
}
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* ---- Navigation ---- */
#navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--green-deep);
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
  transition: var(--transition);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo .logo-main {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: -0.01em;
}
.nav-logo .logo-sub {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-light);
  font-weight: 500;
}
.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.82);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
.nav-cta {
  background: var(--wood-dark);
  color: var(--white) !important;
  border-radius: var(--radius-sm) !important;
  padding: 10px 18px !important;
  font-weight: 700 !important;
}
.nav-cta:hover {
  background: #3d2510 !important;
}
.nav-mobile-call {
  display: none;
  align-items: center;
  gap: 6px;
  background: var(--wood-dark);
  color: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.88rem;
}
/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  margin-left: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  background: var(--green-deep);
  padding: 0 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  color: rgba(255,255,255,0.85);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-weight: 500;
  font-size: 1.05rem;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--white); }
.mobile-menu-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

/* ---- Page Header ---- */
.page-header {
  background: var(--green-deep);
  padding: 64px 0 48px;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-accent), var(--wood-mid), var(--green-light));
}
.page-header h1 { color: var(--white); }
.page-header p { color: rgba(255,255,255,0.72); margin-top: 12px; }
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 16px;
  font-size: 0.82rem;
  color: var(--green-light);
}
.breadcrumb a { color: var(--green-light); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ---- Hero Section ---- */
#hero {
  background: var(--green-deep);
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(160deg, rgba(26,58,42,0.96) 0%, rgba(26,58,42,0.82) 50%, rgba(26,40,32,0.93) 100%),
    url('images/hero-bg.jpg') center/cover no-repeat;
}
.hero-texture {
  position: absolute;
  inset: 0;
  background-image: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 2px,
      rgba(255,255,255,0.012) 2px,
      rgba(255,255,255,0.012) 4px
    );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.hero-badge span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--green-light);
  text-transform: uppercase;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green-light);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
#hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
#hero h1 em {
  font-style: italic;
  color: var(--green-light);
}
#hero .lead {
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  margin-bottom: 36px;
}
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 52px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  font-weight: 500;
}
.hero-trust-item svg { color: var(--green-light); flex-shrink: 0; }

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.4);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2.4s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ---- Trust Bar ---- */
#trust-bar {
  background: var(--sand);
  border-top: 3px solid var(--green-accent);
  padding: 36px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--green-accent);
  transition: var(--transition);
}
.trust-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.trust-icon {
  width: 44px; height: 44px;
  background: var(--green-deep);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green-light);
}
.trust-item h4 { font-size: 0.95rem; margin-bottom: 3px; }
.trust-item p { font-size: 0.82rem; }

/* ---- Services Preview ---- */
#services-preview {
  background: var(--cream);
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .overline { display: block; margin-bottom: 10px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 560px; margin: 0 auto; }
.services-tabs {
  display: flex;
  gap: 0;
  background: var(--gray-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 40px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.services-tab {
  flex: 1;
  padding: 14px 20px;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
  border: none;
  background: transparent;
  letter-spacing: 0.04em;
}
.services-tab.active {
  background: var(--green-mid);
  color: var(--white);
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-accent);
}
.service-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  flex-shrink: 0;
}
.service-card h3 { font-size: 1.1rem; }
.service-card p { font-size: 0.88rem; }
.service-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--sand);
  color: var(--green-deep);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  align-self: flex-start;
  letter-spacing: 0.04em;
}

/* ---- Gallery Preview ---- */
#gallery-preview { background: var(--gray-dark); }
#gallery-preview .section-header h2 { color: var(--white); }
#gallery-preview .section-header p { color: rgba(255,255,255,0.6); }
#gallery-preview .overline { color: var(--green-light); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 10px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--gray-mid);
  cursor: pointer;
}
.gallery-item.large { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  background: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-placeholder { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
}

/* Gallery placeholder SVG art */
.gallery-art {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
}
.gallery-art .art-icon { font-size: 2.4rem; opacity: 0.6; }
.gallery-art .art-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-align: center;
}

/* ---- Reviews ---- */
#reviews-home { background: var(--sand); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
  border-top: 3px solid var(--green-accent);
  transition: var(--transition);
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.review-quote {
  font-size: 3.5rem;
  line-height: 1;
  color: var(--green-light);
  font-family: 'Playfair Display', serif;
  margin-bottom: 8px;
  opacity: 0.6;
}
.review-stars {
  display: flex;
  gap: 3px;
  color: #f5a623;
  margin-bottom: 12px;
  font-size: 0.95rem;
}
.review-text {
  font-size: 0.92rem;
  color: var(--gray-mid);
  line-height: 1.65;
  margin-bottom: 18px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--green-mid), var(--green-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.review-author-info strong { font-size: 0.9rem; display: block; }
.review-author-info span { font-size: 0.78rem; color: var(--gray-light); }

/* ---- CTA Banner ---- */
#cta-banner {
  background: linear-gradient(135deg, var(--wood-dark) 0%, var(--wood-mid) 100%);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 8px,
    rgba(255,255,255,0.025) 8px,
    rgba(255,255,255,0.025) 9px
  );
}
#cta-banner .container { position: relative; }
#cta-banner h2 { color: var(--white); margin-bottom: 14px; }
#cta-banner p { color: rgba(255,255,255,0.75); margin-bottom: 36px; font-size: 1.1rem; }
.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ---- Service Area ---- */
#service-area { background: var(--cream); }
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.area-towns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.town-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 16px;
  background: var(--green-deep);
  color: var(--white);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.town-chip svg { color: var(--green-light); }
.area-map-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 340px;
  background: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.area-map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---- FAQ Section ---- */
#faq { background: var(--white); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--gray-border);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 4px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: var(--transition);
}
.faq-question h4 {
  font-size: 1rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  color: var(--gray-dark);
  transition: var(--transition);
}
.faq-question:hover h4 { color: var(--green-mid); }
.faq-chevron {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--green-mid);
}
.faq-item.open .faq-chevron {
  background: var(--green-mid);
  color: var(--white);
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 4px;
}
.faq-item.open .faq-answer {
  max-height: 200px;
  padding-bottom: 20px;
}
.faq-answer p { font-size: 0.93rem; }

/* ---- Footer ---- */
#footer {
  background: var(--gray-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .logo-main {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--white);
}
.footer-brand .logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-light);
  font-weight: 500;
  display: block;
  margin-bottom: 14px;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.7; }
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-btn:hover {
  background: var(--green-mid);
  color: var(--white);
}
.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: 'DM Mono', monospace;
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a:hover { color: var(--green-light); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.88rem;
}
.footer-contact-item svg { color: var(--green-light); margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a:hover { color: var(--green-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { color: rgba(255,255,255,0.35); }

/* ---- Floating Call Button ---- */
#float-call {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 999;
  display: none;
}
#float-call a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--wood-dark);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 6px 24px rgba(92,61,30,0.55);
  transition: var(--transition);
}
#float-call a:hover {
  background: #3d2510;
  transform: translateY(-2px);
}

/* ---- Services Full Page ---- */
.services-section { background: var(--cream); }
.services-category {
  margin-bottom: 60px;
}
.services-category-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--gray-border);
}
.category-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}
.category-icon.green { background: var(--green-deep); color: var(--green-light); }
.category-icon.wood { background: var(--wood-dark); color: var(--wood-light); }
.service-detail-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-border);
  display: flex;
  gap: 18px;
  transition: var(--transition);
}
.service-detail-card:hover {
  border-color: var(--green-accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.service-detail-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.service-detail-icon.green { background: rgba(45,90,61,0.1); }
.service-detail-icon.wood { background: rgba(92,61,30,0.1); }
.service-detail-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.service-detail-card p { font-size: 0.88rem; }

/* ---- Gallery Full ---- */
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.filter-btn {
  padding: 9px 20px;
  border-radius: 100px;
  border: 2px solid var(--gray-border);
  background: transparent;
  color: var(--gray-mid);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  border-color: var(--green-mid);
  background: var(--green-mid);
  color: var(--white);
}
.gallery-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-full-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  cursor: pointer;
  background: var(--gray-mid);
  transition: var(--transition);
}
.gallery-full-item:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.gallery-full-item .gallery-art {
  width: 100%;
  height: 100%;
}
.gallery-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%);
  padding: 16px 14px 12px;
}
.gallery-label span {
  display: block;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
}
.gallery-label small {
  color: rgba(255,255,255,0.6);
  font-size: 0.72rem;
}

/* ---- Reviews Full ---- */
.reviews-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.review-card-full {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-border);
  transition: var(--transition);
}
.review-card-full:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.rating-bar {
  background: var(--sand);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
  margin-bottom: 40px;
}
.big-rating {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 900;
  color: var(--green-deep);
  line-height: 1;
}
.review-cta-box {
  background: var(--green-deep);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  margin-top: 56px;
}
.review-cta-box h2 { color: var(--white); margin-bottom: 12px; }
.review-cta-box p { color: rgba(255,255,255,0.7); margin-bottom: 28px; }

/* ---- About Page ---- */
.about-hero {
  background: var(--sand);
  padding: 60px 0;
  border-bottom: 3px solid var(--green-accent);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img-placeholder {
  aspect-ratio: 4/3;
  background: var(--green-deep);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-img-art {
  font-size: 5rem;
  opacity: 0.3;
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 36px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  border-top: 3px solid var(--green-accent);
  transition: var(--transition);
}
.value-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.value-icon { font-size: 1.8rem; margin-bottom: 8px; }
.value-card h4 { font-size: 0.92rem; margin-bottom: 4px; }
.value-card p { font-size: 0.8rem; }
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px 0;
}
.stat-item {
  text-align: center;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--green-mid);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 0.85rem; color: var(--gray-light); font-weight: 500; }
.team-section { background: var(--sand); padding: 60px 0; }

/* ---- Contact Page ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 48px;
}
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-card h2 { margin-bottom: 8px; }
.form-card > p { margin-bottom: 28px; font-size: 0.9rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gray-dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 2px solid var(--gray-border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--gray-dark);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(45,90,61,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.file-upload {
  border: 2px dashed var(--gray-border);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: var(--cream);
}
.file-upload:hover { border-color: var(--green-mid); background: var(--white); }
.file-upload p { font-size: 0.85rem; margin-top: 6px; }
.required-star { color: var(--wood-dark); }
.contact-info-panel { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--green-accent);
}
.contact-card h3 { font-size: 1rem; margin-bottom: 16px; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-border);
}
.contact-method:last-child { border-bottom: none; }
.contact-method-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-method-icon.green { background: var(--green-deep); color: var(--green-light); }
.contact-method-icon.wood { background: var(--wood-dark); color: var(--wood-light); }
.contact-method strong { font-size: 0.9rem; display: block; }
.contact-method span { font-size: 0.8rem; color: var(--gray-light); }
.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 220px;
  background: var(--green-deep);
  border: none;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }
.quick-action-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.quick-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  width: 100%;
  text-decoration: none;
  transition: var(--transition);
}
.quick-btn.call { background: var(--wood-dark); color: var(--white); }
.quick-btn.call:hover { background: #3d2510; }
.quick-btn.text { background: var(--green-mid); color: var(--white); }
.quick-btn.text:hover { background: var(--green-deep); }
.quick-btn.email { background: var(--sand); color: var(--gray-dark); }
.quick-btn.email:hover { background: var(--gray-border); }
.form-success {
  display: none;
  background: #e8f5e9;
  border: 1px solid var(--green-accent);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-top: 16px;
  color: var(--green-deep);
  font-weight: 600;
  font-size: 0.93rem;
  align-items: center;
  gap: 10px;
}

/* ---- Animations ---- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ---- Skip link (a11y) ---- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--green-deep);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 0 0 6px 6px;
  z-index: 9999;
  font-weight: 700;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1040px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.large { grid-column: span 1; }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: 1fr; }
  .gallery-full-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-full-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .about-values { grid-template-columns: 1fr 1fr; }
  .nav-mobile-call { display: flex; }
}

@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .section { padding: 56px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gallery-full-grid { grid-template-columns: 1fr; }
  .gallery-item.large, .gallery-item.tall { grid-column: span 1; grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr 1fr; }
  .form-card { padding: 24px 18px; }
  #float-call { display: block; }
  .hero-trust { display: none; }
  .btn-lg { padding: 17px 28px; font-size: 1rem; }
  .hero-cta-group { flex-direction: column; }
  .hero-cta-group .btn { width: 100%; }
  .cta-group { flex-direction: column; align-items: center; }
  .cta-group .btn { width: 100%; max-width: 320px; }
}

@media (min-width: 601px) {
  #float-call { display: none !important; }
}
