/*
Theme Name:        Maisemasuunnitteluhonkamaki
Theme URI:         https://maisemasuunnitteluhonkamaki.fi
Description:       Child theme for Extendable by Extendify — Honkamäki custom design
Author:            Elina Honkamäki
Author URI:        https://maisemasuunnitteluhonkamaki.fi
Template:          extendable
Version:           1.0.1
Text Domain:       maisemasuunnitteluhonkamaki
*/

/* ═══════════════════════════════════════════════════
   KILL DEFAULT WP / EXTENDABLE / ELEMENTOR OUTPUT
   These selectors hide the unwanted default header
   that get_header() renders before our custom <header>,
   and the "Proudly powered by WordPress" footer credit.
═══════════════════════════════════════════════════ */
#header,
#header + hr,
.site-header,
.wp-site-blocks > .site-header,
.elementor-location-header,
.wp-block-template-part[data-slug="header"] {
  display: none !important;
}

/* Hide the "Proudly powered by WordPress" footer div — belt-and-braces
   fallback in case the PHP hook in functions.php isn't enough. */
.site-footer,
.site-info,
#colophon,
#footer,
#footer > p,
.extendable-footer-credits,
div[class*="powered-by"],
p[class*="powered-by"] {
  display: none !important;
}

/* Remove Extendable body padding / container constraints */
.wp-site-blocks,
.entry-content > *,
.wp-block-group,
.wp-block-cover,
#page {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* ═══════════════════════════════════════════════════
   CSS VARIABLES
═══════════════════════════════════════════════════ */
:root {
  --forest:      #1e5045;
  --forest-dark: #142f28;
  --sage:        #9bbfb4;
  --pink-light:  #e8c8d0;
  --pink-dark:   #a03060;
  --cream:       #faf8f5;
  --text:        #1a2a24;
  --text-muted:  #4a6058;
  --white:       #ffffff;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius: 4px;
  --container: 1160px;
  --transition: 0.22s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }

/* ═══════════════════════════════════════════════════
   SHARED UTILITIES
═══════════════════════════════════════════════════ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink-dark);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.eyebrow--light { color: var(--sage); }

.section { padding: 5rem 0; }

h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 400;
  color: var(--forest);
  line-height: 1.15;
  margin-bottom: 1rem;
  /* override Extendable's Inter/semi-bold */
  font-family: var(--font-display) !important;
  letter-spacing: normal !important;
}

h2 em, h2 .italic { font-style: italic; }
h2 .accent, em.accent { color: var(--pink-dark); }

h3 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: normal !important;
  font-family: var(--font-display) !important;
}

/* Reveal animations */
.reveal,
.reveal-stagger {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s var(--transition), transform 0.55s var(--transition);
}
.reveal.visible,
.reveal-stagger.visible { opacity: 1; transform: none; }
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s;    }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.24s; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  font-family: var(--font-body);
}
.btn-primary {
  background: var(--pink-dark);
  color: var(--white);
  border: 2px solid var(--pink-dark);
}
.btn-primary:hover { background: #8a2550; border-color: #8a2550; }

.btn-outline {
  background: transparent;
  color: rgba(240,235,228,0.9);
  border: 2px solid rgba(240,235,228,0.4);
}
.btn-outline:hover {
  background: rgba(240,235,228,0.1);
  border-color: rgba(240,235,228,0.7);
}

/* ═══════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════ */
#site-nav {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--cream);
  border-bottom: 1px solid rgba(30,80,69,0.12);
  transition: box-shadow var(--transition);
}
#site-nav.scrolled {
  box-shadow: 0 2px 20px rgba(30,80,69,0.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 200px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.nav-logo-img img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  transition: width 0.3s ease;
}
.nav-logo-text span {
  display: block;
  font-size: 1.25rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-style: normal;
  line-height: 1.2;
  font-weight: 500;
}
.nav-logo-text strong {
  display: block;
  font-size: 20px;
  font-weight: 200;
  color: var(--forest);
  letter-spacing: 0.06em;
  line-height: 1.1;
  letter-spacing: 3px;
}

/* Desktop links */
.nav-links {
  display: flex;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 15px;        /* increased from 13px per design annotation */
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--forest); }

