/* ============================================ */
/* FONT FACES                                   */
/* ============================================ */

@font-face {
  font-family: 'Playfair Display';
  src: url('/fonts/playfair-display-v40-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Playfair Display';
  src: url('/fonts/playfair-display-v40-latin-italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Playfair Display';
  src: url('/fonts/playfair-display-v40-latin-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Playfair Display';
  src: url('/fonts/playfair-display-v40-latin-700italic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('/fonts/dm-sans-v17-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('/fonts/dm-sans-v17-latin-italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('/fonts/dm-sans-v17-latin-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('/fonts/dm-sans-v17-latin-700italic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* ============================================ */
/* ROOT VARIABLES                               */
/* ============================================ */

:root {
  /* Palette 12: Primary */
  --green-050: #e3f9e5;
  --green-100: #c1eac5;
  --green-200: #a3d9a5;
  --green-300: #7bc47f;
  --green-400: #57ae5b;
  --green-500: #3f9142;
  --green-600: #2f8132;
  --green-700: #207227;
  --green-800: #0e5814;
  --green-900: #05400a;

  /* Palette 12: Neutrals */
  --grey-050: #f7f7f7;
  --grey-100: #e1e1e1;
  --grey-200: #cfcfcf;
  --grey-300: #b1b1b1;
  --grey-400: #9e9e9e;
  --grey-500: #7e7e7e;
  --grey-600: #626262;
  --grey-700: #515151;
  --grey-800: #3b3b3b;
  --grey-900: #222222;

  /* Palette 12: Supporting */
  --purple-050: #eae2f8;
  --purple-100: #cfbcf2;
  --purple-200: #a081d9;
  --purple-300: #8662c7;
  --purple-400: #724bb7;
  --purple-500: #653cad;
  --purple-600: #51279b;
  --purple-700: #421987;
  --purple-800: #34126f;
  --purple-900: #240754;

  --red-050: #ffeeee;
  --red-100: #facdcd;
  --red-200: #f29b9b;
  --red-300: #e66a6a;
  --red-400: #d64545;
  --red-500: #ba2525;
  --red-600: #a61b1b;
  --red-700: #911111;
  --red-800: #780a0a;
  --red-900: #610404;

  --yellow-050: #fffaeb;
  --yellow-100: #fcefc7;
  --yellow-200: #f8e3a3;
  --yellow-300: #f9da8b;
  --yellow-400: #f7d070;
  --yellow-500: #e9b949;
  --yellow-600: #c99a2e;
  --yellow-700: #a27c1a;
  --yellow-800: #7c5e10;
  --yellow-900: #513c06;

  /* Semantic theme mapping */
  --color-bg: #ffffff;
  --color-surface: var(--grey-050);
  --color-surface-2: var(--grey-100);
  --color-border: var(--grey-200);
  --color-text: var(--grey-800);
  --color-text-muted: var(--grey-600);
  --color-heading: var(--grey-900);

  --color-primary: var(--grey-900);
  --color-primary-hover: var(--grey-700);
  --color-primary-soft: var(--grey-100);
  --color-primary-soft-2: var(--grey-200);

  --color-accent: var(--purple-600);
  --color-accent-hover: var(--purple-700);
  --color-accent-soft: var(--purple-100);

  --color-link: var(--green-700);
  --color-link-hover: var(--green-800);
  --color-warning: var(--yellow-600);
  --color-danger: var(--red-600);

  --shadow-sm: 2 1px 2px rgba(34, 34, 34, 0.06);
  --shadow-md: 2 4px 6px rgba(34, 34, 34, 0.1);
  --shadow-lg: 2 10px 24px rgba(34, 34, 34, 0.07);
  --shadow-xl: 2 20px 48px rgba(34, 34, 34, 0.05);

  /* Radius scale */
  --radius-xs: 0.125rem;
  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  --radius-pill: 999px;

  --logo-size-xs: 1.75rem;
  --logo-size: 2.5rem;
  --logo-size-lg: 3.25rem;
  --logo-size-xl: 4rem;

  /* Typography */
  --topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);
  --headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
  --bodyFontSize: 1rem;
  --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;

  --headerFont: 'Playfair Display', Georgia, serif;
  --bodyFont: 'DM Sans', system-ui, sans-serif;
}

/* ============================================ */
/* CORE STYLES & RESET                          */
/* ============================================ */

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

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: var(--bodyFont);
  font-size: 100%;
  transition: background-color 0.3s;
  color: var(--color-text);
}

body {
  background: linear-gradient(180deg, #f4fbf4 0, #ffffff 14rem, #ffffff 100%);
  line-height: 1.55;
  color: var(--grey-700);
}

body.is-menu-open {
  overflow: hidden;
}

a {
  color: var(--color-link);
  transition: color 0.2s;
}

a:hover {
  color: var(--color-link-hover);
}

/* ============================================ */
/* TYPOGRAPHY UTILITIES                        */
/* ============================================ */

.section-topper {
  font-size: var(--topperFontSize);
  line-height: 1.2em;
  text-transform: uppercase;
  text-align: inherit;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: inherit;
  margin-bottom: 0.25rem;
  display: block;
}

.section-title {
  font-size: var(--headerFontSize);
  font-weight: 900;
  line-height: 1.2em;
  text-align: inherit;
  max-width: 43.75rem;
  margin: 0 0 1rem 0;
  color: inherit;
  position: relative;
}

.body-text {
  font-size: var(--bodyFontSize);
  line-height: 1.5em;
  text-align: inherit;
  width: 100%;
  max-width: 40.625rem;
  margin: 0;
  color: inherit;
}

/* ============================================ */
/* CONTAINER & UTILITIES                       */
/* ============================================ */

.site-container {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

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

.skip-link {
  z-index: -1111111;
  position: absolute;
  top: -9999px;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: fixed;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  z-index: 9999999;
}

/* ============================================ */
/* HEADER / NAVIGATION                         */
/* ============================================ */

#site-navigation {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 10;
  width: 100%;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(6px);
  min-height: 7rem;
  display: flex;
  align-items: center;
}

#site-navigation .site-container {
  padding: 0;
  flex-wrap: nowrap;
}

.site-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  z-index: 10;
}

.site-logo-image {
  width: 5.75rem;
  height: 5.75rem;
  object-fit: contain;
  display: block;
  flex: 0 0 auto;
}

.site-logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.site-brand {
  font-family: var(--headerFont);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-heading);
  display: block;
}

.site-tagline {
  font-size: 0.95rem;
  line-height: 1.3;
  font-weight: 400;
  color: var(--color-text-muted);
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
  width: auto;
  margin-left: auto;
  position: relative;
  flex: 0 0 auto;
}

.mobile-only {
  display: none;
}

.nav-list {
  width: auto;
  height: auto;
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  list-style: none;
  align-items: center;
}

.nav-item {
  list-style: none;
}

.nav-link {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5em;
  text-decoration: none;
  color: var(--color-text);
  display: inline-block;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.25s;
}

.nav-link:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 2px;
  background: var(--yellow-500);
  opacity: 0;
  transform: scaleX(0.65);
  transform-origin: center;
  transition: opacity 0.2s, transform 0.2s;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--color-heading);
}

.nav-link:hover:after {
  opacity: 0.45;
  transform: scaleX(1);
}

.nav-link.is-active:after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 0.2rem;
  border-radius: var(--radius-xs);
}

