/* --------------------------------------------------
   The Merry Crew Website Styles
   Update colors in :root first if you want to rebrand.
-------------------------------------------------- */

:root {
  --color-green-950: #0d2a1c;
  --color-green-900: #165c39;
  --color-green-800: #26734d;
  --color-red-700: #ff2a1f;
  --color-red-600: #ff4338;
  --color-red-100: #fff0ee;
  --color-white: #ffffff;
  --color-surface: #f5f5f7;
  --color-surface-strong: #ffffff;
  --color-surface-tint: #eef5ef;
  --color-text: #121614;
  --color-muted: #5f6b64;
  --color-border: rgba(18, 22, 20, 0.08);
  --color-border-light: rgba(255, 255, 255, 0.22);
  --shadow-soft: 0 20px 48px rgba(15, 23, 18, 0.06);
  --shadow-medium: 0 28px 64px rgba(15, 23, 18, 0.14);
  --shadow-red: 0 18px 34px rgba(233, 72, 63, 0.16);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 20px;
  --radius-sm: 16px;
  --max-width: 1200px;
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  font-family:
    -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display",
    "Helvetica Neue", Arial, sans-serif;
  color: var(--color-text);
  background:
    radial-gradient(circle at 14% 8%, rgba(233, 72, 63, 0.08), transparent 24%),
    radial-gradient(circle at 86% 0%, rgba(22, 92, 57, 0.09), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, var(--color-surface) 52%, #ffffff 100%);
  line-height: 1.6;
}

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

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

button {
  font: inherit;
}

.page-glow {
  position: fixed;
  width: 28rem;
  height: 28rem;
  border-radius: 999px;
  filter: blur(96px);
  opacity: 0.22;
  pointer-events: none;
  z-index: -1;
}

.page-glow-left {
  top: -8rem;
  left: -10rem;
  background: rgba(233, 72, 63, 0.14);
}

.page-glow-right {
  top: 16rem;
  right: -10rem;
  background: rgba(22, 92, 57, 0.12);
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.narrow {
  max-width: 780px;
}

.section {
  padding: 6.5rem 0;
  position: relative;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 245, 247, 0.9));
}

.hero-section {
  padding: 2rem 0 6.5rem;
  background:
    radial-gradient(circle at 2% 14%, rgba(255, 42, 31, 0.14), transparent 18%),
    radial-gradient(circle at 6% 72%, rgba(255, 42, 31, 0.08), transparent 16%),
    radial-gradient(circle at 98% 12%, rgba(22, 92, 57, 0.16), transparent 22%),
    radial-gradient(circle at 94% 76%, rgba(22, 92, 57, 0.1), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 245, 247, 0.92));
}

.section-tint-red {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 243, 241, 0.88) 52%, rgba(255, 255, 255, 0.98));
}

.section-tint-green {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 245, 239, 0.92) 48%, rgba(255, 255, 255, 0.99));
}

.section-tint-red-soft {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(255, 246, 244, 0.9) 42%, rgba(255, 255, 255, 0.99));
}

.hero-section::after,
.section-tint-red::before,
.section-tint-green::before,
.section-tint-red-soft::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(18, 22, 20, 0.08), transparent);
}

.hero-section::after {
  bottom: 0;
}

.section-tint-red::before,
.section-tint-green::before,
.section-tint-red-soft::before {
  top: 0;
}

.section-tag {
  margin: 0 0 0.85rem;
  color: var(--color-red-700);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-tag-light {
  color: rgba(255, 255, 255, 0.8);
}

.section-title {
  margin: 0;
  font-family:
    -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue",
    Arial, sans-serif;
  font-size: clamp(2.3rem, 4vw, 4.5rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.section-title-light {
  color: var(--color-white);
}

.word-season {
  color: var(--color-green-900);
}

.word-joyful {
  color: var(--color-red-700);
}

.section-text,
.section-intro {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.04rem;
}

.section-title + .section-text,
.section-title + .section-intro {
  margin-top: 1.45rem;
}

.section-text-light {
  color: rgba(255, 255, 255, 0.78);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.4rem;
}

.section-intro {
  margin-top: 1.45rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(28px) saturate(150%);
  border-bottom: 1px solid rgba(18, 22, 20, 0.05);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.55rem 0;
  min-height: 6.1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--color-green-900);
  line-height: 1;
}

.brand-logo {
  width: 5.8rem;
  height: auto;
  flex-shrink: 0;
}

.brand-text {
  display: grid;
  gap: 0.1rem;
  line-height: 1;
}

.brand-text strong {
  font-size: 1.18rem;
  letter-spacing: -0.02em;
}

.brand-text span {
  font-size: 0.92rem;
  color: var(--color-green-900);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--color-muted);
  font-weight: 600;
  padding: 0.52rem 0.78rem;
  border-radius: 999px;
  transition:
    color 0.32s var(--ease-soft),
    background-color 0.32s var(--ease-soft),
    transform 0.32s var(--ease-soft);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--color-text);
  background: rgba(18, 22, 20, 0.045);
  transform: translateY(-1px);
}