/* CTA button */
.nav-cta {
  background: var(--forest);
  color: var(--white) !important;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: background var(--transition);
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--forest-dark); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--forest);
  transition: all 0.25s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--cream);
  border-top: 1px solid rgba(30,80,69,0.1);
  padding: 1rem 2rem 1.5rem;
  gap: 0.1rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 0.65rem 0;
  font-size: 15px;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(30,80,69,0.07);
  transition: color var(--transition);
}
.nav-mobile a:last-child {
  margin-top: 0.75rem;
  background: var(--pink-dark);
  color: var(--white);
  text-align: center;
  padding: 0.75rem;
  border-radius: var(--radius);
  border-bottom: none;
  font-weight: 500;
}
.nav-mobile a:hover { color: var(--forest); }


/* ═══════════════════════════════════════════════════
   HERO — PREMIUM FULL-WIDTH SLIDER
═══════════════════════════════════════════════════ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  background: var(--forest-dark);
}

/* ── Slides sit behind everything ── */
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity;
  transform: scale(1.04);   /* subtle Ken-Burns start state */
  animation: none;
}
.hero-slide.active {
  opacity: 1;
  z-index: 1;
  animation: heroZoom 8s ease forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.00); }
}

/* ── Multi-layer overlay: starts LIGHT then darkens so image is vivid first ── */
.hero-overlay {
  position: absolute;
  inset: 0;
  /* Start lighter so the garden image really shines through on load/transition */
  background:
    linear-gradient(
      105deg,
      rgba(14, 38, 32, 0.70) 0%,
      rgba(20, 52, 43, 0.55) 30%,
      rgba(26, 66, 54, 0.30) 55%,
      rgba(20, 47, 40, 0.08) 80%,
      rgba(10, 25, 20, 0.02) 100%
    ),
    /* Bottom vignette for slider UI readability */
    linear-gradient(
      to top,
      rgba(10, 28, 22, 0.55) 0%,
      transparent 28%
    );
  z-index: 1;
  /* Animate from very light → richer over 4s so image is vivid first */
  animation: overlaySettle 4.5s ease forwards;
}
@keyframes overlaySettle {
  0%   {
    background:
      linear-gradient(105deg,
        rgba(14,38,32,0.30) 0%, rgba(20,52,43,0.20) 35%,
        rgba(26,66,54,0.08) 60%, rgba(10,25,20,0.02) 100%),
      linear-gradient(to top, rgba(10,28,22,0.30) 0%, transparent 25%);
  }
  100% {
    background:
      linear-gradient(105deg,
        rgba(14,38,32,0.70) 0%, rgba(20,52,43,0.55) 30%,
        rgba(26,66,54,0.30) 55%, rgba(10,25,20,0.02) 100%),
      linear-gradient(to top, rgba(10,28,22,0.55) 0%, transparent 28%);
  }
}
/* Reset animation on each new slide */
.hero-slide.active .hero-overlay {
  animation: overlaySettle 4.5s ease forwards;
}

/* ── Text content — always on top ── */
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 8% 6rem;
  max-width: 680px;
  color: var(--white);
}

/* Kicker: line + small caps label */
.hero-kicker {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.6rem;
}
.hero-kicker-line {
  display: block;
  width: 36px;
  height: 1.5px;
  background: var(--sage);
  flex-shrink: 0;
}
.hero-kicker-text {
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
}

/* Main heading — all on ONE line, bold display weight */
.hero-title {
  font-family: var(--font) !important;
  font-size: clamp(62px, 7.5vw, 72px) !important;
  font-weight: 900 !important;
  line-height: 1.08 !important;
  letter-spacing: -0.015em !important;
  color: var(--white)!important;
  margin-bottom: 0.6rem;
  /* inline: "Sinulle" upright + italic em on same line */
  display: block;
}
.hero-title em {
  font-style: italic;
  font-weight: 800;        /* italic part stays elegant/lighter */
  color: var(--pink-light);
  display: inline;         /* same line as "Sinulle" */
}

/* Italic subtitle */
.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 26px);
  font-style: italic;
  color: rgba(155,191,180,0.9);
  margin-bottom: 1.6rem;
  letter-spacing: 0.01em;
  font-weight: 900 !important;
  color: var(--white);
}

