/*
Theme Name: websysTheme
Theme URI: https://46.62.215.36:15176
Author: OpenAI Codex
Description: Avada child theme for Jaguar Farm Enhancement.
Template: Avada
Version: 1.0.0
Text Domain: websystheme
*/

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Questrial&display=swap');

:root {
  --bg: #f3eee4;
  --bg-soft: #efe5d4;
  --bg-dark: #151a17;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-dark: rgba(21, 26, 23, 0.72);
  --text: #1f241f;
  --text-soft: #5d635b;
  --light: #fbf8f2;
  --accent: #9d6a34;
  --accent-dark: #7f5222;
  --olive: #2f4336;
  --border: rgba(31, 36, 31, 0.12);
  --shadow: 0 24px 60px rgba(29, 27, 22, 0.12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100vw - 2rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Questrial', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(157, 106, 52, 0.18), transparent 24rem),
    linear-gradient(180deg, #fbf7ef 0%, #f3eee4 46%, #efe8dc 100%);
  line-height: 1.6;
}

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

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

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

input,
textarea,
button {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.section--sand {
  background: linear-gradient(180deg, rgba(240, 229, 210, 0.9), rgba(244, 238, 228, 0.82));
}

.section--dark {
  color: var(--light);
  background:
    linear-gradient(180deg, rgba(8, 12, 10, 0.84), rgba(21, 26, 23, 0.94)),
    linear-gradient(135deg, #1c2521 0%, #0f1512 100%);
}

.section-banner {
  padding: 2.4rem 0;
  background:
    linear-gradient(120deg, rgba(14, 18, 16, 0.92), rgba(47, 67, 54, 0.88)),
    url('./assets/images/exterior-accent.jpg') center/cover;
  color: var(--light);
  text-align: center;
}

.section-banner p {
  margin: 0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 8vw, 5rem);
  letter-spacing: 0.08em;
}

.section-heading {
  margin-bottom: 2.2rem;
}

.section-heading--center {
  text-align: center;
}

.section-heading h2,
.why-layout h2,
.media-layout h2,
.contact-card h2,
.page-hero h1,
.story-layout h2,
.owner-callout h2 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(157, 106, 52, 0.12);
  color: var(--accent-dark);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.section-tag--light {
  background: rgba(255, 255, 255, 0.16);
  color: var(--light);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.25rem;
  padding: 0.85rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--accent);
  color: var(--light);
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.button--secondary,
.button--ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(31, 36, 31, 0.18);
}

.button--secondary:hover,
.button--ghost:hover {
  background: rgba(31, 36, 31, 0.08);
}

.button--light {
  color: var(--light);
  border-color: rgba(255, 255, 255, 0.32);
}

.button--light:hover {
  background: rgba(255, 255, 255, 0.12);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 0.75rem 0;
  transition: background 0.2s ease, box-shadow 0.2s ease, backdrop-filter 0.2s ease;
}

.site-header--scrolled {
  background: rgba(251, 248, 242, 0.88);
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand {
  display: flex;
  flex-direction: column;
}

.brand__kicker {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
}

.brand__name {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.08em;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.site-nav .menu {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.site-nav a {
  position: relative;
  padding-bottom: 0.15rem;
  font-size: 0.97rem;
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.site-nav a:hover::after,
.site-nav .current-menu-item a::after,
.site-nav .current_page_item a::after {
  transform: scaleX(1);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem;
  border: 1px solid rgba(31, 36, 31, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.language-switcher__link {
  min-width: 2.5rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  color: var(--text-soft);
  transition: background 0.2s ease, color 0.2s ease;
}

.language-switcher__link:hover {
  background: rgba(31, 36, 31, 0.08);
  color: var(--text);
}

.language-switcher__link.is-active {
  background: var(--olive);
  color: var(--light);
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  cursor: pointer;
}

.nav-toggle__line {
  display: block;
  width: 1.15rem;
  height: 2px;
  margin: 0.2rem auto;
  background: var(--text);
}

.hero,
.page-hero {
  position: relative;
  isolation: isolate;
  color: var(--light);
}

.hero {
  min-height: 82svh;
  display: flex;
  align-items: center;
}

.page-hero {
  min-height: 52svh;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(135deg, #1c2521 0%, #314338 100%);
}

.page-hero--simple {
  min-height: 32svh;
}

.hero__media,
.page-hero__media,
.hero__overlay,
.page-hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__video,
.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay,
.page-hero__overlay {
  background:
    linear-gradient(135deg, rgba(7, 10, 8, 0.78), rgba(18, 26, 22, 0.38) 50%, rgba(157, 106, 52, 0.38) 100%);
}

.hero__content,
.page-hero__content {
  position: relative;
  z-index: 1;
  padding: 7rem 0 5rem;
}

.hero h1,
.page-hero h1 {
  max-width: min(100%, 12.5ch);
  font-size: 7rem;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  text-wrap: balance;
  text-shadow: 0 6px 28px rgba(0, 0, 0, 0.35);
}

.hero__lead,
.page-hero p {
  max-width: 42rem;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255, 255, 255, 0.88);
}

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

.split-layout,
.story-layout,
.why-layout,
.contact-layout,
.media-layout {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.split-layout,
.why-layout,
.media-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.story-layout {
  grid-template-columns: 0.95fr 1.05fr;
}

.split-layout__copy,
.story-layout__copy {
  max-width: 38rem;
}

.split-layout--reverse .image-stack {
  order: 2;
}

.split-layout--reverse .split-layout__copy {
  order: 1;
}

.image-stack {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.2fr 0.8fr;
}

.image-stack__item,
.story-layout__media,
.service-card,
.video-card,
.owner-callout,
.contact-card,
.contact-sidebar__panel,
.project-shot,
.project-story__accent,
.stat-card,
.notice,
.prose {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-stack__item img,
.story-layout__media img,
.service-card__image img,
.video-card img,
.owner-callout__media img,
.project-shot img,
.project-story__accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-stack__item--large {
  min-height: 26rem;
}

.image-stack__item:not(.image-stack__item--large) {
  min-height: 18rem;
  align-self: end;
}

.service-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.service-card {
  background: var(--surface);
  border: 1px solid rgba(31, 36, 31, 0.08);
}

.service-card__image {
  aspect-ratio: 4 / 3;
}

.service-card__body {
  padding: 1.5rem;
}

.service-card h3,
.video-card h3,
.project-story h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.section-actions {
  margin-top: 2rem;
  text-align: center;
}

.media-layout__video .video-frame {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.media-layout__video iframe {
  width: 100%;
  min-height: 24rem;
  border: 0;
}

.video-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.video-card img {
  aspect-ratio: 4 / 5;
}

.video-card__body {
  padding: 1.5rem;
}

.video-card span {
  display: inline-flex;
  margin-top: 0.5rem;
  color: #f4cb93;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
}

.check-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.check-list li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 1.05rem;
}

.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--accent);
}

.owner-callout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(244, 238, 228, 0.96));
  border: 1px solid rgba(31, 36, 31, 0.08);
}

.owner-callout__media {
  min-height: 100%;
}

.owner-callout__body {
  padding: 2rem;
}

.owner-callout__title {
  margin-top: -0.35rem;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.9rem;
}

.owner-callout__details {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.owner-callout__link {
  color: var(--olive);
}

.owner-callout__service-area {
  color: var(--text-soft);
}

.stats-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.75rem;
}

.stat-card {
  padding: 1.3rem;
  background: rgba(255, 255, 255, 0.75);
}

.stat-card strong {
  display: block;
  color: var(--accent-dark);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.06em;
}

.feature-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.feature-list li {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(31, 36, 31, 0.08);
}

.story-list {
  display: grid;
  gap: 2rem;
}

.project-story {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 1.75rem;
  align-items: center;
}

.project-story--reverse {
  grid-template-columns: 1.18fr 0.82fr;
}

.project-story--reverse .project-story__copy {
  order: 2;
}

.project-story--reverse .project-story__gallery {
  order: 1;
}

.project-story__gallery {
  display: grid;
  gap: 1rem;
  grid-template-columns: 0.8fr 1fr 1fr;
  align-items: end;
}

.project-story__accent {
  min-height: 16rem;
}

.project-shot {
  background: var(--surface);
}

.project-shot img {
  aspect-ratio: 4 / 5;
}

.project-shot figcaption {
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.95);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: var(--accent-dark);
}

.project-shot--after figcaption {
  background: rgba(47, 67, 54, 0.94);
  color: var(--light);
}

.contact-layout {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
}

.contact-card,
.contact-sidebar__panel,
.prose {
  padding: 2rem;
  background: var(--surface);
  border: 1px solid rgba(31, 36, 31, 0.08);
}

.contact-form {
  margin-top: 1.5rem;
}

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

.form-grid__full {
  grid-column: 1 / -1;
}

.form-grid label {
  display: grid;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(31, 36, 31, 0.12);
  border-radius: 1rem;
  background: #fff;
}

.form-grid input:focus,
.form-grid textarea:focus {
  outline: 2px solid rgba(157, 106, 52, 0.18);
  border-color: rgba(157, 106, 52, 0.42);
}

.contact-sidebar__panel {
  display: grid;
  gap: 1rem;
  background:
    linear-gradient(160deg, rgba(47, 67, 54, 0.96), rgba(21, 26, 23, 0.96)),
    url('./assets/images/videos-poster.jpg') center/cover;
  color: var(--light);
}

.contact-sidebar__links {
  display: grid;
  gap: 0.7rem;
}

.notice {
  margin-bottom: 1rem;
  padding: 1rem 1.15rem;
}

.notice--success {
  background: rgba(47, 67, 54, 0.12);
  color: var(--olive);
}

.notice--error {
  background: rgba(157, 106, 52, 0.12);
  color: var(--accent-dark);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.social-links--tight .social-links__item {
  background: rgba(255, 255, 255, 0.18);
}

.social-links__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.site-footer {
  padding: 4rem 0 1.6rem;
  background: #121714;
  color: rgba(255, 255, 255, 0.82);
}

.site-main {
  overflow: clip;
}

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

.site-footer__social {
  display: grid;
  gap: 1rem;
  justify-items: start;
}

.site-footer__intro h2 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: #fff;
}

.site-footer__contact,
.site-footer__links {
  display: grid;
  gap: 0.7rem;
}

.site-footer__links a,
.site-footer__contact a {
  color: rgba(255, 255, 255, 0.88);
}

.site-footer__language {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.site-footer__language .language-switcher__link {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer__language .language-switcher__link:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--light);
}

.site-footer__language .language-switcher__link.is-active {
  background: var(--light);
  color: var(--olive);
}

.site-footer__bar {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.92rem;
}

.prose h1,
.prose h2,
.prose h3 {
  margin-top: 0;
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.fusion-fullwidth.jagel-native-section > .fusion-builder-row,
.fusion-fullwidth.jagel-native-banner > .fusion-builder-row,
.fusion-fullwidth.jagel-native-hero > .fusion-builder-row,
.fusion-fullwidth.jagel-native-page-hero > .fusion-builder-row {
  width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.fusion-fullwidth.jagel-native-hero,
.fusion-fullwidth.jagel-native-page-hero {
  position: relative;
  color: var(--light);
}

.fusion-fullwidth.jagel-native-hero > .fusion-builder-row {
  min-height: 82svh;
  display: flex;
  align-items: center;
}

.fusion-fullwidth.jagel-native-page-hero {
  min-height: 52svh;
  background: linear-gradient(135deg, #1c2521 0%, #314338 100%);
}

.fusion-fullwidth.jagel-native-page-hero > .fusion-builder-row {
  min-height: 52svh;
  display: flex;
  align-items: flex-end;
}

.jagel-native-hero .fullwidth-overlay,
.jagel-native-page-hero .fullwidth-overlay {
  background:
    linear-gradient(135deg, rgba(7, 10, 8, 0.78), rgba(18, 26, 22, 0.38) 50%, rgba(157, 106, 52, 0.38) 100%) !important;
}

.jagel-native-hero-copy,
.jagel-native-page-hero-copy {
  padding: 7rem 0 5rem;
}

.jagel-native-hero-copy {
  max-width: min(100%, 44rem);
}

.jagel-native-section-copy,
.jagel-native-story-copy {
  max-width: 38rem;
}

body .jagel-native-hero-title h1,
body .jagel-native-page-title h1 {
  color: var(--light);
  text-shadow: 0 6px 28px rgba(0, 0, 0, 0.35);
}

body .jagel-native-hero-title h1 {
  max-width: min(100%, 12.5ch);
  font-size: 7rem;
  letter-spacing: 0;
  overflow-wrap: normal;
  text-wrap: balance;
}

body .jagel-native-page-title h1 {
  font-size: clamp(3.4rem, 10vw, 6rem);
}

.jagel-native-hero-copy .fusion-text p,
.jagel-native-page-hero-copy .fusion-text p {
  color: rgba(255, 255, 255, 0.88);
}

.jagel-native-hero-lead,
.jagel-native-page-lead {
  max-width: 42rem;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
}

body .fusion-button.jagel-native-button {
  min-height: 3.25rem;
  margin-top: 1rem;
  margin-right: 1rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--accent);
  color: var(--light) !important;
  box-shadow: none;
}

body .fusion-button.jagel-native-button:hover {
  background: var(--accent-dark);
}

body .fusion-button.jagel-native-button--ghost,
body .fusion-button.jagel-native-button--secondary {
  background: transparent;
  box-shadow: none;
}

body .fusion-button.jagel-native-button--secondary {
  border-color: rgba(31, 36, 31, 0.18);
  color: var(--text) !important;
}

body .fusion-button.jagel-native-button--secondary:hover {
  background: rgba(31, 36, 31, 0.08);
}

body .fusion-button.jagel-native-button--ghost {
  border-color: rgba(255, 255, 255, 0.32);
  color: var(--light) !important;
}

body .fusion-button.jagel-native-button--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.jagel-native-contact-sidebar .fusion-button.jagel-native-button--secondary {
  border-color: rgba(255, 255, 255, 0.26);
  color: var(--light) !important;
}

.jagel-native-image-stack .fusion-column-wrapper {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
}

.jagel-native-image-stack .fusion-imageframe {
  display: block;
  overflow: hidden;
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
}

.jagel-native-image-stack .fusion-imageframe:first-child {
  min-height: 26rem;
}

.jagel-native-image-stack .fusion-imageframe:not(:first-child) {
  min-height: 18rem;
}

.jagel-native-image-stack .fusion-imageframe img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card > .fusion-column-wrapper,
.video-card > .fusion-column-wrapper,
.jagel-native-owner-summary > .fusion-column-wrapper,
.jagel-native-owner-card > .fusion-column-wrapper,
.project-shot > .fusion-column-wrapper,
.jagel-native-owner-media > .fusion-column-wrapper {
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.service-card > .fusion-column-wrapper,
.jagel-native-owner-summary > .fusion-column-wrapper,
.project-shot > .fusion-column-wrapper {
  background: var(--surface);
  border: 1px solid rgba(31, 36, 31, 0.08);
}

.video-card > .fusion-column-wrapper {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--light);
}

.jagel-native-owner-card > .fusion-column-wrapper {
  padding: 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(244, 238, 228, 0.96));
  border: 1px solid rgba(31, 36, 31, 0.08);
}

.service-card .fusion-imageframe,
.video-card .fusion-imageframe,
.project-shot .fusion-imageframe,
.jagel-native-owner-summary .fusion-imageframe,
.jagel-native-story-media .fusion-imageframe,
.jagel-native-owner-media .fusion-imageframe {
  display: block;
  box-shadow: none;
}

.service-card .fusion-imageframe img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.video-card .fusion-imageframe img,
.project-shot .fusion-imageframe img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.jagel-native-project-accent .fusion-imageframe img {
  width: 100%;
  min-height: 16rem;
  object-fit: cover;
}

.jagel-native-owner-media .fusion-imageframe img,
.jagel-native-story-media .fusion-imageframe img,
.jagel-native-owner-summary .fusion-imageframe img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card .fusion-title,
.service-card .fusion-text,
.video-card .fusion-title,
.video-card .fusion-text,
.jagel-native-owner-summary .fusion-title,
.jagel-native-owner-summary .fusion-text {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.service-card .fusion-title,
.video-card .fusion-title,
.jagel-native-owner-summary .fusion-title {
  padding-top: 1.5rem;
}

.service-card .fusion-text:last-child,
.video-card .fusion-text:last-child,
.jagel-native-owner-summary .fusion-text:last-child {
  padding-bottom: 1.5rem;
}

body .service-card h3,
body .video-card h3,
body .jagel-native-owner-summary h3 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.jagel-native-center-copy,
.jagel-native-center-actions {
  text-align: center;
}

.jagel-native-video-column .fusion-video {
  margin-top: 1.5rem;
}

.jagel-native-video-column iframe {
  border: 0;
  min-height: 24rem;
}

body .jagel-native-title-light h1,
body .jagel-native-title-light h2,
body .jagel-native-title-light h3 {
  color: var(--light);
}

.jagel-native-banner .fusion-title {
  margin-bottom: 0;
}

body .jagel-native-banner-title h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  letter-spacing: 0.08em;
  text-align: center;
  color: var(--light);
}

.jagel-native-checklist {
  margin-top: 1.5rem;
}

.jagel-native-checklist .fusion-li-item-content {
  color: var(--text);
}

.section--dark .jagel-native-checklist .fusion-li-item-content {
  color: var(--light);
}

.jagel-native-owner-title {
  margin-top: -0.35rem;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.9rem;
}

.jagel-native-caption {
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.95);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: var(--accent-dark);
}

.project-shot--after .jagel-native-caption {
  background: rgba(47, 67, 54, 0.94);
  color: var(--light);
}

.contact-card .fusion-code {
  margin-top: 1.5rem;
}

.contact-sidebar__panel .fusion-button {
  margin-top: 0.75rem;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 960px) {
  .site-nav,
  .header-cta {
    display: none;
  }

  .site-header__actions {
    margin-left: auto;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-open .site-nav {
    display: block;
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 1rem;
    left: 1rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    background: rgba(251, 248, 242, 0.98);
    box-shadow: var(--shadow);
  }

  .nav-open .site-nav .menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .split-layout,
  .story-layout,
  .why-layout,
  .contact-layout,
  .media-layout,
  .project-story,
  .project-story--reverse,
  .owner-callout,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .project-story--reverse .project-story__copy,
  .project-story--reverse .project-story__gallery {
    order: initial;
  }

  .project-story__gallery {
    grid-template-columns: 1fr;
  }

  .image-stack {
    grid-template-columns: 1fr;
  }

  .jagel-native-image-stack .fusion-column-wrapper {
    grid-template-columns: 1fr;
  }

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

  .hero {
    min-height: 72svh;
  }

  .hero h1,
  .page-hero h1,
  body .jagel-native-hero-title h1 {
    font-size: 5.75rem;
  }
}

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

  .site-header__inner {
    position: relative;
    gap: 0.5rem;
    min-height: 3.5rem;
    padding-right: 3.25rem;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .brand__name {
    max-width: 9.5rem;
    font-size: clamp(1.35rem, 6vw, 1.65rem);
    line-height: 1;
    text-wrap: balance;
  }

  .site-header__actions {
    display: none;
  }

  .nav-open .site-header__actions {
    position: absolute;
    top: calc(100% + 1rem);
    right: 2rem;
    z-index: 22;
    display: flex;
    gap: 0.5rem;
  }

  .nav-open .site-nav {
    padding-top: 4.25rem;
  }

  .nav-toggle {
    flex: 0 0 2.75rem;
    position: fixed;
    top: 1.1rem;
    right: 1rem;
    width: 2.75rem;
    height: 2.75rem;
    z-index: 30;
  }

  .hero__content,
  .page-hero__content {
    padding: 6rem 0 4rem;
  }

  .hero h1,
  .page-hero h1,
  body .jagel-native-hero-title h1 {
    font-size: clamp(2.55rem, 11.5vw, 2.95rem);
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
  }

  .jagel-native-hero-copy,
  .jagel-native-page-hero-copy {
    padding: 6rem 0 4rem;
  }

  .jagel-native-hero-copy {
    max-width: calc(100% - 2rem);
    margin-left: 1rem;
  }

  .jagel-native-hero-lead {
    max-width: min(100%, 20rem);
    font-size: clamp(1.15rem, 4.8vw, 1.4rem);
    line-height: 1.35;
    white-space: normal;
  }

  .contact-card,
  .contact-sidebar__panel,
  .owner-callout__body,
  .prose {
    padding: 1.4rem;
  }

  .button {
    width: 100%;
  }

  body .fusion-button.jagel-native-button {
    width: 100%;
    margin-right: 0;
  }

  .hero__actions {
    flex-direction: column;
  }
}

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

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