.site-nav .nav-button:hover,
.site-nav .nav-button:focus-visible {
  color: var(--color-white) !important;
  background: linear-gradient(135deg, var(--color-green-900), var(--color-green-800));
}

.nav-button {
  padding: 0.84rem 1.22rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-green-900), var(--color-green-800));
  color: var(--color-white) !important;
  box-shadow: 0 14px 30px rgba(22, 92, 57, 0.16);
}

.nav-button:hover,
.nav-button:focus-visible {
  box-shadow: 0 18px 32px rgba(22, 92, 57, 0.18);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.3rem;
  padding: 0.92rem 1.45rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.34s var(--ease-smooth),
    box-shadow 0.34s var(--ease-smooth),
    background-color 0.34s var(--ease-soft),
    border-color 0.34s var(--ease-soft),
    color 0.34s var(--ease-soft);
}

.button:hover,
.button:focus-visible,
.nav-button:hover,
.nav-button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--color-red-700), var(--color-red-600));
  color: var(--color-white);
  box-shadow: 0 12px 24px rgba(15, 23, 18, 0.08);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 16px 30px rgba(15, 23, 18, 0.1);
}

.button-secondary {
  border-color: rgba(18, 22, 20, 0.08);
  background: rgba(255, 255, 255, 0.78);
  color: var(--color-text);
  backdrop-filter: blur(20px) saturate(150%);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(18, 22, 20, 0.1);
  color: var(--color-text);
  box-shadow: 0 12px 24px rgba(15, 23, 18, 0.06);
}

.button-secondary-green {
  background: linear-gradient(135deg, var(--color-green-900), var(--color-green-800));
  border-color: transparent;
  color: var(--color-white);
  box-shadow: 0 12px 24px rgba(15, 23, 18, 0.08);
}

.button-secondary-green:hover,
.button-secondary-green:focus-visible {
  background: linear-gradient(135deg, var(--color-green-900), var(--color-green-800));
  border-color: transparent;
  color: var(--color-white);
  box-shadow: 0 16px 30px rgba(15, 23, 18, 0.1);
}

.button-light {
  background: var(--color-white);
  color: var(--color-text);
  box-shadow: 0 12px 24px rgba(255, 255, 255, 0.1);
}

.button-light:hover,
.button-light:focus-visible {
  background: rgba(255, 255, 255, 0.98);
  color: var(--color-text);
  box-shadow: 0 16px 30px rgba(255, 255, 255, 0.16);
}

.hero-shell {
  position: relative;
}

.hero-shell::before,
.hero-shell::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(24px);
  pointer-events: none;
  z-index: 0;
}

.hero-shell::before {
  top: 2.5rem;
  left: -7rem;
  width: 15rem;
  height: 15rem;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 42, 31, 0.18), rgba(255, 42, 31, 0.05) 55%, transparent 72%);
}

.hero-shell::after {
  right: 18%;
  bottom: 2rem;
  width: 13rem;
  height: 13rem;
  background:
    radial-gradient(circle at 50% 50%, rgba(22, 92, 57, 0.16), rgba(22, 92, 57, 0.04) 58%, transparent 74%);
}

.hero-visual {
  position: relative;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(34px);
  pointer-events: none;
  z-index: 0;
}

.hero-visual::before {
  top: -2rem;
  right: -6rem;
  width: 15rem;
  height: 15rem;
  background:
    radial-gradient(circle at 50% 50%, rgba(22, 92, 57, 0.24), rgba(22, 92, 57, 0.08) 56%, transparent 78%);
}

.hero-visual::after {
  right: -5rem;
  bottom: 2.5rem;
  width: 12rem;
  height: 12rem;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 42, 31, 0.14), rgba(255, 42, 31, 0.04) 56%, transparent 78%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 2.4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy {
  position: relative;
  padding: 1.25rem 0.5rem 1.25rem 0;
  border-radius: 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.2rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(233, 72, 63, 0.08);
  color: var(--color-red-700);
  font-weight: 600;
}

.eyebrow::before {
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  background: var(--color-red-700);
  box-shadow: none;
}