/* Body text */
.hero-desc {
  font-size: clamp(14px, 1.1vw, 16.5px);
  line-height: 1.8;
  color: rgba(240,235,228,0.82);
  max-width: 460px;
  margin-bottom: 2.5rem;
}

/* CTA buttons — always side by side */
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: nowrap;   /* never stack on desktop */
  align-items: center;
  margin-bottom: 2.2rem;
}
/* Override generic .btn for hero context */
#hero .btn-primary {
  background: var(--pink-dark);
  color: var(--white);
  border: 2px solid var(--pink-dark);
  padding: 0.75rem 1.5rem;
  font-size: 14px;
  letter-spacing: 0.04em;
  border-radius: 2px;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.22s, border-color 0.22s, transform 0.18s;
}
#hero .btn-primary:hover { background: #8a2550; border-color: #8a2550; transform: translateY(-1px); }

#hero .btn-outline {
  background: transparent;
  color: rgba(240,235,228,0.92);
  border: 2px solid rgba(240,235,228,0.35);
  padding: 0.75rem 1.5rem;
  font-size: 14px;
  letter-spacing: 0.04em;
  border-radius: 2px;
  font-weight: 400;
  white-space: nowrap;
  transition: border-color 0.22s, background 0.22s;
}
#hero .btn-outline:hover { border-color: rgba(240,235,228,0.7); background: rgba(240,235,228,0.07); }

/* Location badges */
.hero-badges {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 12px;
  color: rgba(155,191,180,0.75);
  letter-spacing: 0.03em;
}
.hero-badge svg { opacity: 0.7; }
.hero-badge-sep { color: rgba(155,191,180,0.35); font-size: 14px; }

/* ── Slider UI: progress bar + dots ── */
.slider-ui {
  position: absolute;
  bottom: 2.5rem;
  left: 8%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  width: 200px;
}

/* thin animated progress bar */
.slider-progress {
  height: 2px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  overflow: hidden;
}
.slider-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--pink-light);
  border-radius: 2px;
  transition: width linear;
}

.slider-dots {
  display: flex;
  gap: 0.7rem;
}
.slider-dot {
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, width 0.3s;
}
.slider-dot.active {
  background: var(--pink-light);
  width: 44px;
}

/* ── Scroll cue arrow ── */
.hero-scroll-cue {
  position: absolute;
  bottom: 2.4rem;
  right: 3rem;
  z-index: 10;
  color: rgba(255,255,255,0.3);
  animation: scrollBounce 2.4s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.3; }
  50%       { transform: translateY(6px); opacity: 0.6; }
}

/* ── Responsive hero ── */
@media (max-width: 900px) {
  .hero-content {
    padding: 0 6% 7rem;
    max-width: 100%;
  }
}
@media (max-width: 640px) {
  #hero { min-height: 600px; }
  .hero-title { font-size: clamp(32px, 9vw, 48px) !important; }
  .hero-sub   { font-size: 19px; }
  .hero-desc  { font-size: 14px; }
  .hero-btns  { flex-wrap: wrap; }   /* allow stack only on tiny screens */
  .slider-ui  { left: 6%; width: 160px; }
  .hero-scroll-cue { display: none; }
}


/* HERO - Split Layout like the sample */
/*
#hero {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  min-height: 100vh;
  background: var(--forest);
}

.hero-content {
  background: var(--forest);
  padding: 5rem 4rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}

.hero-tagline {
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
  font-weight: 500;
}

.hero-title {
  font-size: clamp(42px, 5.5vw, 68px);
  line-height: 1.05;
  margin-bottom: 1rem;
  font-weight: 400;
}

.hero-title em {
  color: var(--pink-light);
  font-style: italic;
}

.hero-sub {
  font-size: 22px;
  color: var(--sage);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.hero-desc {
  font-size: 15.5px;
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn-primary {
  background: var(--pink-dark);
  color: white;
  padding: 1rem 2rem;
  font-weight: 500;
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.6);
  padding: 1rem 2rem;
}

.hero-location {
  font-size: 13px;
  line-height: 1.6;
  color: var(--sage);
}

/* Right side visual */ /*
.hero-visual {
  position: relative;
  min-height: 100vh;
  background: #0f1f1a;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide-caption {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: rgba(0,0,0,0.65);
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-size: 13px;
  max-width: 320px;
}

.slider-controls {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  gap: 0.7rem;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(240,235,228,0.3);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  padding: 0;
}
.slider-dot.active {
  background: var(--pink-light);
  transform: scale(1.3);
}
*/