.button-solid {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5em;
  text-align: center;
  text-decoration: none;
  min-width: 9.375rem;
  padding: 0.75rem 1.5rem;
  background-color: var(--color-primary);
  color: var(--green-050);
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-sm);
  display: inline-block;
  transition: background-color 0.3s, color 0.3s;
}

.button-solid:hover {
  background-color: var(--color-primary-hover);
  color: var(--green-050);
}

/* Mobile Toggle */
.menu-toggle {
  --menu-line-width: 1.4rem;
  --menu-line-thickness: 0.16rem;
  --menu-line-gap: 0.47rem;
  --menu-line-start: 0.43rem;
  display: none;
  height: 2.75rem;
  width: 2.75rem;
  min-height: 2.75rem;
  min-width: 2.75rem;
  flex: 0 0 2.75rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  order: 2;
}

.menu-toggle-box {
  display: block;
  height: 1.9rem;
  width: 1.9rem;
  margin: auto;
  position: relative;
}

.menu-toggle-line {
  display: block;
  height: var(--menu-line-thickness);
  background-color: currentColor;
  border-radius: var(--radius-pill);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: var(--menu-line-width);
  transition: transform 0.25s ease, top 0.25s ease, opacity 0.2s ease;
}

.menu-toggle-line-1 {
  top: var(--menu-line-start);
}

