:root {
  --bg: #f7f4ee;
  --card: #f9f7f2;
  --green: #2e6b49;
  --green-dark: #1f4a34;
  --green-soft: #e8efe8;
  --accent: #d9a23b;
  --text: #1f2a24;
  --muted: #627267;
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  --header-height: 72px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  padding-top: var(--header-height);
}

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 36px);
}

.hero {
  min-height: 78vh;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.45)),
    url("assets/images/hero-photo-fin.webp?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  color: #fefcf8;
  padding: 0 0 80px;
}

.hero > .container {
  min-height: 78vh;
  display: grid;
  place-items: center;
}

.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  background: transparent;
  color: #f7f4ee;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  width: 100%;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(41, 96, 64, 0.85);
  backdrop-filter: blur(6px);
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  height: var(--header-height);
}

.site-header.scrolled {
  background: rgba(41, 96, 64, 0.85);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 20px rgba(16, 20, 18, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.site-header.scrolled .nav,
.site-header.scrolled .logo-text {
  color: #f7f4ee;
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.footer .logo-text {
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.2;
}

.logo-mark {
  width: 34px;
  height: 34px;
  background: transparent;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
  flex: 0 0 34px;
  line-height: 0;
}

.logo-mark svg {
  display: none;
}

.logo-mark img {
  width: 34px !important;
  height: 34px !important;
  max-width:34px !important;
  max-height: 34px !important;
  object-fit: contain;
  display: block;
}

.footer .logo-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
}

.footer .logo-mark img {
  width: 44px !important;
  height: 44px !important;
  max-width: 44px !important;
  max-height: 44px !important;
}

.nav-links {
  display: flex;
  gap: 22px;
  justify-content: center;
  font-size: 0.95rem;
}

.nav-links a {
  color: inherit;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #f7f4ee;
}

.nav-cta {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: flex-end;
  font-size: 0.9rem;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.nav-phone {
  color: #f7f4ee;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
}

.phone-icon {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2.4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
  display: block;
}

.btn {
  background: var(--accent);
  color: #1d1b16;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(217, 162, 59, 0.25);
  transition: transform 0.2s ease;
  display: inline-block;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.ghost {
  background: transparent;
  color: #fefcf8;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: none;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  align-self: center;
  transform: translateY(-4%);
}

.hero-content h1 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

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

.hero-em {
  position: relative;
  font-weight: 700;
}

.hero-em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 10px;
  background: rgba(217, 162, 59, 0.25);
  z-index: -1;
  border-radius: 999px;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 80px;
  padding-right: 80px;
}

.pill {
  display: inline-block;
  background: rgba(217, 162, 59, 0.2);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  margin-bottom: 16px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.hero-meta {
  display: flex;
  gap: 20px;
  justify-content: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  flex-wrap: wrap;
}

.scroll-cue {
  margin-top: 26px;
  display: flex;
  justify-content: center;
}

.scroll-cue span {
  width: 2px;
  height: 34px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  position: relative;
  overflow: hidden;
}

.scroll-cue span::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  right: 0;
  height: 10px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
  0% { transform: translateY(0); opacity: 0.3; }
  50% { transform: translateY(12px); opacity: 1; }
  100% { transform: translateY(0); opacity: 0.3; }
}

.section {
  padding: 80px 0;
}

.section.about {
  background: #ece8de;
}

.section.experience {
  padding-bottom: 140px;
}

.section.pricing {
  padding-top: 140px;
}

.section-head {
  max-width: 720px;
  margin-bottom: 40px;
}

.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-head h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 12px;
}

.tag {
  display: inline-block;
  background: var(--green-soft);
  color: var(--green);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  margin-bottom: 12px;
  font-weight: 500;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 32px;
  align-items: stretch;
}

.about-text {
  align-self: start;
  padding-right: 84px;
  padding-top: 20px;
}

.about-toggle {
  display: none;
  margin-top: 12px;
  background: transparent;
  border: none;
  color: var(--green);
  font-weight: 600;
  padding: 0;
  cursor: pointer;
}

.about-text .tag {
  margin-bottom: 12px;
}

.about-text h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 12px;
}

.about-text p {
  margin-bottom: 18px;
  color: var(--muted);
}

.about-text p:last-of-type {
  margin-bottom: 24px;
}

.about-media {
  width: 100%;
  height: 100%;
  align-self: start;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 22px 44px rgba(24, 30, 26, 0.16);
  position: relative;
  z-index: 1;
  pointer-events: auto;
}

.about-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #1b1f1c;
  pointer-events: auto;
  display: block;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.stat {
  background: rgba(46, 107, 73, 0.08);
  border-radius: 16px;
  padding: 18px;
  text-align: center;
}

.stat span {
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--green);
}

.stat small {
  font-size: 0.82rem;
  letter-spacing: 0.2px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  background: var(--card);
  padding: 22px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 12px;
  min-height: 210px;
}

.feature-card .icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  letter-spacing: -0.5px;
}

.feature-card .icon svg {
  width: 40px;
  height: 40px;
  stroke: currentColor;
  stroke-width: 2.4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pricing {
  background: #ece8de;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.price-card {
  background: var(--card);
  padding: 28px 30px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  position: relative;
}

.price-card h3 {
  font-size: 1.2rem;
  margin-bottom: 18px;
  color: var(--green);
}

.price-title {
  text-align: center;
}

.price-rows {
  display: grid;
  gap: 0;
}

.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(46, 107, 73, 0.12);
}

.price-row:last-child {
  border-bottom: none;
}

.price-label {
  font-size: 0.98rem;
  color: var(--text);
}