/* ═══════════════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════════════ */
#trust-bar {
  background: var(--white);
  border-bottom: 1px solid rgba(30,80,69,0.1);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
}

.trust-icon {
  width: 32px;
  height: 32px;
  background: rgba(30,80,69,0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--forest);
}
.trust-icon svg { width: 16px; height: 16px; }

/* ═══════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════ */
#about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
}

.about-photo {
  position: relative;
}
.about-photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
}
.about-photo-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--pink-dark);
  color: var(--white);
  font-size: 12px;
  padding: 0.6rem 1rem;
  border-radius: var(--radius);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* Placeholder when no photo yet */
.about-photo:not(:has(img[src])) .about-photo-badge,
.about-photo img[style*="display:none"] ~ .about-photo-badge { bottom: 0; right: 0; }

/* .about-content { } */
.about-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1rem;
}
.about-highlight {
  background: rgba(30,80,69,0.06);
  border-left: 3px solid var(--forest);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
  margin: 1.5rem 0;
  line-height: 1.75;
}
.about-sig {
  font-family: var(--font-display);
  font-size: 26px;
  font-style: italic;
  color: var(--forest);
  margin: 1.25rem 0 0.4rem;
}
.about-cred {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 0.35rem;
}
.about-cred-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--pink-dark);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════════ */
#services { background: var(--cream); }

.services-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}
.services-header p {
  font-size: 15px;
  color: var(--text-muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(30,80,69,0.12);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  border-color: rgba(30,80,69,0.3);
  box-shadow: 0 4px 24px rgba(30,80,69,0.08);
}
/* Coloured left accent bar */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
}
.service-card:nth-child(1)::before { background: var(--pink-dark); }
.service-card:nth-child(2)::before { background: var(--forest); }
.service-card:nth-child(3)::before { background: var(--sage); }

.service-icon {
  width: 42px;
  height: 42px;
  background: rgba(30,80,69,0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  margin-bottom: 1.25rem;
}
.service-icon svg { width: 20px; height: 20px; }

.service-name {
  font-family: var(--font-display) !important;
  font-size: 22px !important;
  font-weight: 500 !important;
  color: var(--forest) !important;
  letter-spacing: normal !important;
  margin-bottom: 0.4rem;
}

.service-price {
  font-size: 13px;
  font-weight: 600;
  color: var(--pink-dark);
  margin-bottom: 0.85rem;
  letter-spacing: 0.01em;
}

.service-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.service-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--forest);
  border: 1px solid rgba(30,80,69,0.25);
  padding: 0.25rem 0.65rem;
  border-radius: 2px;
}

.services-note {
  margin-top: 1.75rem;
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
}

/* CTA strip below services */
.services-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  background: var(--forest);
  color: var(--white);
  padding: 2rem 2.5rem;
  border-radius: var(--radius);
  margin-top: 3rem;
}
.services-cta-strip h3 {
  font-family: var(--font-display) !important;
  font-size: 22px !important;
  font-weight: 400 !important;
  color: #f0ebe4 !important;
  letter-spacing: normal !important;
  margin-bottom: 0.25rem;
}
.services-cta-strip p {
  font-size: 14px;
  color: var(--sage);
}

/* ═══════════════════════════════════════════════════
   PORTFOLIO
═══════════════════════════════════════════════════ */
#portfolio { background: var(--forest); }

#portfolio h2 { color: #f0ebe4 !important; }
#portfolio h2 em { color: var(--pink-light); }

.portfolio-header {
  text-align: center;
  margin-bottom: 3rem;
}
.portfolio-intro {
  font-size: 15px;
  color: rgba(155,191,180,0.75);
  max-width: 560px;
  margin: 0.75rem auto 0;
  line-height: 1.75;
}

