@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Source+Sans+3:wght@400;500;600;700&display=swap");

:root {
  --bg: #f3efe4;
  --bg-soft: #faf7f0;
  --surface: rgba(255, 255, 255, 0.92);
  --text: #1a2e24;
  --muted: #5a6e62;
  --green: #4a7a55;
  --green-dark: #1f3d2c;
  --yellow: #e8b830;
  --yellow-soft: rgba(232, 184, 48, 0.18);
  --line: rgba(26, 46, 36, 0.1);
  --line-soft: rgba(26, 46, 36, 0.06);
  --shadow-sm: 0 4px 14px rgba(20, 40, 28, 0.06);
  --shadow: 0 16px 40px rgba(20, 40, 28, 0.09);
  --shadow-lg: 0 24px 56px rgba(20, 40, 28, 0.13);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1140px;
  --gutter: clamp(20px, 4vw, 40px);
  --section-gap: clamp(56px, 8vw, 96px);
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(ellipse 80% 50% at 0% 0%, rgba(232, 184, 48, 0.14), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(74, 122, 85, 0.12), transparent 50%),
    linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
  background-attachment: fixed;
}

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

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

::selection {
  background: var(--yellow);
  color: var(--green-dark);
}

.container {
  width: min(var(--container), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(250, 247, 240, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line-soft);
}

.header-inner {
  width: min(var(--container), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
  padding: 14px 0 12px;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  transition: opacity 160ms ease;
}

.brand:hover {
  opacity: 0.85;
}

.brand-mark {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--green-dark), var(--green));
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow-sm);
}

.brand-name {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--green-dark);
}

.eyebrow,
.section-label {
  margin: 0 0 4px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--green);
}

.menu-toggle {
  display: none;
  flex-shrink: 0;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 999px;
  padding: 9px 18px;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green-dark);
  cursor: pointer;
  transition: background 160ms ease, box-shadow 160ms ease;
}

.menu-toggle:hover {
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
}

.site-nav a {
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--green-dark);
  white-space: nowrap;
  transition: background 160ms ease, color 160ms ease;
}

.site-nav a:hover {
  background: rgba(74, 122, 85, 0.1);
}

.site-nav a.is-active {
  background: var(--green-dark);
  color: #fff;
}

/* ---------- Typography ---------- */

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  color: var(--green-dark);
}

main {
  overflow-x: clip;
}

/* ---------- Hero ---------- */

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
  padding: clamp(40px, 6vw, 72px) 0 var(--section-gap);
}

.hero-copy {
  text-align: center;
}

.hero-copy h2 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  max-width: 12ch;
  margin: 12px auto 18px;
}

.hero-copy > p {
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 52ch;
  color: var(--muted);
  margin: 0 auto;
}

.hero-copy .heart-message {
  font-weight: 700;
  color: var(--green-dark);
  font-size: 1.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px auto 24px;
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button.primary {
  background: var(--green-dark);
  color: #fff;
  box-shadow: var(--shadow);
}

.button.primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: var(--green);
}

.button.secondary {
  background: var(--surface);
  border-color: var(--line);
  color: var(--green-dark);
}

.button.secondary:hover {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
  justify-content: center;
}

.hero-points li {
  padding: 8px 14px 8px 28px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-dark);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
}

.hero-visual {
  position: relative;
}

.hero-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  min-height: 380px;
}

.hero-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-mosaic .mosaic-main {
  grid-row: 1 / 3;
  aspect-ratio: auto;
}

.hero-mosaic img:not(.mosaic-main) {
  aspect-ratio: 4 / 3;
}

/* ---------- Sections ---------- */

.page-section {
  padding-top: var(--section-gap);
}

.section-heading {
  margin-bottom: clamp(24px, 4vw, 36px);
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}

.section-heading h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  margin-top: 8px;
}

.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding: var(--section-gap) 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.intro h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
}

.intro p:last-child {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--muted);
}

/* ---------- Cards ---------- */

.feature-card,
.service-card,
.detail-card,
.content-card,
blockquote {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.service-grid,
.reference-grid,
.gallery-grid {
  display: grid;
  gap: 20px;
}

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

.service-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.service-card img {
  flex-shrink: 0;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-card h3,
.service-card p {
  padding-inline: 18px;
}

.service-card h3 {
  margin-top: 16px;
  font-size: 1.15rem;
}

.service-card p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.94rem;
  padding-bottom: 18px;
  margin: 6px 0 0;
}

.service-link-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-link-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-link-card h3 {
  transition: color 160ms ease;
}

.service-link-card:hover h3 {
  color: var(--green);
}

/* ---------- Gallery ---------- */

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

.gallery-grid img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.gallery-grid img:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.zoomable-image {
  cursor: zoom-in;
}

/* ---------- References ---------- */

.reference-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

blockquote {
  margin: 0;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  line-height: 1.75;
  color: var(--muted);
  font-size: 1rem;
  position: relative;
}

blockquote::before {
  content: "\201C";
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--yellow);
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}