.menu-toggle-line-2 {
  top: calc(var(--menu-line-start) + var(--menu-line-gap));
}

.menu-toggle-line-3 {
  top: calc(var(--menu-line-start) + (var(--menu-line-gap) * 2));
}

.menu-toggle[aria-expanded='true'] .menu-toggle-line-1 {
  top: calc(var(--menu-line-start) + var(--menu-line-gap));
  transform: translateX(-50%) rotate(45deg);
}

.menu-toggle[aria-expanded='true'] .menu-toggle-line-2 {
  opacity: 0;
  transform: translateX(-50%) scaleX(0.25);
}

.menu-toggle[aria-expanded='true'] .menu-toggle-line-3 {
  top: calc(var(--menu-line-start) + var(--menu-line-gap));
  transform: translateX(-50%) rotate(-45deg);
}

.nav-list-wrapper {
  width: auto;
}

/* ============================================ */
/* FOOTER                                      */
/* ============================================ */

#site-footer {
  padding: 1.25rem 0 0 0;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}

#site-footer .site-container {
  flex-wrap: wrap;
  gap: 3rem;
  align-items: flex-start;
  padding-bottom: 1.25rem;
}

.site-logo-group {
  flex: 1 1 20rem;
}

#site-footer .site-logo {
  margin-bottom: 1rem;
}

#site-footer .site-brand {
  font-size: 1.4rem;
}

#site-footer .body-text {
  margin: 1rem 0;
}