/* 3-column on wide, 2-column on medium */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.portfolio-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.portfolio-card:hover {
  border-color: rgba(155,191,180,0.35);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.25);
}

/* Cards with real photos get a slightly lighter bg */
.portfolio-card--work {
  border-color: rgba(232,200,208,0.12);
}
.portfolio-card--work:hover { border-color: rgba(232,200,208,0.3); }

.portfolio-img {
  height: 220px;
  position: relative;
  background-color: var(--forest-dark);
  overflow: hidden;
}
/* Subtle zoom on card hover */
.portfolio-card:hover .portfolio-img {
  transform: scale(1.03);
  transition: transform 0.55s ease;
}

/* Badge (replaces old .portfolio-img-label) */
.portfolio-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  font-size: 10.5px;
  padding: 0.3rem 0.65rem;
  border-radius: 2px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 500;
  backdrop-filter: blur(6px);
}
.portfolio-badge--3d {
  background: rgba(20,47,40,0.82);
  color: rgba(155,191,180,0.95);
  border: 1px solid rgba(155,191,180,0.2);
}
.portfolio-badge--photo {
  background: rgba(160,48,96,0.82);
  color: rgba(240,200,215,0.95);
  border: 1px solid rgba(232,200,208,0.25);
}

.portfolio-info { padding: 1.1rem 1.35rem 1.35rem; }
.portfolio-type {
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.35rem;
  opacity: 0.8;
}
.portfolio-title {
  font-family: var(--font-display) !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  color: #f0ebe4 !important;
  font-style: italic;
  letter-spacing: normal !important;
  line-height: 1.3;
}

.portfolio-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Responsive portfolio */
@media (max-width: 1024px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-img  { height: 200px; }
}


/* ═══════════════════════════════════════════════════
   CONTACT SECTION
   Two-column: info left, form right. Pink-light bg.
═══════════════════════════════════════════════════ */
#contact { background: var(--pink-light); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
}

/* ── Left column text ── */
.contact-info h2 { color: var(--forest) !important; }

.contact-info > p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.contact-note {
  font-size: 13px;
  font-style: italic;
  padding: 1rem 1.25rem;
  background: rgba(30,80,69,0.07);
  border-radius: var(--radius);
  border-left: 3px solid var(--forest);
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Detail rows stack vertically ── */
.contact-details {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;               /* gap handled per-row via margin */
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 14px;
  color: var(--text);
  padding: 0.6rem 0;
}

/* Circular icon badge — works as div or link button */
.contact-ico {
  width: 40px;
  height: 40px;
  background: var(--forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.contact-ico svg { width: 18px; height: 18px; }

/* When used as a link, remove the button appearance */
a.contact-ico {
  padding: 0;
}

/* Hover effect for icon buttons/links */
.contact-ico:hover {
  background: var(--pink-dark);
  transform: scale(1.08);
}

/* Button variant — map toggle */
.contact-ico--btn {
  border: none;
  cursor: pointer;
  background: var(--forest);
}
.contact-ico--btn:hover,
.contact-ico--btn[aria-expanded="true"] {
  background: var(--pink-dark);
  transform: scale(1.08);
}

/* Clickable links */
.contact-link {
  color: var(--forest);
  font-size: 14px;
  transition: color var(--transition);
  word-break: break-all;
}
.contact-link:hover { color: var(--pink-dark); text-decoration: underline; }

/* ── Map accordion ── */
.map-accordion {
  display: none;
}

.social-handle {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
}

/* ── Right column: contact form ── */
.contact-form {
  background: var(--white);
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: 0 4px 32px rgba(30,80,69,0.1);
}
.form-title {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--forest);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}
.form-group:last-of-type { margin-bottom: 0; }

.form-label {
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}
.form-input,
.form-textarea {
  border: 1px solid rgba(30,80,69,0.2);
  border-radius: var(--radius);
  padding: 0.65rem 0.9rem;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  background: var(--cream);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(30,80,69,0.08);
}
.form-textarea { min-height: 110px; resize: vertical; }

.form-submit {
  width: 100%;
  background: var(--forest);
  color: var(--white);
  border: none;
  padding: 0.9rem;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius);
  cursor: pointer;
  letter-spacing: 0.03em;
  margin-top: 1.25rem;
  transition: background var(--transition);
}
.form-submit:hover   { background: var(--forest-dark); }
.form-submit:disabled { opacity: 0.65; cursor: not-allowed; }

.form-message {
  margin-top: 0.75rem;
  font-size: 13px;
  padding: 0.6rem 0.9rem;
  border-radius: var(--radius);
}
.form-message--ok {
  background: rgba(30,80,69,0.1);
  color: var(--forest);
  border: 1px solid rgba(30,80,69,0.25);
}
.form-message--err {
  background: rgba(160,48,96,0.08);
  color: var(--pink-dark);
  border: 1px solid rgba(160,48,96,0.25);
}

/* Responsive contact */
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .map-accordion { margin-left: 0; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 1.5rem; }
}