.hero h1 {
  margin: 0;
  font-family:
    -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue",
    Arial, sans-serif;
  font-size: clamp(2.35rem, 4.7vw, 4.6rem);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.055em;
  color: var(--color-green-900);
}

.hero-text {
  max-width: 42rem;
  margin: 1.85rem 0 0;
  color: var(--color-muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-note {
  max-width: 38rem;
  margin-top: 2rem;
  padding: 1.2rem 1.25rem;
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 243, 241, 0.68) 52%, rgba(238, 245, 239, 0.74));
  backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(18, 22, 20, 0.06);
  box-shadow: var(--shadow-soft);
}

.hero-note p {
  margin: 0;
  color: var(--color-muted);
}

.hero-showcase {
  position: relative;
  min-height: 43rem;
  padding: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(160deg, rgba(18, 92, 57, 0.94), rgba(13, 42, 28, 0.96));
  box-shadow: var(--shadow-medium);
  overflow: hidden;
  z-index: 1;
}

.hero-showcase::before,
.hero-showcase::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero-showcase::before {
  top: -4rem;
  right: -2rem;
  width: 14rem;
  height: 14rem;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 68%);
}

.hero-showcase::after {
  bottom: -4rem;
  left: -3rem;
  width: 14rem;
  height: 14rem;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  position: relative;
  z-index: 3;
}

.hero-photo-frame {
  position: relative;
  overflow: hidden;
  min-height: 27rem;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
  z-index: 1;
}

.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 27rem;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.72s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  transform: translateX(100%);
}

.hero-photo.is-active {
  z-index: 2;
  transform: translateX(0);
}

.hero-photo.is-off-right {
  transform: translateX(100%);
}

.hero-photo.is-off-left {
  transform: translateX(-100%);
}

.hero-photo.is-prep {
  transition: none;
}

.hero-gallery-controls {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.hero-gallery-button {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.32s var(--ease-smooth),
    box-shadow 0.32s var(--ease-smooth),
    background-color 0.32s var(--ease-soft),
    border-color 0.32s var(--ease-soft);
}

.hero-gallery-button:hover,
.hero-gallery-button:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.hero-gallery-arrow {
  width: 3.1rem;
  height: 3.1rem;
  padding: 0;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  line-height: 1;
}

.hero-thumbnails {
  display: none;
}

.hero-floating {
  position: absolute;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-text);
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
  z-index: 3;
}

.hero-floating p {
  margin: 0;
}

.hero-floating-top {
  top: 7rem;
  right: 1rem;
}

.hero-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
}

.hero-gallery-caption {
  margin-top: 1.15rem;
  padding: 0 0.2rem;
  position: relative;
  z-index: 3;
}

.hero-gallery-caption p {
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.hero-gallery-caption span {
  color: #ffd76a;
}

.hero-strip-item {
  display: flex;
  align-items: center;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  justify-content: center;
  background: linear-gradient(135deg, var(--color-red-700), var(--color-red-600));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 34px rgba(255, 42, 31, 0.18);
  color: var(--color-white);
  font-weight: 600;
  text-align: center;
}

.page-hero {
  padding-top: 4rem;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.page-hero-copy {
  max-width: 44rem;
}

.page-hero-copy-wide {
  max-width: 54rem;
}

.page-hero-copy .section-text + .section-text {
  margin-top: 1rem;
}

.page-panel {
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(238, 245, 239, 0.72));
  backdrop-filter: blur(18px) saturate(150%);
  box-shadow: var(--shadow-soft);
}

.page-panel-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #eef0ee;
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.founders-title {
  max-width: none;
  font-size: clamp(1.8rem, 2.9vw, 3.15rem);
  white-space: nowrap;
}

.founders-title-brand {
  color: var(--color-green-900);
}

.founder-card {
  padding: 1.3rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #24563d, #18432f);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-medium);
  text-align: center;
}

.founder-photo-frame {
  width: min(100%, 250px);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 22px;
  margin: 0 auto 1rem;
  background: #f7f7f7;
}

.founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform-origin: center top;
}

.founder-photo-colin {
  transform: scale(1.09);
}

.founder-photo-elias {
  object-position: center 12%;
  transform: scale(1);
}

.founder-photo-yafet {
  transform: translateY(0) scale(1.02);
}

.founder-card h3 {
  margin: 0;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--color-white);
}

.founder-email {
  display: inline-block;
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition:
    color 220ms var(--ease-smooth),
    transform 220ms var(--ease-smooth);
}

.founder-email:hover {
  color: var(--color-red-700);
  transform: translateY(-1px);
}