.price-note {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 4px;
}

.price-value {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--green);
  text-align: right;
  white-space: nowrap;
}

.badge-soft {
  display: inline-block;
  background: var(--green-soft);
  color: var(--green);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
}

.is-family {
  background: rgba(46, 107, 73, 0.06);
  margin: 0 -14px;
  padding: 14px;
  border-radius: 12px;
  border-bottom: none;
}

.is-popular {
  background: rgba(217, 162, 59, 0.12);
}


.pricing-note {
  text-align: center;
  color: var(--muted);
  margin-top: 18px;
  font-size: 0.95rem;
}

.pricing-cta {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-auto-rows: 190px;
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow);
  cursor: zoom-in;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-grid img.portrait {
  height: 100%;
  aspect-ratio: 9 / 16;
  grid-row: span 2;
}

.gallery-grid img:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 22px 40px rgba(16, 20, 18, 0.16);
}

.gallery-grid img:nth-child(1) {
  grid-column: span 2;
}

.gallery-grid img:nth-child(6) {
  grid-column: span 2;
}

.contact {
  background: #ece8de;
}

.contact-grid {
  display: grid;
  gap: 24px;
}

.contact-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.contact-card {
  background: var(--card);
  border-radius: 18px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 230px;
}

.contact-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  margin: 0 auto 6px;
}

.contact-icon svg {
  width: 34px;
  height: 34px;
  stroke: currentColor;
  stroke-width: 2.4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
}

.contact-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.contact-card a {
  color: var(--green);
  font-weight: 500;
}

.contact-cta {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.map {
  display: flex;
  justify-content: center;
  background: transparent;
}

.map iframe,
.map img {
  width: min(100%, 1260px);
  height: auto;
  border: none;
  border-radius: 0;
  box-shadow: none;
  object-fit: contain;
  display: block;
  background: transparent;
  filter: drop-shadow(0 6px 16px rgba(24, 30, 26, 0.14));
}

.map-section {
  padding: 120px 0;
  margin: -80px 0;
  position: relative;
  z-index: 2;
  background: transparent;
}

.map-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--bg) 0 50%, #ece8de 50% 100%);
  z-index: -1;
}

.map-section .container {
  display: flex;
  justify-content: center;
}

.map-embed iframe {
  width: 100%;
  height: 360px;
  border: none;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: block;
}

.footer {
  background: #296040;
  color: #f7f4ee;
  padding: 110px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.1fr auto 1.2fr;
  gap: 56px;
  align-items: center;
  padding-bottom: 70px;
}

.footer-col {
  display: grid;
  gap: 22px;
}

.footer-tagline {
  color: rgba(247, 244, 238, 0.82);
  max-width: 320px;
  line-height: 1.8;
  font-size: 0.98rem;
}

.footer-divider {
  width: 1px;
  height: 120px;
  background: rgba(255, 255, 255, 0.2);
  justify-self: center;
}

.footer-headline {
  font-size: 1.35rem;
  color: #f7f4ee;
  line-height: 1.6;
}

.footer-subline {
  color: rgba(247, 244, 238, 0.78);
  line-height: 1.7;
  margin-top: -6px;
}

.footer-project {
  display: grid;
  gap: 6px;
}

.project-title {
  color: #f7f4ee;
  font-weight: 600;
  font-size: 1rem;
}

.project-desc {
  color: rgba(247, 244, 238, 0.72);
  font-size: 0.92rem;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #f7f4ee;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  width: fit-content;
  margin-top: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 30px 0 54px;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-nav {
  display: flex;
  gap: 20px;
}

.footer-nav a {
  color: rgba(247, 244, 238, 0.8);
  font-size: 0.92rem;
}

.socials {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}

.socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  display: grid;
  place-items: center;
  color: #f7f4ee;
  font-weight: 600;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(12, 14, 12, 0.7);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 999;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-image {
  max-width: min(90vw, 1100px);
  max-height: 80vh;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  font-size: 1.6rem;
  cursor: pointer;
}

@media (max-width: 900px) {
  .nav {
    grid-template-columns: 1fr auto;
    align-items: center;
    text-align: left;
  }

  .nav-cta {
    justify-content: flex-end;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .contact-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-divider {
    display: none;
  }

  .footer-top {
    gap: 32px;
  }

  .map-section {
    padding: 90px 0;
    margin: -60px 0;
  }
}

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

  .about-text {
    order: 1;
    padding-right: 0;
    text-align: center;
  }

  .about-media {
    order: 2;
  }

  .about-more {
    display: none;
  }

  .about-more.is-open {
    display: block;
  }

  .about-toggle {
    display: inline-flex;
    margin-left: auto;
    margin-right: auto;
  }
  .hero {
    padding-top: 20px;
  }

  .hero-content {
    margin-top: 50px;
  }

  .btn.ghost {
    border-color: rgba(255, 255, 255, 0.4);
  }

  .price-card.featured {
    transform: none;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .nav-links {
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(41, 96, 64, 0.95);
    padding: 16px 20px 20px;
    display: none;
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 120px;
    gap: 12px;
  }

  .gallery-grid img,
  .gallery-grid img.portrait {
    grid-column: auto;
    grid-row: auto;
    height: 120px;
    aspect-ratio: auto;
  }

  .hide-mobile {
    display: none;
  }

  .contact-columns {
    grid-template-columns: 1fr;
  }

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

  .footer-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .map-section {
    padding: 70px 0;
    margin: -40px 0;
  }

  .footer {
    padding-top: 90px;
  }

  .footer-top {
    padding-bottom: 56px;
  }
}