.footer-nav {
  flex: 1 1 10rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.footer-nav-item {
  list-style: none;
  line-height: 1.6;
}

.footer-heading {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5em;
  color: var(--color-heading);
  display: block;
  margin-bottom: 0.5rem;
}

.footer-nav-link {
  font-size: 1rem;
  text-decoration: none;
  color: var(--color-text);
  display: block;
  transition: color 0.3s;
}

.footer-nav-link:hover {
  color: var(--color-link);
}

.footer-contact {
  flex: 1 1 12rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  list-style: none;
}

.footer-contact-item {
  list-style: none;
  line-height: 1.8;
}

.footer-contact-link {
  font-size: 1rem;
  text-decoration: none;
  color: var(--color-text);
  transition: color 0.3s;
}

.footer-contact-link:hover {
  color: var(--color-link);
}

.developer-credit {
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: center;
  font-size: 0.75rem;
}

.developer-credit p {
  text-align: center;
  font-size: 0.8rem;
}

.developer-link {
  color: var(--color-text);
  text-decoration: underline;
  font-weight: 700;
  transition: color 0.3s;
}
.developer-link:hover {
  color: var(--color-link);
  text-decoration: none;
}

/* ============================================ */
/* SECTIONS & COMPONENTS                       */
/* ============================================ */

main {
  min-height: 60vh;
}

section {
  padding: var(--sectionPadding);
}

.section-intro {
  max-width: 42rem;
  margin: 0 auto 2rem;
  text-align: center;
  color: var(--color-text-muted);
}

h1,
h2,
h3,
h4 {
  color: var(--green-900);
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin: 0 0 1rem;
  color: var(--green-800);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin: 0 0 0.7rem;
  color: var(--green-900);
}

h3 {
  color: var(--green-700);
}

.section h2 {
  text-align: center;
}

.section h1 {
  text-align: center;
}

.hero h1,
.split h1 {
  text-align: left;
}

.hero-section {
  padding: 0;
  padding-right: 2rem;
  height: calc(100vh - 7rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  height: 100%;
}

.hero-content {
  padding: 2rem;
}

.hero-image {
  margin: 0;
  overflow: hidden;
  box-shadow: none;
  height: auto;
  aspect-ratio: 1600 / 1068;
  border-radius: var(--radius-md);
}

.hero-image img {
  display: block;
  width: 100%;
  height: auto;
}

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

.actions {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hero-pricing-link {
  margin-top: 0.8rem;
  font-weight: 500;
}

.btn {
  display: inline-block;
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  padding: 0.75rem 1rem;
  font-weight: 700;
  transition: all 0.3s;
}

.btn-primary {
  color: var(--color-primary-contrast, var(--green-050));
  background: var(--green-800);
  border-color: var(--green-800);
}

.btn-primary:hover {
  color: var(--color-primary-contrast, var(--green-050));
  background: var(--green-700);
  border-color: var(--green-700);
}

.btn-secondary {
  color: var(--grey-900);
  background: var(--green-300);
  border-color: var(--green-300);
}

.btn-secondary:hover {
  color: var(--green-050);
  background: var(--green-600);
}

.muted {
  background: var(--color-primary-soft);
  border-top: 1px solid var(--color-primary-soft-2);
  border-bottom: 1px solid var(--color-primary-soft-2);
}

.main-features {
  background: var(--color-primary-soft);
}

.card-grid {
  display: grid;
  gap: 1.5rem;
}

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

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

.card {
  text-align: left;
}

.intro {
  background: #ffffff;
}

.card-grid.four .card,
.card-grid.three .card {
  text-align: center;
}

.feature-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  list-style: none;
}

.feature-card,
.card {
  background: linear-gradient(180deg, #ffffff 0, #fbfefb 100%);
  border: 1px solid var(--green-200);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover,
.feature-card:hover {
  box-shadow: 0 8px 20px rgb(32 114 39 / 10%);
}

.feature-icon,
.icon-circle {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--green-300);
  background: var(--green-600);
  color: var(--green-050);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.9rem;
}

.icon {
  width: 1.55rem;
  height: 1.55rem;
}

.card ul {
  margin-top: 1rem;
  padding-left: 1.15rem;
}

.card li {
  margin-bottom: 0.45rem;
}

.rating {
  margin: 0 0 0.75rem;
  color: var(--color-warning);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.testimonial {
  text-align: left;
}

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

.portrait {
  margin: 0;
  width: 100%;
  max-width: 28.125rem;
  justify-self: end;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-xl);
}

.check-list,
.steps {
  padding-left: 1.1rem;
  list-style: none;
}

.check-list li,
.steps li {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.check-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.cta-line {
  margin-top: 1.2rem;
}

.inline-link {
  /* margin-left: 0.4rem; */
  font-weight: 700;
}

/* ============================================ */
/* SERVICES PAGE                                */
/* ============================================ */

.services-overview .card-grid.three {
  align-items: stretch;
}

.services-pricing-link {
  margin-top: -0.8rem;
  margin-bottom: 1.75rem;
}

.services-overview .card-grid.three .card {
  text-align: left;
  height: 100%;
}

.services-overview .card h3,
.services-overview .packages-table th,
.services-overview .packages-table td {
  text-align: left;
}

.services-overview .card h3 {
  margin-bottom: 0.8rem;
}

.packages-table-wrap {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow-x: auto;
  background: #ffffff;
}

.packages-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 46rem;
}

.packages-table th,
.packages-table td {
  padding: 0.85rem 0.9rem;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.97rem;
  vertical-align: top;
}

.packages-table thead th {
  background: linear-gradient(180deg, var(--green-100), var(--green-050));
  color: var(--color-heading);
  font-weight: 700;
  border-bottom: 1px solid var(--green-300);
}

.packages-table tbody th {
  font-weight: 600;
  color: var(--color-heading);
  width: 34%;
}

.packages-table td {
  width: 22%;
}

.packages-table .pricing-row th,
.packages-table .pricing-row td {
  background: var(--green-050);
  font-weight: 700;
}

.packages-table tbody tr:last-child th,
.packages-table tbody tr:last-child td {
  border-bottom: none;
}

.packages-mobile-cards {
  display: none;
}

.package-mobile-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: nowrap;
  margin-bottom: 0.45rem;
}

.package-mobile-card h3 {
  margin: 0;
}

.package-mobile-price {
  display: block;
  margin: 0;
  margin-left: auto;
  text-align: center;
  padding: 0.3rem 0.6rem;
  background: var(--yellow-100);
  border: 1px solid var(--yellow-300);
  border-radius: var(--radius-sm);
  font-weight: 700;
  color: var(--yellow-900);
}

.package-mobile-card p {
  margin-bottom: 0.35rem;
}

.package-mobile-card ul {
  margin-top: 1rem;
  padding-left: 1.2rem;
}

.package-mobile-card li {
  margin-bottom: 0.4rem;
}

.package-addons {
  margin-top: 2rem;
  padding: clamp(1.3rem, 3vw, 2rem);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, var(--green-050), #ffffff);
  border: 1px solid var(--green-200);
}

.package-addons h2 {
  text-align: left;
  margin-bottom: 0.55rem;
}

.package-addons p {
  margin-bottom: 0.65rem;
}

.package-addons ul {
  columns: 2;
  column-gap: 1.5rem;
  padding-left: 1.2rem;
}

.package-addons li {
  break-inside: avoid;
  margin-bottom: 0.45rem;
}

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

.process-section .section-intro {
  margin-bottom: 2.5rem;
}

.process-grid {
  margin-top: 0.5rem;
}

.process-card {
  text-align: center;
}

.process-step {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 0.9rem;
  background: var(--yellow-200);
  border: 1px solid var(--yellow-500);
  color: var(--yellow-900);
}

.process-card h3 {
  margin-bottom: 0.55rem;
}

.process-card p {
  max-width: 16rem;
  margin: 0 auto;
}

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

.services-industries {
  padding-top: clamp(4rem, 7vw, 5.5rem);
}

.industries-grid {
  margin-top: 1rem;
}

.industries-card {
  text-align: left;
  min-height: 7.5rem;
}

.industries-card h3 {
  margin-bottom: 0.65rem;
}

.services-industries-cta {
  margin-top: 2.5rem;
  padding: clamp(2rem, 4.5vw, 3rem) 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  background: linear-gradient(135deg, var(--green-300), var(--yellow-200));
}

.services-industries-cta p {
  font-size: clamp(1.1rem, 2vw, 1.8rem);
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 1.1rem;
}

/* ============================================ */
/* PRICING PAGE                                 */
/* ============================================ */

.pricing-cards {
  align-items: stretch;
}

.pricing-cards .card {
  text-align: left;
}

.pricing-cards h2 {
  margin-bottom: 0.35rem;
  text-align: center;
}

.price-tag {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.6rem;
  background: var(--yellow-100);
  border: 1px solid var(--yellow-300);
  border-radius: var(--radius-sm);
  font-weight: 700;
  color: var(--yellow-900);
}

.pricing-details-card {
  margin-top: 1.5rem;
}

.pricing-details-card h2 {
  text-align: left;
}

.pricing-details-card ul {
  margin-top: 0.8rem;
  padding-left: 1.2rem;
}

.pricing-cta {
  margin-top: 1.75rem;
}

/* ============================================ */
/* FAQ PAGE                                     */
/* ============================================ */

.faq-container {
  max-width: 56rem;
}

.faq-accordion {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #ffffff;
  overflow: hidden;
}

.faq-question {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: var(--color-heading);
  padding: 1rem 2.9rem 1rem 1rem;
  position: relative;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-700);
}

.faq-item[open] .faq-question::after {
  content: '-';
}

.faq-answer {
  padding: 0 1rem 1rem;
  color: var(--color-text);
}

.faq-answer p {
  margin: 0;
}

.faq-cta {
  margin-top: 1.5rem;
}

/* ============================================ */
/* ABOUT PAGE                                   */
/* ============================================ */

.about-background-section h2,
.about-values-section h2 {
  margin-bottom: 2rem;
}

.about-background-list {
  display: grid;
  gap: 1.6rem;
  max-width: 64rem;
  margin: 0 auto;
}

.about-background-card {
  text-align: left;
  padding: 1.8rem;
}

.about-background-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.75rem;
}