.founders-story {
  max-width: 56rem;
  margin: 1.75rem auto 0;
  text-align: center;
}

.founders-story p {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.03rem;
  line-height: 1.75;
}

.light-divider {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100vw;
  margin: 0 0 1.5rem calc(50% - 50vw);
  padding: 0.35rem 2.25rem 0;
}

.light-divider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 28px;
  border-top: 2px solid rgba(135, 98, 42, 0.5);
  border-radius: 999px;
}

.light-divider span {
  --light-drop: 14px;
  position: relative;
  width: 14px;
  height: 18px;
  margin-top: var(--light-drop);
  border-radius: 10px 10px 12px 12px;
  background: linear-gradient(180deg, #fff6cf, #f8d870 58%, #e0ad36 100%);
  box-shadow:
    0 0 0 4px rgba(255, 219, 115, 0.12),
    0 0 18px rgba(255, 216, 112, 0.7),
    0 0 34px rgba(255, 199, 73, 0.38);
  z-index: 1;
}

.light-divider span::before {
  content: "";
  position: absolute;
  top: calc((var(--light-drop) + 8px) * -1);
  left: 50%;
  width: 2px;
  height: calc(var(--light-drop) + 8px);
  background: rgba(135, 98, 42, 0.55);
  transform: translateX(-50%);
}


.story-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2rem;
  align-items: start;
}

.story-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(255, 244, 242, 0.72) 45%, rgba(255, 255, 255, 0.86));
  backdrop-filter: blur(18px) saturate(150%);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
}

.story-card .section-text + .section-text {
  margin-top: 1rem;
}

.story-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.story-points div {
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--color-red-700), var(--color-red-600));
  font-weight: 600;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 28px rgba(255, 42, 31, 0.16);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.service-card,
.step-card,
.gallery-card {
  position: relative;
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px) saturate(150%);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition:
    transform 0.38s var(--ease-smooth),
    box-shadow 0.38s var(--ease-smooth),
    border-color 0.38s var(--ease-soft);
}

.service-card::before,
.step-card::before,
.gallery-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, rgba(233, 72, 63, 0.9), rgba(38, 115, 77, 0.9));
  transition: opacity 0.34s var(--ease-soft);
}

.service-card:hover,
.service-card:focus-within,
.step-card:hover,
.step-card:focus-within,
.gallery-card:hover,
.gallery-card:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 22px 42px rgba(15, 23, 18, 0.08);
  border-color: rgba(18, 22, 20, 0.08);
}

.service-card h3,
.step-card h3,
.gallery-card p {
  margin: 0;
}

.service-card p,
.step-card p {
  margin: 0.8rem 0 0;
  color: var(--color-muted);
}

.card-number {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--color-red-700);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.steps-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.steps-grid::before {
  content: "";
  position: absolute;
  top: 1.25rem;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, rgba(18, 22, 20, 0.08), rgba(18, 22, 20, 0.04));
  z-index: 0;
}

.step-card {
  z-index: 1;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.7rem;
  height: 2.7rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-green-900), var(--color-green-800));
  color: var(--color-white);
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(22, 92, 57, 0.16);
}

.choose-section {
  padding-top: 2rem;
}

.choose-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  padding: 2.4rem;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.1), transparent 28%),
    linear-gradient(145deg, #143928, #1b5938 65%, #246f48);
  box-shadow: var(--shadow-medium);
}

.choose-panel-red {
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.1), transparent 28%),
    linear-gradient(145deg, #8c231c, #b73228 65%, #d84f38);
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.benefit-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid var(--color-border-light);
  color: var(--color-white);
  font-weight: 600;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.32;
  letter-spacing: -0.01em;
}

.choose-panel-red .benefit-list li {
  font-size: 1.1rem;
}

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

.gallery-photo {
  width: 100%;
  min-height: 260px;
  margin-bottom: 1rem;
  border-radius: var(--radius-md);
  object-fit: cover;
  object-position: center;
  background: #eef0ee;
}

.gallery-placeholder {
  display: grid;
  place-items: center;
  min-height: 260px;
  margin-bottom: 1rem;
  border-radius: var(--radius-md);
  border: 1px dashed rgba(18, 22, 20, 0.1);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 244, 242, 0.74) 35%, rgba(238, 245, 239, 0.9));
  color: var(--color-muted);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.commercial-feature-card {
  max-width: 860px;
  margin: 0 auto;
}

.commercial-feature-photo {
  min-height: 420px;
}