/* ═══════════════════════════════════════════════════
   MAP SHOWCASE — Collapsible accordion
   Styled accordion button that toggles panel open/close
═══════════════════════════════════════════════════ */
.map-showcase {
  background: var(--cream);
  padding: 3rem 0;
  display: none;
}

/* Accordion button — trigger for expand/collapse */
.accordion {
  background-color: var(--forest);
  color: var(--white);
  cursor: pointer;
  padding: 1.5rem;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: background-color 0.3s ease;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: 4px;
}

.accordion-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.accordion:hover {
  background-color: var(--forest-dark);
}

.accordion.active {
  background-color: var(--pink-dark);
}

.accordion.active .accordion-icon {
  transform: rotate(180deg);
}

/* Panel — hidden by default, expands with max-height animation */
.panel {
  padding: 0;
  background-color: transparent;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.map-showcase-inner {
  padding: 2.5rem 0;
}

.map-showcase-inner h2 {
  font-family: var(--font-display) !important;
  font-size: 32px !important;
  font-weight: 400 !important;
  color: var(--forest) !important;
  margin-bottom: 1.5rem;
  text-align: center;
}

.map-showcase-image {
  margin: 2rem 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(30,80,69,0.15);
}

.map-showcase-image img {
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.map-description {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 720px;
  margin: 2rem auto;
  text-align: center;
}

.map-cta {
  text-align: center;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .accordion {
    padding: 1.25rem;
    font-size: 15px;
  }
  .accordion-icon {
    width: 18px;
    height: 18px;
  }
  .map-showcase-inner h2 {
    font-size: 24px !important;
  }
  .map-showcase-image {
    margin: 1.5rem 0;
  }
}

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
#site-footer {
  background: var(--forest);
  padding: 8ch 0;
  border-top: 1px solid rgba(155,191,180,0.1);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-bottom: 1rem;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 15px;
  font-style: italic;
  color: rgba(240,235,228,0.55);
}
.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-links a {
  font-size: 12px;
  color: rgba(240,235,228,0.4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.footer-links a:hover { color: rgba(240,235,228,0.75); }
.footer-copy {
  font-size: 12px;
  color: rgba(240,235,228,0.25);
  margin-top: 0.5rem;
  border-top: 1px solid rgba(155,191,180,0.08);
  padding-top: 1rem;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  #hero { grid-template-columns: 1fr; }
  .hero-visual { min-height: 340px; position: relative; }
  .hero-slider { position: absolute; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-photo { max-width: 340px; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

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

  .hero-content { padding: 3rem 1.5rem; }
  .hero-title { font-size: clamp(36px, 9vw, 52px) !important; }

  .section { padding: 3.5rem 0; }

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

  .services-cta-strip { flex-direction: column; text-align: center; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .btn { text-align: center; width: 100%; }
  .trust-bar-inner { flex-direction: column; align-items: flex-start; }
  .contact-form { padding: 1.5rem; }
}

/* ═══════════════════════════════════════════════════
   FIX: WP admin bar pushes sticky nav
═══════════════════════════════════════════════════ */
.admin-bar #site-nav {
  top: 32px;
}
@media screen and (max-width: 782px) {
  .admin-bar #site-nav { top: 46px; }
}

@media (max-width: 1024px) {
    .nav-logo-img img {
        width: 90px;
        height: 9cm;
    }
}