.about-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow-100);
  color: var(--yellow-800);
}

.about-background-card p + p {
  margin-top: 0.45rem;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 64rem;
  margin: 0 auto;
}

.about-value {
  text-align: center;
  padding: 1rem 0.8rem 0.7rem;
}

.about-value h3 {
  margin-bottom: 0.55rem;
}

.about-value p {
  max-width: 17rem;
  margin: 0 auto;
}

.about-cta-section {
  margin-top: 0;
}

.about-cta-panel h2 {
  margin-bottom: 0.45rem;
  text-align: center;
}

.about-cta-panel .section-intro {
  margin-bottom: 1rem;
}

.about-cta-actions {
  justify-content: center;
  margin-top: 0;
}

/* ============================================ */
/* FORMS                                       */
/* ============================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  height: 100%;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  height: 60%;
}

.contact-info-item {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.8rem;
  align-items: start;
}

.contact-info-icon {
  color: var(--color-heading);
  line-height: 0;
  margin-top: 0.1rem;
}

.contact-info-icon .icon {
  width: 1.55rem;
  height: 1.55rem;
}

.contact-info-body .contact-info-label {
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 0.25rem;
}

.contact-form {
  display: grid;
  gap: 0.75rem;
}

.contact-form label {
  font-weight: 700;
  color: var(--color-heading);
  display: block;
  margin-bottom: 0.25rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  background: #ffffff;
  font: inherit;
  color: var(--color-text);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px var(--color-primary-soft);
}

/* ============================================ */
/* RESPONSIVE DESIGN                           */
/* ============================================ */