blockquote cite {
  display: block;
  margin-top: 16px;
  color: var(--green-dark);
  font-weight: 700;
  font-style: normal;
  font-size: 0.92rem;
}

/* ---------- Contact ---------- */

.contact {
  margin: var(--section-gap) 0;
  border-radius: var(--radius-xl);
  padding: clamp(28px, 5vw, 40px);
  background:
    linear-gradient(135deg, rgba(74, 122, 85, 0.08) 0%, transparent 60%),
    var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 40px);
  align-items: center;
}

.contact h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-top: 8px;
}

.contact-meta {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.contact-meta a {
  color: var(--green-dark);
  font-weight: 600;
}

.contact-meta a:hover {
  text-decoration: underline;
}

.contact-channels {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-dark);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.contact-chip:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(74, 122, 85, 0.35);
}

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--line-soft);
  padding: 28px 0 40px;
}

.footer-inner {
  width: min(var(--container), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-inner a {
  color: var(--green-dark);
  font-weight: 600;
}

.footer-inner a:hover {
  text-decoration: underline;
}

/* ---------- Subpages ---------- */

.subpage-hero {
  padding: clamp(36px, 5vw, 64px) 0 var(--section-gap);
  border-bottom: 1px solid var(--line-soft);
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.subpage-hero h2 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  max-width: 16ch;
  margin: 12px auto 18px;
}

.subpage-hero p {
  max-width: 68ch;
  color: var(--muted);
  line-height: 1.85;
  font-size: 1.05rem;
  margin: 0 auto;
}

.subpage-hero a {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--green);
  text-underline-offset: 3px;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.subpage-hero a:hover {
  color: var(--green-dark);
  text-decoration-color: var(--green-dark);
}

.content-stack {
  display: grid;
  gap: 20px;
  padding: var(--section-gap) 0;
}

.content-card {
  border-radius: var(--radius-lg);
  padding: clamp(22px, 4vw, 32px);
}

.content-card h3 {
  font-size: 1.28rem;
  margin-bottom: 12px;
}

.content-card p,
.content-card li {
  color: var(--muted);
  line-height: 1.85;
}

.content-card p + p {
  margin-top: 12px;
}

.content-card a {
  color: var(--green);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--green);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.content-card a:hover {
  color: var(--green-dark);
  text-decoration-color: var(--green-dark);
}

.highlight-link {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--green);
  font-weight: 700;
  color: var(--green);
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.highlight-link:hover {
  color: var(--green-dark);
  text-decoration-color: var(--green-dark);
}

.highlight-text {
  font-weight: 600;
  color: var(--green);
  font-size: 1.05rem;
  line-height: 1.8;
}

.content-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

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

.content-list {
  margin: 10px 0 0;
  padding-left: 22px;
}

.content-list li + li {
  margin-top: 6px;
}

.mini-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding-bottom: var(--section-gap);
}

.mini-gallery img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 200ms ease;
}

.mini-gallery img:hover {
  transform: scale(1.03);
}

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

.gallery-3 img {
  aspect-ratio: 16 / 10;
}

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

.large-gallery img {
  aspect-ratio: 16 / 10;
}

.detail-blocks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding: 8px 0 var(--section-gap);
}

.detail-card {
  border-radius: var(--radius-lg);
  padding: clamp(22px, 4vw, 32px);
}

.detail-card h2 {
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  margin: 10px 0 12px;
}

.detail-card p:not(.section-label) {
  color: var(--muted);
  line-height: 1.85;
}

.detail-card.yellow {
  background: linear-gradient(180deg, var(--yellow-soft), var(--surface));
}

.detail-card.green {
  background: linear-gradient(180deg, rgba(74, 122, 85, 0.12), var(--surface));
}

.feature-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.feature-card-main img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feature-card-main div {
  padding: 18px 20px 22px;
}

.feature-card-main span {
  color: var(--green);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}

.feature-card-main strong {
  display: block;
  margin-top: 8px;
  font-size: 1.15rem;
}

/* ---------- Lightbox ---------- */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(9, 19, 13, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 1000;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-image {
  max-width: min(92vw, 1100px);
  max-height: 84vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.45);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--green-dark);
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease;
}

.lightbox-close:hover {
  transform: scale(1.08);
}

body.lightbox-open {
  overflow: hidden;
}

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .hero,
  .intro,
  .contact-inner,
  .detail-blocks,
  .content-grid-2,
  .content-grid-3 {
    grid-template-columns: 1fr;
  }

  .hero-copy h2 {
    max-width: none;
  }

  .hero-copy {
    text-align: center;
  }

  .contact-channels {
    justify-content: flex-start;
  }

  .reference-grid,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 720px) {
  .header-top {
    flex-wrap: nowrap;
  }

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

  .site-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    margin-top: 10px;
    padding-top: 10px;
  }

  .site-nav a {
    width: 100%;
    padding: 10px 14px;
    white-space: normal;
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    min-height: auto;
  }

  .hero-mosaic .mosaic-main {
    grid-row: auto;
    grid-column: 1 / -1;
    aspect-ratio: 16 / 10;
  }

  .service-grid,
  .reference-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

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