.faq-list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px) saturate(150%);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition:
    transform 0.34s var(--ease-smooth),
    box-shadow 0.34s var(--ease-smooth),
    border-color 0.34s var(--ease-soft);
}

.faq-item:hover,
.faq-item:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(15, 23, 18, 0.06);
  border-color: rgba(18, 22, 20, 0.08);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.35rem;
  border: 0;
  background: transparent;
  color: var(--color-text);
  text-align: left;
  font-weight: 600;
  cursor: pointer;
  transition:
    color 0.3s var(--ease-soft),
    background-color 0.3s var(--ease-soft);
}

.faq-question:hover,
.faq-question:focus-visible {
  background: rgba(18, 22, 20, 0.02);
}

.faq-question::after {
  content: "+";
  float: right;
  color: var(--color-muted);
  font-size: 1.2rem;
}

.faq-item.is-open .faq-question::after {
  content: "-";
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}

.faq-answer p {
  overflow: hidden;
  margin: 0;
  padding: 0 1.35rem 0;
  color: var(--color-muted);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 1.25rem;
}

.cta-section {
  padding-top: 2rem;
}

.cta-card {
  padding: 3.5rem 2rem;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.1), transparent 28%),
    linear-gradient(145deg, #204b35, #173c2a 58%, #e35a4f 120%);
  color: var(--color-white);
  text-align: center;
  box-shadow: var(--shadow-medium);
}

.gallery-card p,
.service-card h3,
.step-card h3,
.faq-question {
  color: var(--color-text);
}

.cta-card h2 {
  max-width: 15ch;
  margin: 0 auto 1rem;
  font-family:
    -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue",
    Arial, sans-serif;
  font-size: clamp(2.3rem, 4vw, 4.4rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.contact-callout-note {
  max-width: none;
  white-space: nowrap;
  font-size: 0.96rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.4rem;
  align-items: stretch;
}

.contact-callout {
  height: 100%;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

.contact-secondary {
  background: rgba(255, 255, 255, 0.9);
}

.commercial-form-section {
  padding-top: 1rem;
}

.commercial-form-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.6rem;
  padding: 2.4rem;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.1), transparent 28%),
    linear-gradient(145deg, #143928, #1b5938 65%, #246f48);
  box-shadow: var(--shadow-medium);
}

.commercial-form-copy {
  align-self: center;
}

.commercial-benefit-list {
  margin-top: 1.5rem;
}

.commercial-form-card {
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 38px rgba(10, 20, 14, 0.12);
}

.commercial-form-card h3 {
  margin: 0.35rem 0 1.3rem;
  font-size: 1.9rem;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.contact-form-card {
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px) saturate(150%);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
}

.contact-form-card h3 {
  margin: 0 0 1.25rem;
  font-size: 1.7rem;
  letter-spacing: -0.03em;
}

.quote-form {
  display: grid;
  gap: 1rem;
}

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-field span,
.form-options legend {
  font-weight: 600;
  color: var(--color-text);
}

.form-field input {
  width: 100%;
  min-height: 3rem;
  padding: 0.8rem 0.95rem;
  border: 1px solid rgba(18, 22, 20, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--color-text);
}

.form-field input:focus {
  outline: 2px solid rgba(22, 92, 57, 0.16);
  border-color: rgba(22, 92, 57, 0.22);
}

.form-options {
  margin: 0;
  padding: 0;
  border: 0;
}

.form-options label {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 0.55rem;
  color: var(--color-muted);
}

.form-options input {
  width: auto;
  min-height: auto;
}

.form-submit {
  width: 100%;
}

.cta-card p {
  max-width: 42rem;
  margin: 0 auto 1.8rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(239, 29, 37, 0.35);
  outline-offset: 3px;
}

@media (max-width: 1080px) {
  .hero-grid,
  .page-hero-grid,
  .story-grid,
  .choose-panel,
  .commercial-form-panel,
  .contact-grid,
  .founders-grid,
  .card-grid,
  .steps-grid,
  .gallery-grid,
  .hero-strip {
    grid-template-columns: 1fr;
  }

  .steps-grid::before {
    display: none;
  }

  .story-points,
  .benefit-list {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 4.5rem 0;
  }

  .founders-title {
    white-space: normal;
  }

  .nav-wrap,
  .site-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button,
  .nav-button {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(2rem, 8.5vw, 3rem);
  }

  .hero-showcase {
    padding: 1.25rem;
  }

  .hero-gallery-controls {
    flex-direction: column;
  }

  .hero-floating {
    position: static;
    margin-top: 1rem;
  }

  .cta-card {
    padding: 3rem 1.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