@media (max-width: 1024px) {
  .site-nav {
    gap: 0.75rem;
  }

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

  .hero-section {
    padding-right: 0;
    height: auto;
    min-height: calc(100vh - 4rem);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas: 'hero';
    min-height: calc(100vh - 4rem);
    position: relative;
  }

  .hero-content,
  .hero-image {
    grid-area: hero;
  }

  .hero-content {
    position: relative;
    z-index: 1;
    align-self: center;
    margin: 0 1.5rem;
    max-width: min(36rem, calc(100% - 3rem));
    padding: 1.5rem;
    background: rgb(247 247 247 / 64%);
    border: 1px solid rgb(247 247 247 / 28%);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 24px rgb(34 34 34 / 7%);
  }

  .hero-image {
    height: 100%;
  }

  .hero-image img {
    height: 100%;
    object-fit: cover;
  }

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

  .portrait {
    justify-self: center;
  }
}

@media (max-width: 768px) {
  :root {
    --logo-size: 2.35rem;
  }

  #site-navigation {
    min-height: 5.75rem;
    position: fixed;
    top: 0;
  }

  main {
    padding-top: 5.75rem;
  }

  .site-logo-image {
    width: 4.35rem;
    height: 4.35rem;
  }

  .site-logo-text {
    min-width: 0;
  }

  .site-brand {
    font-size: 1.95rem;
    line-height: 1.1;
  }

  .site-tagline {
    font-size: 0.92rem;
  }

  .hero-content {
    align-self: center;
    margin: 0 1rem;
    max-width: min(28rem, calc(100% - 2rem));
    padding: 1.1rem;
  }

  .hero-content p {
    font-size: 1.03rem;
    line-height: 1.45;
  }

  .contact-info-body h3 {
    font-size: 1.35rem;
  }

  .contact-info-body a,
  .contact-info-body p {
    font-size: 1.1rem;
  }

  .hero-section {
    min-height: calc(84svh - 4rem);
  }

  .menu-toggle {
    display: block;
    order: 1;
    color: var(--color-heading);
    margin-left: auto;
  }

  .site-logo {
    margin-right: 0;
    gap: 0.45rem;
  }

  #site-navigation .site-container {
    flex-wrap: nowrap;
    align-items: center;
    min-height: 5.75rem;
  }

  .nav-list-wrapper {
    width: min(18rem, calc(100vw - 2rem));
    order: 3;
    display: block;
    position: absolute;
    right: 0;
    top: calc(100% - 0.35rem);
    background: rgb(247 247 247 / 96%);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    box-shadow: 0 12px 22px rgb(34 34 34 / 14%);
    backdrop-filter: blur(4px);
    padding: 0.65rem 0.9rem;
    z-index: 25;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-0.3rem) scale(0.98);
    transform-origin: top right;
    transition: opacity 0.2s ease, transform 0.22s ease, visibility 0.2s ease;
  }

  .menu-toggle[aria-expanded='true'] + .nav-list-wrapper {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: 0.25rem;
    align-items: stretch;
  }

  .nav-item {
    width: 100%;
    text-align: left;
    order: 1;
  }

  .nav-link {
    display: block;
    min-height: 2.75rem;
    width: 100%;
    padding: 0.72rem 0.72rem;
    line-height: 1.2;
    display: flex;
    align-items: center;
    border-radius: var(--radius-sm);
    color: var(--color-heading);
    font-weight: 600;
  }

  .nav-link:hover,
  .nav-link:focus-visible {
    background: var(--green-050);
  }

  .nav-link.is-active {
    background: var(--yellow-100);
  }

  .nav-link:after {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  .card-grid.four,
  .card-grid.three {
    grid-template-columns: 1fr;
  }

  .package-addons ul {
    columns: 1;
  }

  .packages-table-wrap {
    display: none;
  }

  .packages-mobile-cards {
    display: grid;
    gap: 0.75rem;
    margin-top: 0.25rem;
  }

  #site-footer .site-container {
    flex-direction: column;
    gap: 1.25rem;
    align-items: flex-start;
  }

  .site-logo-group,
  .footer-nav,
  .footer-contact {
    flex: none;
    width: 100%;
  }

  .footer-nav,
  .footer-contact {
    margin: 0;
    padding: 0;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    min-height: calc(76svh - 3.5rem);
  }

  .hero-content {
    margin: 0 0.75rem;
    max-width: calc(100% - 1.5rem);
    padding: 0.95rem 0.95rem 1.05rem;
  }

  .hero-content h1 {
    font-size: clamp(2rem, 9vw, 2.35rem);
    line-height: 1.12;
    margin-bottom: 0.65rem;
  }

  .hero-content .actions {
    margin-top: 1rem;
    gap: 0.6rem;
  }

  .site-brand {
    font-size: 1.35rem;
  }

  .site-tagline {
    font-size: 0.8rem;
  }

  .site-logo-image {
    width: 3.7rem;
    height: 3.7rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

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

  .contact-info-list {
    gap: 1.1rem;
  }

  .contact-info-item {
    grid-template-columns: 1.8rem 1fr;
    gap: 0.7rem;
  }

  .contact-info-icon .icon {
    width: 1.4rem;
    height: 1.4rem;
  }

  .contact-info-body h3 {
    font-size: 1.2rem;
  }

  .contact-info-body a,
  .contact-info-body p {
    font-size: 1.02rem;
  }

  .actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-list-wrapper {
    transition: none;
  }
}
