/* =========================================================
   EDEL DIETITIAN
   MASTER SITE STYLESHEET
   ========================================================= */


/* =========================================================
   FONTS
   ========================================================= */

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/cormorant-garamond-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/inter-latin.woff2") format("woff2");
}


/* =========================================================
   DESIGN SYSTEM
   ========================================================= */

:root {
  --background: #f7f3ec;
  --footer-background: #d8d2c7;

  --heading: #1a1a1a;
  --text: #17212b;
  --muted: #667069;

  --accent: #7e9080;
  --accent-dark: #596c5d;
  --accent-hover: #46594a;
  --accent-soft: #e7ebe5;

  --nav-text: #46534c;

  --surface: #ffffff;
  --line: #d8ddd6;

  --shadow-soft:
    0 20px 50px rgba(38, 49, 42, 0.07);

  --shadow:
    0 24px 70px rgba(38, 49, 42, 0.09);

  --site-width: 1200px;

  --radius-small: 8px;
  --radius: 14px;
  --radius-large: 20px;

  --header-height: 84px;
}


/* =========================================================
   RESET / DOCUMENT
   ========================================================= */

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

html {
  min-height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  min-height: 100vh;
  margin: 0;

  background: var(--background);
  color: var(--text);

  font-family: "Inter", sans-serif;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;

  overflow-x: clip;
}

img,
svg,
video {
  max-width: 100%;
}

img {
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

[hidden] {
  display: none !important;
}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.skip-link {
  position: fixed;

  left: 16px;
  top: -100px;

  z-index: 10000;

  padding: 12px 16px;

  background: var(--text);
  color: #ffffff;

  border-radius: 6px;

  text-decoration: none;
}

.skip-link:focus {
  top: 16px;
}

.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;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline:
    3px solid rgba(126, 144, 128, 0.48);

  outline-offset: 3px;
}


/* =========================================================
   GLOBAL SHELLS
   ========================================================= */

.edel-shell,
.edel-about-shell,
.edel-page-shell,
.edel-gut-shell,
.edel-weight-shell,
.edel-metabolic-shell,
.edel-sport-shell,
.edel-process-shell,
.edel-resources-shell,
.edel-contact-shell,
.edel-policy-shell {
  width: min(calc(100% - 80px), var(--site-width));
  margin-inline: auto;
}


/* =========================================================
   GLOBAL TYPOGRAPHY
   ========================================================= */

.edel-eyebrow,
.edel-section-eyebrow,
.edel-about-eyebrow,
.edel-page-eyebrow,
.edel-gut-eyebrow,
.edel-weight-eyebrow,
.edel-metabolic-eyebrow,
.edel-sport-eyebrow,
.edel-process-eyebrow,
.edel-resources-eyebrow,
.edel-contact-eyebrow,
.edel-policy-eyebrow {
  margin: 0 0 12px;

  color: var(--accent-dark);

  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.4;

  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.edel-text-link,
.edel-about-text-link,
.edel-page-text-link,
.edel-gut-text-link,
.edel-weight-text-link,
.edel-metabolic-text-link,
.edel-sport-text-link,
.edel-process-text-link,
.edel-resources-text-link {
  display: inline-block;

  color: var(--accent-dark);

  font-family: "Inter", sans-serif;
  font-weight: 500;

  text-decoration-thickness: 1px;
  text-underline-offset: 4px;

  transition: color 0.2s ease;
}

.edel-text-link:hover,
.edel-about-text-link:hover,
.edel-page-text-link:hover,
.edel-gut-text-link:hover,
.edel-weight-text-link:hover,
.edel-metabolic-text-link:hover,
.edel-sport-text-link:hover,
.edel-process-text-link:hover,
.edel-resources-text-link:hover {
  color: var(--heading);
}


/* =========================================================
   GLOBAL BUTTONS
   ========================================================= */

.edel-button,
.edel-about-button,
.edel-page-button,
.edel-gut-button,
.edel-weight-button,
.edel-metabolic-button,
.edel-sport-button,
.edel-process-button,
.edel-resources-button,
.edel-contact-button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-width: 220px;
  min-height: 52px;

  padding: 15px 24px;

  background: var(--accent-dark);
  color: #ffffff !important;

  border: 1px solid var(--accent-dark);
  border-radius: var(--radius-small);

  font-family: "Inter", sans-serif;
  font-weight: 500;
  line-height: 1.2;

  text-align: center;
  text-decoration: none;

  box-shadow:
    0 10px 24px rgba(89, 108, 93, 0.18);

  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.15s ease,
    box-shadow 0.2s ease;
}

.edel-button:hover,
.edel-about-button:hover,
.edel-page-button:hover,
.edel-gut-button:hover,
.edel-weight-button:hover,
.edel-metabolic-button:hover,
.edel-sport-button:hover,
.edel-process-button:hover,
.edel-resources-button:hover,
.edel-contact-button:hover {
  background: var(--accent-hover);

  border-color: var(--accent-hover);

  transform: translateY(-1px);

  box-shadow:
    0 14px 28px rgba(89, 108, 93, 0.24);
}

.edel-process-followup-button,
.edel-resources-secondary-button,
.edel-contact-secondary-button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-width: 220px;
  min-height: 52px;

  padding: 15px 24px;

  background: transparent;
  color: var(--text) !important;

  border: 1px solid var(--accent);
  border-radius: var(--radius-small);

  font-family: "Inter", sans-serif;
  font-weight: 500;

  text-align: center;
  text-decoration: none;

  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.15s ease;
}

.edel-process-followup-button:hover,
.edel-resources-secondary-button:hover,
.edel-contact-secondary-button:hover {
  background: var(--accent-dark);
  color: #ffffff !important;

  border-color: var(--accent-dark);

  transform: translateY(-1px);
}


/* =========================================================
   GLOBAL HEADER
   ========================================================= */

.site-header {
  position: sticky;

  top: 0;

  z-index: 1000;

  background:
    rgba(247, 243, 236, 0.97);

  border-bottom:
    1px solid rgba(126, 144, 128, 0.13);

  box-shadow:
    0 6px 22px rgba(38, 49, 42, 0.035);

  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.site-header .inside-header {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 30px;

  width: min(calc(100% - 80px), var(--site-width));

  margin-inline: auto;

  padding: 16px 0;
}

.site-branding {
  display: inline-flex;

  align-items: center;

  gap: 11px;

  flex: 0 0 auto;

  color: var(--heading);

  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;

  text-decoration: none;
}

.site-branding img {
  display: block;

  width: 48px;
  height: 48px;

  object-fit: contain;
}

.site-branding:hover {
  color: var(--heading);
}


/* =========================================================
   PRIMARY NAVIGATION
   ========================================================= */

.main-navigation {
  margin-left: auto;
}

.main-navigation ul {
  margin: 0;
  padding: 0;

  list-style: none;
}

.main-navigation > .menu {
  display: flex;

  align-items: center;

  gap: 7px;
}

.main-navigation > .menu > li {
  position: relative;
}

.main-navigation a,
.submenu-toggle {
  display: flex;

  align-items: center;

  gap: 5px;

  padding: 9px 7px;

  background: transparent;
  color: var(--nav-text);

  border: 0;

  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.2;

  letter-spacing: 0.015em;

  text-decoration: none;

  cursor: pointer;

  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.main-navigation a:hover,
.submenu-toggle:hover,
.main-navigation a[aria-current="page"] {
  color: var(--accent-dark);
}

.main-navigation a[aria-current="page"] {
  font-weight: 500;
}

.submenu-toggle span {
  color: var(--accent);
}


/* =========================================================
   NAVIGATION DROPDOWN
   ========================================================= */

.sub-menu {
  position: absolute;

  left: 0;
  top: calc(100% + 8px);

  width: 285px;

  padding: 9px !important;

  background:
    rgba(247, 243, 236, 0.99);

  border:
    1px solid rgba(126, 144, 128, 0.20);

  border-radius: 10px;

  box-shadow:
    0 18px 42px rgba(38, 49, 42, 0.10);

  opacity: 0;
  visibility: hidden;

  transform: translateY(6px);

  transition:
    opacity 0.18s ease,
    visibility 0.18s ease,
    transform 0.18s ease;
}

.menu-item-has-children:hover > .sub-menu,
.menu-item-has-children:focus-within > .sub-menu,
.menu-item-has-children.is-open > .sub-menu {
  opacity: 1;
  visibility: visible;

  transform: none;
}

.sub-menu li,
.sub-menu a {
  width: 100%;
}

.sub-menu a {
  padding: 11px 13px;

  border-radius: 7px;

  font-size: 0.81rem;
  line-height: 1.35;

  white-space: nowrap;
}

.sub-menu a:hover,
.sub-menu a[aria-current="page"] {
  background: var(--accent-soft);
}


/* =========================================================
   BOOK CTA
   ========================================================= */

.edel-book-menu {
  margin-left: 8px;
}

.edel-book-menu > a {
  min-height: 40px;

  justify-content: center;

  padding: 9px 19px;

  border:
    1px solid rgba(126, 144, 128, 0.78);

  border-radius: 8px;

  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.15s ease;
}

.edel-book-menu > a:hover {
  background: var(--accent);
  color: var(--background);

  border-color: var(--accent);

  transform: translateY(-1px);
}


/* =========================================================
   MOBILE MENU BUTTON
   ========================================================= */

.menu-toggle {
  display: none;

  width: 44px;
  height: 44px;

  padding: 9px;

  background: transparent;

  border:
    1px solid transparent;

  border-radius: 50%;

  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;

  width: 23px;
  height: 2px;

  margin: 5px auto;

  background: var(--accent-dark);

  border-radius: 999px;

  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(1) {
  transform:
    translateY(7px)
    rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(3) {
  transform:
    translateY(-7px)
    rotate(-45deg);
}


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

input:not([type="checkbox"]):not([type="radio"]),
select,
textarea {
  color: var(--text);

  background: var(--surface);

  border: 1px solid var(--line);
  border-radius: 9px;

  outline: none;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

input:not([type="checkbox"]):not([type="radio"]):hover,
select:hover,
textarea:hover {
  border-color: var(--accent);
}

input:not([type="checkbox"]):not([type="radio"]):focus,
select:focus,
textarea:focus {
  border-color: var(--accent);

  box-shadow:
    0 0 0 4px rgba(126, 144, 128, 0.13);
}


/* =========================================================
   HOME
   ========================================================= */

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

.edel-home {
  width: 100%;

  background: var(--background);
  color: var(--text);
}


/* =========================================================
   HOME HERO
   ========================================================= */

.edel-hero {
  position: relative;

  padding: 24px 0 66px;
}

.edel-hero-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1.06fr)
    minmax(360px, 0.94fr);

  gap: 62px;

  align-items: start;
}

.edel-hero-copy {
  position: relative;

  z-index: 2;

  max-width: 685px;

  padding-top: 54px;
}

.edel-hero h1 {
  margin: 0;

  color: var(--heading);

  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4rem, 5.9vw, 5.55rem);
  font-weight: 500;
  line-height: 0.97;

  letter-spacing: -0.03em;
}

.edel-hero h1 span {
  display: block;

  color: var(--accent-dark);
}

.edel-intro {
  max-width: 585px;

  margin: 22px 0 0;

  color: var(--muted);

  font-size: 1.06rem;
  line-height: 1.68;
}

.edel-actions {
  display: flex;

  align-items: center;

  gap: 26px;

  margin-top: 31px;
}


/* =========================================================
   HOME HERO PORTRAIT
   ========================================================= */

.edel-hero-portrait {
  position: relative;

  display: flex;

  align-items: flex-end;
  justify-content: center;

  min-width: 0;

  padding-top: 8px;
}

.edel-portrait-shape {
  position: absolute;

  width: 91%;
  height: 78%;

  left: 50%;
  bottom: 0;

  transform: translateX(-50%);

  background: var(--accent-soft);

  border-radius:
    48% 48% 18px 18px;
}

.edel-portrait-shape::before {
  content: "";

  position: absolute;

  width: 66%;
  aspect-ratio: 1;

  left: -13%;
  top: -14%;

  border:
    1px solid rgba(126, 144, 128, 0.28);

  border-radius: 50%;
}

.edel-portrait-shape::after {
  content: "";

  position: absolute;

  width: 50%;
  aspect-ratio: 1;

  right: -11%;
  bottom: -8%;

  z-index: -1;

  background: var(--footer-background);

  border-radius: 50%;
}

.edel-portrait-image {
  position: relative;

  z-index: 2;

  display: block;

  width: min(100%, 480px);

  margin: 0 auto;
}


/* =========================================================
   CREDENTIAL STRIP
   ========================================================= */

.edel-credentials {
  padding: 34px 0;

  background: var(--accent-soft);

  border-top:
    1px solid rgba(126, 144, 128, 0.16);

  border-bottom:
    1px solid rgba(126, 144, 128, 0.16);
}

.edel-credentials-grid {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 38px;
}

.edel-credential {
  display: flex;

  flex-direction: column;
}

.edel-credential-line {
  display: block;

  width: 38px;
  height: 2px;

  margin-bottom: 13px;

  background: var(--accent);
}

.edel-credential strong {
  color: var(--heading);

  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.15;
}

.edel-credential > span:last-child {
  margin-top: 5px;

  color: var(--muted);

  font-size: 0.73rem;
  line-height: 1.45;
}


/* =========================================================
   HOME SERVICES
   ========================================================= */

.edel-services {
  padding: 108px 0 96px;
}

.edel-heading-split {
  display: grid;

  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(310px, 0.72fr);

  gap: 82px;

  align-items: end;

  margin-bottom: 54px;
}

.edel-services h2,
.edel-meet h2,
.edel-process h2,
.edel-testimonials h2,
.edel-faq h2,
.edel-final-cta h2 {
  margin: 0;

  color: var(--heading);

  font-family: "Cormorant Garamond", serif;
  font-weight: 500;

  letter-spacing: -0.025em;
}

.edel-services h2 {
  max-width: 660px;

  font-size: clamp(3rem, 4.6vw, 4.25rem);
  line-height: 0.99;
}

.edel-heading-intro {
  max-width: 430px;
}

.edel-heading-intro p {
  margin: 0 0 18px;

  color: var(--muted);

  font-size: 0.97rem;
  line-height: 1.7;
}

.edel-services-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 18px;
}

.edel-service-card {
  position: relative;

  display: flex;

  flex-direction: column;

  min-height: 320px;

  padding: 34px;

  background:
    rgba(255, 255, 255, 0.54);

  color: var(--text);

  border:
    1px solid rgba(126, 144, 128, 0.24);

  border-radius: 16px;

  text-decoration: none;

  overflow: hidden;

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.edel-service-card:nth-child(2),
.edel-service-card:nth-child(3) {
  background:
    rgba(231, 235, 229, 0.55);
}

.edel-service-card:hover {
  background: var(--surface);

  border-color:
    rgba(126, 144, 128, 0.52);

  transform: translateY(-3px);

  box-shadow: var(--shadow-soft);
}

.edel-card-line {
  display: block;

  width: 44px;
  height: 2px;

  margin-bottom: 24px;

  background: var(--accent);

  transition: width 0.25s ease;
}

.edel-service-card:hover .edel-card-line {
  width: 72px;
}

.edel-card-kicker {
  color: var(--accent-dark);

  font-size: 0.67rem;
  font-weight: 600;

  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.edel-service-card h3 {
  max-width: 470px;

  margin: auto 0 13px;

  color: var(--heading);

  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 2.7vw, 2.7rem);
  font-weight: 500;
  line-height: 1.02;

  letter-spacing: -0.017em;
}

.edel-service-card p {
  max-width: 475px;

  margin: 0;

  color: var(--muted);

  font-size: 0.91rem;
  line-height: 1.65;
}

.edel-card-link {
  margin-top: 20px;

  color: var(--accent-dark);

  font-size: 0.78rem;
  font-weight: 600;
}


/* =========================================================
   EDITORIAL IMAGE BREAK
   ========================================================= */

.edel-editorial-break {
  padding: 0 0 108px;
}

.edel-editorial-frame {
  position: relative;

  min-height: 440px;

  overflow: hidden;

  border-radius: 20px;

  box-shadow: var(--shadow);
}

.edel-editorial-frame > img {
  display: block;

  width: 100%;
  height: 440px;

  object-fit: cover;
}

.edel-editorial-message {
  position: absolute;

  width: min(430px, calc(100% - 80px));

  left: 48px;
  top: 50%;

  transform: translateY(-50%);

  padding: 30px 32px;

  background:
    rgba(247, 243, 236, 0.90);

  border:
    1px solid rgba(126, 144, 128, 0.22);

  border-radius: 12px;

  box-shadow:
    0 18px 46px rgba(38, 49, 42, 0.07);

  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.edel-editorial-statement {
  margin: 0;

  color: var(--heading);

  font-family: "Cormorant Garamond", serif;
  font-size: 2.65rem;
  font-weight: 500;
  line-height: 1;

  letter-spacing: -0.02em;
}

.edel-editorial-statement span {
  display: block;

  color: var(--accent-dark);
}

.edel-editorial-copy {
  max-width: 360px;

  margin: 17px 0 0;

  color: var(--muted);

  font-size: 0.89rem;
  line-height: 1.65;
}


/* =========================================================
   MEET EDEL
   ========================================================= */

.edel-meet {
  padding: 105px 0;

  background: var(--footer-background);
}

.edel-meet-grid {
  display: grid;

  grid-template-columns:
    minmax(390px, 0.96fr)
    minmax(0, 1.04fr);

  gap: 88px;

  align-items: center;
}

.edel-meet-visual {
  position: relative;

  display: flex;

  justify-content: center;
  align-items: flex-end;

  min-height: 600px;
}

.edel-meet-shape {
  position: absolute;

  width: 88%;
  height: 86%;

  left: 2%;
  bottom: 0;

  background:
    rgba(247, 243, 236, 0.80);

  border-radius:
    48% 48% 18px 18px;
}

.edel-meet-image {
  position: relative;

  z-index: 2;

  display: block;

  width: min(100%, 485px);

  margin: 0 auto;
}

.edel-experience-badge {
  position: absolute;

  z-index: 3;

  right: 0;
  bottom: 38px;

  width: 148px;

  padding: 18px;

  background: var(--accent-dark);
  color: #ffffff;

  border-radius: 10px;

  box-shadow:
    0 18px 38px rgba(38, 49, 42, 0.16);
}

.edel-experience-badge strong,
.edel-experience-badge span {
  display: block;
}

.edel-experience-badge strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 500;
  line-height: 0.9;
}

.edel-experience-badge span {
  margin-top: 7px;

  color: var(--accent-soft);

  font-size: 0.68rem;
  line-height: 1.4;
}

.edel-meet-copy {
  max-width: 590px;
}

.edel-meet h2 {
  max-width: 590px;

  font-size: clamp(3rem, 4.5vw, 4.2rem);
  line-height: 0.99;
}

.edel-meet-lead {
  margin-top: 25px !important;

  color: var(--heading) !important;

  font-size: 1.04rem !important;
}

.edel-meet-copy > p:not(.edel-section-eyebrow) {
  margin: 18px 0 0;

  color: var(--text);

  font-size: 0.96rem;
  line-height: 1.75;
}

.edel-meet-details {
  margin: 31px 0 26px;

  border-top:
    1px solid rgba(89, 108, 93, 0.18);
}

.edel-meet-details > div {
  display: grid;

  grid-template-columns:
    145px 1fr;

  gap: 20px;

  padding: 17px 0;

  border-bottom:
    1px solid rgba(89, 108, 93, 0.18);
}

.edel-meet-details span {
  color: var(--accent-dark);

  font-size: 0.67rem;
  font-weight: 600;

  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.edel-meet-details strong {
  color: var(--heading);

  font-family: "Cormorant Garamond", serif;
  font-size: 1.18rem;
  font-weight: 600;
}


/* =========================================================
   HOME PROCESS
   ========================================================= */

.edel-process {
  padding: 108px 0 114px;
}

.edel-process-heading {
  max-width: 750px;

  margin-bottom: 52px;
}

.edel-process h2 {
  font-size: clamp(3rem, 4.5vw, 4.2rem);
  line-height: 0.99;
}

.edel-process-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 18px;
}

.edel-process-step {
  min-height: 290px;

  padding: 31px;

  background: var(--accent-soft);

  border:
    1px solid rgba(126, 144, 128, 0.18);

  border-radius: 14px;
}

.edel-process-number {
  display: block;

  color: var(--accent-dark);

  font-size: 0.72rem;
  font-weight: 600;

  letter-spacing: 0.12em;
}

.edel-process-line {
  display: block;

  width: 38px;
  height: 2px;

  margin-top: 16px;

  background: var(--accent);
}

.edel-process-step h3 {
  margin: 70px 0 12px;

  color: var(--heading);

  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 500;
}

.edel-process-step p {
  margin: 0;

  color: var(--muted);

  font-size: 0.9rem;
  line-height: 1.65;
}


/* =========================================================
   TESTIMONIALS
   ========================================================= */

.edel-testimonials {
  padding: 104px 0;

  background: var(--accent-dark);
}

.edel-testimonial-heading {
  max-width: 700px;

  margin-bottom: 45px;
}

.edel-testimonials .edel-section-eyebrow {
  color: var(--accent-soft);
}

.edel-testimonials h2 {
  color: #ffffff;

  font-size: clamp(3rem, 4.5vw, 4.2rem);
  line-height: 0.99;
}

.edel-testimonial-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 18px;
}

.edel-testimonial-card {
  position: relative;

  min-height: 320px;

  margin: 0;
  padding: 35px;

  background:
    rgba(255, 255, 255, 0.075);

  border:
    1px solid rgba(255, 255, 255, 0.18);

  border-radius: 15px;
}

.edel-stars {
  color: var(--accent-soft);

  font-size: 0.74rem;

  letter-spacing: 0.16em;
}

.edel-quote {
  display: block;

  height: 57px;

  margin-top: 28px;

  color:
    rgba(231, 235, 229, 0.72);

  font-family: "Cormorant Garamond", serif;
  font-size: 5rem;
  line-height: 0.72;
}

.edel-testimonial-card p {
  max-width: 500px;

  margin: 18px 0 34px;

  color: #ffffff;

  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.85rem, 2.5vw, 2.35rem);
  font-weight: 500;
  line-height: 1.12;
}

.edel-testimonial-card footer {
  position: absolute;

  left: 35px;
  bottom: 33px;

  color: var(--accent-soft);

  font-size: 0.76rem;
  font-style: normal;
  font-weight: 500;
}


/* =========================================================
   HOME FAQ
   ========================================================= */

.edel-faq {
  padding: 108px 0 112px;
}

.edel-faq-grid {
  display: grid;

  grid-template-columns:
    minmax(280px, 0.68fr)
    minmax(0, 1.32fr);

  gap: 92px;
}

.edel-faq-heading {
  max-width: 390px;
}

.edel-faq h2 {
  font-size: clamp(2.9rem, 4.1vw, 3.9rem);
  line-height: 1;
}

.edel-faq-heading > p:not(.edel-section-eyebrow) {
  margin: 20px 0 18px;

  color: var(--muted);

  font-size: 0.93rem;
  line-height: 1.65;
}

.edel-faq-item {
  border-top:
    1px solid var(--line);
}

.edel-faq-item:last-child {
  border-bottom:
    1px solid var(--line);
}


/* =========================================================
   SHARED FAQ
   ========================================================= */

.edel-faq-item summary,
.edel-gut-faq-item summary,
.edel-weight-faq-item summary,
.edel-metabolic-faq-item summary,
.edel-sport-faq-item summary,
.edel-process-faq-item summary,
.edel-contact-faq-item summary {
  position: relative;

  display: block;

  padding: 24px 44px 24px 0;

  color: var(--heading);

  font-family: "Cormorant Garamond", serif;
  font-size: 1.43rem;
  font-weight: 600;
  line-height: 1.2;

  cursor: pointer;

  list-style: none;
}

.edel-faq-item summary::-webkit-details-marker,
.edel-gut-faq-item summary::-webkit-details-marker,
.edel-weight-faq-item summary::-webkit-details-marker,
.edel-metabolic-faq-item summary::-webkit-details-marker,
.edel-sport-faq-item summary::-webkit-details-marker,
.edel-process-faq-item summary::-webkit-details-marker,
.edel-contact-faq-item summary::-webkit-details-marker {
  display: none;
}

.edel-faq-item summary::after,
.edel-gut-faq-item summary::after,
.edel-weight-faq-item summary::after,
.edel-metabolic-faq-item summary::after,
.edel-sport-faq-item summary::after,
.edel-process-faq-item summary::after,
.edel-contact-faq-item summary::after {
  content: "+";

  position: absolute;

  right: 3px;
  top: 50%;

  transform: translateY(-50%);

  color: var(--accent-dark);

  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
}

.edel-faq-item[open] summary::after,
.edel-gut-faq-item[open] summary::after,
.edel-weight-faq-item[open] summary::after,
.edel-metabolic-faq-item[open] summary::after,
.edel-sport-faq-item[open] summary::after,
.edel-process-faq-item[open] summary::after,
.edel-contact-faq-item[open] summary::after {
  content: "−";
}

.edel-faq-item div,
.edel-gut-faq-item div,
.edel-weight-faq-item div,
.edel-metabolic-faq-item div,
.edel-sport-faq-item div,
.edel-process-faq-item div,
.edel-contact-faq-item div {
  padding: 0 44px 24px 0;
}

.edel-faq-item div p,
.edel-gut-faq-item div p,
.edel-weight-faq-item div p,
.edel-metabolic-faq-item div p,
.edel-sport-faq-item div p,
.edel-process-faq-item div p,
.edel-contact-faq-item div p {
  max-width: 700px;

  margin: 0;

  color: var(--muted);

  font-size: 0.91rem;
  line-height: 1.7;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.edel-final-cta,
.edel-about-final,
.edel-gut-final,
.edel-weight-final,
.edel-metabolic-final,
.edel-sport-final,
.edel-process-final,
.edel-contact-final {
  padding: 94px 0 98px;

  background: var(--accent-soft);
}

.edel-final-inner,
.edel-about-final-inner,
.edel-gut-final-inner,
.edel-weight-final-inner,
.edel-metabolic-final-inner,
.edel-sport-final-inner,
.edel-process-final-inner,
.edel-contact-final-inner {
  max-width: 800px;

  margin-inline: auto;

  text-align: center;
}

.edel-final-line,
.edel-about-final-line,
.edel-gut-final-line,
.edel-weight-final-line,
.edel-metabolic-final-line,
.edel-sport-final-line,
.edel-process-final-line,
.edel-contact-final-line {
  display: block;

  width: 48px;
  height: 2px;

  margin: 0 auto 22px;

  background: var(--accent);
}

.edel-final-cta h2,
.edel-about-final h2,
.edel-gut-final h2,
.edel-weight-final h2,
.edel-metabolic-final h2,
.edel-sport-final h2,
.edel-process-final h2,
.edel-contact-final h2 {
  margin: 0;

  color: var(--heading);

  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.1rem, 4.7vw, 4.4rem);
  font-weight: 500;
  line-height: 0.98;

  letter-spacing: -0.025em;
}

.edel-about-final h2 span,
.edel-gut-final h2 span,
.edel-weight-final h2 span,
.edel-metabolic-final h2 span,
.edel-sport-final h2 span,
.edel-process-final h2 span,
.edel-contact-final h2 span {
  display: block;

  color: var(--accent-dark);
}

.edel-final-inner > p:not(.edel-section-eyebrow),
.edel-about-final-inner > p:not(.edel-about-eyebrow),
.edel-gut-final-inner > p:not(.edel-gut-eyebrow),
.edel-weight-final-inner > p:not(.edel-weight-eyebrow),
.edel-metabolic-final-inner > p:not(.edel-metabolic-eyebrow),
.edel-sport-final-inner > p:not(.edel-sport-eyebrow),
.edel-process-final-inner > p:not(.edel-process-eyebrow),
.edel-contact-final-inner > p:not(.edel-contact-eyebrow) {
  max-width: 620px;

  margin: 20px auto 0;

  color: var(--muted);

  font-size: 0.96rem;
  line-height: 1.68;
}


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

.edel-about-page {
  width: 100%;

  background: var(--background);
}

.edel-about-story h2,
.edel-about-journey h2,
.edel-about-approach h2,
.edel-about-practice h2,
.edel-about-specialisms h2,
.edel-about-professional h2 {
  margin: 0;

  color: var(--heading);

  font-family: "Cormorant Garamond", serif;
  font-weight: 500;

  letter-spacing: -0.025em;
}


/* ABOUT HERO */

.edel-about-hero {
  padding: 62px 0 84px;
}

.edel-about-hero-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(390px, 0.95fr);

  gap: 78px;

  align-items: center;
}

.edel-about-hero-copy {
  max-width: 690px;
}

.edel-about-hero h1 {
  margin: 0;

  color: var(--heading);

  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4rem, 5.8vw, 5.55rem);
  font-weight: 500;
  line-height: 0.97;

  letter-spacing: -0.03em;
}

.edel-about-hero h1 span {
  display: block;

  color: var(--accent-dark);
}

.edel-about-lead {
  max-width: 600px;

  margin: 24px 0 0;

  color: var(--heading);

  font-size: 1.02rem;
  line-height: 1.7;
}

.edel-about-intro {
  max-width: 580px;

  margin: 14px 0 0;

  color: var(--muted);

  font-size: 0.95rem;
  line-height: 1.7;
}

.edel-about-actions {
  display: flex;

  align-items: center;

  gap: 24px;

  margin-top: 31px;
}

.edel-about-hero-visual {
  display: grid;

  gap: 16px;

  width: min(100%, 470px);

  margin-left: auto;
}

.edel-about-portrait-stage {
  position: relative;

  min-height: 590px;

  overflow: hidden;

  background: var(--footer-background);

  border:
    1px solid rgba(126, 144, 128, 0.22);

  border-radius:
    230px 230px 20px 20px;
}

.edel-about-portrait-circle {
  position: absolute;

  width: 360px;
  height: 360px;

  right: -65px;
  top: 75px;

  border:
    1px solid rgba(126, 144, 128, 0.37);

  border-radius: 50%;
}

.edel-about-portrait-stage img {
  position: absolute;

  left: 50%;
  bottom: 0;

  width: 94%;
  max-height: 96%;

  object-fit: contain;

  transform: translateX(-50%);
}

.edel-about-hero-detail {
  display: grid;

  grid-template-columns:
    1fr auto;

  gap: 5px 20px;

  padding: 21px 24px;

  background: var(--accent-dark);
  color: #ffffff;

  border-radius: 12px;
}

.edel-about-hero-detail span {
  grid-column: 1 / -1;

  color: var(--accent-soft);

  font-size: 0.63rem;
  font-weight: 600;

  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.edel-about-hero-detail strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 600;
}

.edel-about-hero-detail small {
  align-self: end;

  color: var(--accent-soft);

  font-size: 0.67rem;
}


/* ABOUT TRUST */

.edel-about-trust {
  padding: 29px 0;

  background: var(--accent-soft);

  border-top:
    1px solid rgba(126, 144, 128, 0.16);

  border-bottom:
    1px solid rgba(126, 144, 128, 0.16);
}

.edel-about-trust-grid {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 34px;
}

.edel-about-trust-grid > div {
  display: flex;

  flex-direction: column;
}

.edel-about-mini-line {
  width: 34px;
  height: 2px;

  margin-bottom: 10px;

  background: var(--accent);
}

.edel-about-trust strong {
  color: var(--heading);

  font-family: "Cormorant Garamond", serif;
  font-size: 1.14rem;
  font-weight: 600;
}

.edel-about-trust small {
  margin-top: 4px;

  color: var(--muted);

  font-size: 0.68rem;
  line-height: 1.4;
}


/* ABOUT STORY */

.edel-about-story {
  padding: 112px 0;
}

.edel-about-story-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(360px, 0.75fr);

  gap: 90px;
}

.edel-about-story h2 {
  max-width: 710px;

  font-size: clamp(3rem, 4.5vw, 4.25rem);
  line-height: 0.99;
}

.edel-about-story-copy {
  max-width: 490px;
}

.edel-about-story-copy p {
  margin: 0 0 17px;

  color: var(--muted);

  font-size: 0.94rem;
  line-height: 1.72;
}

.edel-about-large-copy {
  color: var(--heading) !important;

  font-family: "Cormorant Garamond", serif !important;
  font-size: clamp(1.7rem, 2.25vw, 2.1rem) !important;
  font-weight: 500;
  line-height: 1.22 !important;
}


/* ABOUT JOURNEY */

.edel-about-journey {
  padding: 105px 0 112px;

  background: var(--footer-background);
}

.edel-about-journey-heading {
  max-width: 720px;

  margin-bottom: 49px;
}

.edel-about-journey h2 {
  font-size: clamp(3rem, 4.5vw, 4.2rem);
  line-height: 0.99;
}

.edel-about-journey-grid {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 16px;
}

.edel-about-journey-grid article {
  min-height: 330px;

  padding: 27px;

  background:
    rgba(247, 243, 236, 0.72);

  border:
    1px solid rgba(89, 108, 93, 0.17);

  border-radius: 14px;
}

.edel-about-journey-number {
  color: var(--accent-dark);

  font-size: 0.68rem;
  font-weight: 600;

  letter-spacing: 0.12em;
}

.edel-about-journey-line {
  display: block;

  width: 34px;
  height: 2px;

  margin-top: 14px;

  background: var(--accent);
}

.edel-about-journey-kicker {
  margin: 55px 0 6px;

  color: var(--accent-dark);

  font-size: 0.64rem;
  font-weight: 600;

  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.edel-about-journey-grid h3 {
  margin: 0 0 10px;

  color: var(--heading);

  font-family: "Cormorant Garamond", serif;
  font-size: 1.85rem;
  font-weight: 500;
}

.edel-about-journey-grid article > p:last-child {
  margin: 0;

  color: var(--muted);

  font-size: 0.85rem;
  line-height: 1.65;
}


/* ABOUT APPROACH */

.edel-about-approach {
  padding: 110px 0;

  background: var(--accent-dark);
}

.edel-about-approach .edel-about-eyebrow {
  color: var(--accent-soft);
}

.edel-about-approach-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(320px, 0.7fr);

  gap: 85px;

  align-items: end;

  margin-bottom: 48px;
}

.edel-about-approach h2 {
  color: #ffffff;

  font-size: clamp(3.1rem, 4.7vw, 4.4rem);
  line-height: 0.98;
}

.edel-about-approach h2 span {
  display: block;

  color: var(--accent-soft);
}

.edel-about-approach-copy {
  max-width: 445px;
}

.edel-about-approach-copy p {
  margin: 0 0 14px;

  color:
    rgba(255, 255, 255, 0.82);

  font-size: 0.93rem;
  line-height: 1.7;
}

.edel-about-values-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 18px;
}

.edel-about-values-grid article {
  min-height: 270px;

  padding: 30px;

  background:
    rgba(255, 255, 255, 0.075);

  border:
    1px solid rgba(255, 255, 255, 0.17);

  border-radius: 14px;
}

.edel-about-values-grid span {
  display: block;

  margin-bottom: 62px;

  color: var(--accent-soft);

  font-size: 0.68rem;
  font-weight: 600;
}

.edel-about-values-grid strong {
  display: block;

  color: #ffffff;

  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  font-weight: 500;
}

.edel-about-values-grid p {
  margin: 12px 0 0;

  color:
    rgba(255, 255, 255, 0.78);

  font-size: 0.87rem;
  line-height: 1.65;
}


/* ABOUT PRACTICE */

.edel-about-practice {
  padding: 108px 0;
}

.edel-about-practice-grid {
  display: grid;

  grid-template-columns:
    minmax(360px, 0.9fr)
    minmax(0, 1.1fr);

  gap: 90px;

  align-items: center;
}

.edel-about-practice-frame {
  min-height: 570px;

  overflow: hidden;

  background: var(--accent-soft);

  border:
    1px solid rgba(126, 144, 128, 0.2);

  border-radius:
    190px 190px 18px 18px;
}

.edel-about-practice-frame img {
  display: block;

  width: 100%;
  height: 570px;

  object-fit: contain;
  object-position: center bottom;
}

.edel-about-practice-copy {
  max-width: 600px;
}

.edel-about-practice h2 {
  font-size: clamp(3rem, 4.5vw, 4.2rem);
  line-height: 0.99;
}

.edel-about-practice-copy > p:not(.edel-about-eyebrow) {
  margin: 18px 0 0;

  color: var(--muted);

  font-size: 0.94rem;
  line-height: 1.72;
}


/* ABOUT SPECIALISMS */

.edel-about-specialisms {
  padding: 105px 0 112px;

  background: var(--footer-background);
}

.edel-about-specialisms-heading {
  max-width: 760px;

  margin-bottom: 46px;
}

.edel-about-specialisms h2 {
  max-width: 700px;

  font-size: clamp(3rem, 4.5vw, 4.2rem);
  line-height: 0.99;
}

.edel-about-specialisms-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 16px;
}

.edel-about-specialisms-grid > a {
  display: grid;

  grid-template-columns:
    38px 1fr auto;

  gap: 18px;

  min-height: 185px;

  padding: 27px;

  background:
    rgba(247, 243, 236, 0.75);

  border:
    1px solid rgba(89, 108, 93, 0.16);

  border-radius: 14px;

  color: var(--text);

  text-decoration: none;

  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.edel-about-specialisms-grid > a:hover {
  transform: translateY(-2px);

  border-color:
    rgba(89, 108, 93, 0.35);

  background: var(--background);
}

.edel-about-specialisms-grid > a > span {
  color: var(--accent-dark);

  font-size: 0.68rem;
  font-weight: 600;
}

.edel-about-specialisms-grid strong {
  display: block;

  color: var(--heading);

  font-family: "Cormorant Garamond", serif;
  font-size: 1.65rem;
  font-weight: 600;
}

.edel-about-specialisms-grid p {
  max-width: 420px;

  margin: 9px 0 0;

  color: var(--muted);

  font-size: 0.86rem;
  line-height: 1.65;
}

.edel-about-specialisms-grid b {
  color: var(--accent-dark);

  font-size: 1rem;
  font-weight: 400;
}


/* ABOUT PROFESSIONAL */

.edel-about-professional {
  padding: 105px 0;
}

.edel-about-professional-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(360px, 0.9fr);

  gap: 88px;

  align-items: center;
}

.edel-about-professional h2 {
  max-width: 620px;

  font-size: clamp(3rem, 4.5vw, 4.2rem);
  line-height: 0.99;
}

.edel-about-professional-grid > div:first-child > p:not(.edel-about-eyebrow) {
  max-width: 570px;

  margin: 18px 0 0;

  color: var(--muted);

  font-size: 0.94rem;
  line-height: 1.72;
}

.edel-about-professional-panel,
.edel-gut-professional-panel,
.edel-weight-professional-panel,
.edel-metabolic-professional-panel,
.edel-sport-professional-panel {
  padding: 35px;

  background: var(--accent-soft);

  border:
    1px solid rgba(126, 144, 128, 0.21);

  border-radius: 18px;
}


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

.edel-custom-page,
.edel-services-page {
  width: 100%;

  background: var(--background);
  color: var(--text);
}

.edel-services-hero {
  padding: 58px 0 82px;
}

.edel-services-hero-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 0.95fr)
    minmax(420px, 1.05fr);

  gap: 78px;

  align-items: center;
}

.edel-services-hero-copy {
  max-width: 650px;
}

.edel-services-hero h1 {
  margin: 0;

  color: var(--heading);

  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4rem, 5.6vw, 5.45rem);
  font-weight: 500;
  line-height: 0.97;

  letter-spacing: -0.03em;
}

.edel-services-hero h1 span {
  display: block;

  color: var(--accent-dark);
}

.edel-page-lead {
  max-width: 575px;

  margin: 23px 0 0;

  color: var(--muted);

  font-size: 1.05rem;
  line-height: 1.68;
}

.edel-page-actions {
  display: flex;

  align-items: center;

  gap: 24px;

  margin-top: 31px;
}

.edel-services-hero-visual {
  position: relative;

  padding: 18px 0 32px 28px;
}

.edel-services-image-frame {
  position: relative;

  min-height: 470px;

  overflow: hidden;

  border-radius: 18px;

  box-shadow: var(--shadow);
}

.edel-services-image-frame img {
  display: block;

  width: 100%;
  height: 470px;

  object-fit: cover;
  object-position: 65% center;
}

.edel-hero-clinical-note {
  position: absolute;

  z-index: 3;

  left: 0;
  bottom: 0;

  display: flex;

  flex-direction: column;

  min-width: 205px;

  padding: 20px 22px;

  background: var(--accent-dark);
  color: #ffffff;

  border-radius: 10px;

  box-shadow:
    0 18px 40px rgba(38, 49, 42, 0.18);
}

.edel-note-line {
  display: block;

  width: 35px;
  height: 2px;

  margin-bottom: 12px;

  background: var(--accent-soft);
}

.edel-hero-clinical-note > span:not(.edel-note-line) {
  color: var(--accent-soft);

  font-size: 0.68rem;
}

.edel-hero-clinical-note strong {
  margin-top: 4px;

  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 600;
}


/* SERVICES TRUST */

.edel-services-trust {
  padding: 26px 0;

  background: var(--accent-soft);

  border-top:
    1px solid rgba(126, 144, 128, 0.17);

  border-bottom:
    1px solid rgba(126, 144, 128, 0.17);
}

.edel-services-trust-grid {
  display: grid;

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

.edel-services-trust-grid > div {
  display: flex;

  flex-direction: column;

  padding: 3px 35px;

  border-right:
    1px solid rgba(89, 108, 93, 0.17);
}

.edel-services-trust-grid > div:first-child {
  padding-left: 0;
}

.edel-services-trust-grid > div:last-child {
  padding-right: 0;

  border-right: 0;
}

.edel-services-trust-grid strong {
  color: var(--heading);

  font-family: "Cormorant Garamond", serif;
  font-size: 1.18rem;
  font-weight: 600;
}

.edel-services-trust-grid span {
  margin-top: 3px;

  color: var(--muted);

  font-size: 0.7rem;
}


/* SERVICES INTRO */

.edel-services-introduction {
  padding: 105px 0 78px;
}

.edel-introduction-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(340px, 0.75fr);

  gap: 86px;
}

.edel-services-introduction h2,
.edel-service-detail h2,
.edel-clinical-approach h2,
.edel-services-decision h2 {
  margin: 0;

  color: var(--heading);

  font-family: "Cormorant Garamond", serif;
  font-weight: 500;

  letter-spacing: -0.025em;
}

.edel-services-introduction h2 {
  max-width: 670px;

  font-size: clamp(3rem, 4.6vw, 4.25rem);
  line-height: 0.99;
}

.edel-introduction-copy {
  max-width: 470px;

  padding-top: 9px;
}

.edel-introduction-copy p {
  margin: 0 0 18px;

  color: var(--muted);

  font-size: 0.96rem;
  line-height: 1.72;
}


/* SERVICE DETAILS */

.edel-service-detail {
  padding: 76px 0;

  border-top:
    1px solid rgba(126, 144, 128, 0.16);
}

.edel-service-detail-soft {
  background:
    rgba(231, 235, 229, 0.52);
}

.edel-service-detail-grid {
  display: grid;

  grid-template-columns:
    minmax(280px, 0.72fr)
    minmax(0, 1.28fr);

  gap: 100px;
}

.edel-service-title-column {
  position: sticky;

  top: 110px;
}

.edel-service-index {
  display: block;

  color: var(--accent-dark);

  font-size: 0.69rem;
  font-weight: 600;

  letter-spacing: 0.14em;
}

.edel-service-rule {
  display: block;

  width: 42px;
  height: 2px;

  margin: 17px 0 23px;

  background: var(--accent);
}

.edel-service-kicker {
  margin: 0 0 9px;

  color: var(--accent-dark);

  font-size: 0.68rem;
  font-weight: 600;

  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.edel-service-detail h2 {
  max-width: 430px;

  font-size: clamp(2.65rem, 3.9vw, 3.7rem);
  line-height: 1;
}

.edel-service-description {
  max-width: 690px;
}

.edel-service-large-copy {
  margin: 0 0 21px !important;

  color: var(--heading) !important;

  font-family: "Cormorant Garamond", serif !important;
  font-size: clamp(1.65rem, 2.2vw, 2.05rem) !important;
  font-weight: 500;
  line-height: 1.22 !important;
}

.edel-service-description > p {
  margin: 0;

  color: var(--muted);

  font-size: 0.94rem;
  line-height: 1.72;
}

.edel-service-may-help {
  margin-top: 31px;

  padding: 26px 28px;

  background:
    rgba(255, 255, 255, 0.54);

  border:
    1px solid rgba(126, 144, 128, 0.21);

  border-radius: 12px;
}

.edel-service-may-help > span {
  display: block;

  margin-bottom: 14px;

  color: var(--accent-dark);

  font-size: 0.69rem;
  font-weight: 600;

  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.edel-service-may-help ul {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 10px 28px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.edel-service-may-help li {
  position: relative;

  padding-left: 17px;

  font-size: 0.86rem;
  line-height: 1.5;
}

.edel-service-may-help li::before {
  content: "";

  position: absolute;

  width: 5px;
  height: 5px;

  left: 0;
  top: 0.58em;

  background: var(--accent);

  border-radius: 50%;
}

.edel-service-link {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  margin-top: 25px;

  color: var(--accent-dark);

  font-size: 0.84rem;
  font-weight: 600;

  text-decoration: none;
}


/* CLINICAL APPROACH */

.edel-clinical-approach {
  padding: 105px 0 112px;

  background: var(--footer-background);
}

.edel-approach-top {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(300px, 0.63fr);

  gap: 86px;

  align-items: end;

  margin-bottom: 50px;
}

.edel-clinical-approach h2 {
  max-width: 720px;

  font-size: clamp(3rem, 4.5vw, 4.2rem);
  line-height: 0.99;
}

.edel-approach-top > p {
  max-width: 410px;

  margin: 0 0 4px;

  font-size: 0.95rem;
  line-height: 1.7;
}

.edel-approach-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 18px;
}

.edel-approach-grid article {
  min-height: 275px;

  padding: 30px;

  background:
    rgba(247, 243, 236, 0.7);

  border:
    1px solid rgba(89, 108, 93, 0.17);

  border-radius: 14px;
}

.edel-approach-number {
  display: block;

  margin-bottom: 60px;

  color: var(--accent-dark);

  font-size: 0.7rem;
  font-weight: 600;

  letter-spacing: 0.12em;
}

.edel-approach-grid h3 {
  margin: 0 0 11px;

  color: var(--heading);

  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 500;
}

.edel-approach-grid p {
  margin: 0;

  color: var(--muted);

  font-size: 0.88rem;
  line-height: 1.65;
}


/* SERVICES DECISION */

.edel-services-decision {
  padding: 105px 0;

  background: var(--accent-soft);
}

.edel-decision-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(330px, 0.72fr);

  gap: 90px;

  align-items: center;
}

.edel-decision-line {
  display: block;

  width: 48px;
  height: 2px;

  margin-bottom: 22px;

  background: var(--accent);
}

.edel-services-decision h2 {
  max-width: 700px;

  font-size: clamp(3rem, 4.6vw, 4.25rem);
  line-height: 0.99;
}

.edel-decision-copy {
  max-width: 465px;
}

.edel-decision-copy > p {
  margin: 0;

  color: var(--muted);

  font-size: 0.95rem;
  line-height: 1.72;
}

.edel-decision-actions {
  display: flex;

  flex-direction: column;
  align-items: flex-start;

  gap: 16px;

  margin-top: 27px;
}


/* =========================================================
   SPECIALIST SERVICE PAGES
   GUT / WEIGHT / METABOLIC / SPORT
   ========================================================= */

.edel-gut-page,
.edel-weight-page,
.edel-metabolic-page,
.edel-sport-page {
  width: 100%;

  background: var(--background);
  color: var(--text);
}


/* SPECIALIST HEADINGS */

.edel-gut-context h2,
.edel-gut-support h2,
.edel-gut-process h2,
.edel-gut-fodmap h2,
.edel-gut-medical h2,
.edel-gut-professional h2,
.edel-gut-faq h2,
.edel-weight-context h2,
.edel-weight-support h2,
.edel-weight-process h2,
.edel-weight-philosophy h2,
.edel-weight-professional h2,
.edel-weight-faq h2,
.edel-metabolic-context h2,
.edel-metabolic-dimensions h2,
.edel-metabolic-support h2,
.edel-metabolic-process h2,
.edel-metabolic-philosophy h2,
.edel-metabolic-medical h2,
.edel-metabolic-professional h2,
.edel-metabolic-faq h2,
.edel-sport-context h2,
.edel-sport-support h2,
.edel-sport-day h2,
.edel-sport-philosophy h2,
.edel-sport-professional h2,
.edel-sport-context-note h2,
.edel-sport-faq h2 {
  margin: 0;

  color: var(--heading);

  font-family: "Cormorant Garamond", serif;
  font-weight: 500;

  letter-spacing: -0.025em;
}


/* SPECIALIST HERO */

.edel-gut-hero,
.edel-weight-hero,
.edel-metabolic-hero,
.edel-sport-hero {
  padding: 36px 0 78px;
}

.edel-gut-back,
.edel-weight-back,
.edel-metabolic-back,
.edel-sport-back {
  display: inline-block;

  margin-bottom: 38px;

  color: var(--muted);

  font-size: 0.74rem;
  font-weight: 500;

  text-decoration: none;
}

.edel-gut-back:hover,
.edel-weight-back:hover,
.edel-metabolic-back:hover,
.edel-sport-back:hover {
  color: var(--accent-dark);
}

.edel-gut-hero-grid,
.edel-weight-hero-grid,
.edel-metabolic-hero-grid,
.edel-sport-hero-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(390px, 0.9fr);

  gap: 76px;

  align-items: center;
}

.edel-gut-hero-copy,
.edel-weight-hero-copy,
.edel-metabolic-hero-copy,
.edel-sport-hero-copy {
  max-width: 680px;
}

.edel-gut-hero h1,
.edel-weight-hero h1,
.edel-metabolic-hero h1,
.edel-sport-hero h1 {
  margin: 0;

  color: var(--heading);

  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4rem, 5.7vw, 5.5rem);
  font-weight: 500;
  line-height: 0.97;

  letter-spacing: -0.03em;
}

.edel-gut-hero h1 span,
.edel-weight-hero h1 span,
.edel-metabolic-hero h1 span,
.edel-sport-hero h1 span {
  display: block;

  color: var(--accent-dark);
}

.edel-gut-lead,
.edel-weight-lead,
.edel-metabolic-lead,
.edel-sport-lead {
  max-width: 580px;

  margin: 23px 0 0;

  color: var(--muted);

  font-size: 1.05rem;
  line-height: 1.68;
}

.edel-gut-actions,
.edel-weight-actions,
.edel-metabolic-actions,
.edel-sport-actions {
  display: flex;

  align-items: center;

  gap: 24px;

  margin-top: 31px;
}

.edel-gut-hero-visual,
.edel-weight-hero-visual,
.edel-metabolic-hero-visual,
.edel-sport-hero-visual {
  display: grid;

  gap: 18px;

  width: min(100%, 460px);

  margin-left: auto;
}


/* SPECIALIST FEATURE CARD */

.edel-gut-focus-card,
.edel-weight-philosophy-card,
.edel-metabolic-focus-card,
.edel-sport-performance-card {
  padding: 38px;

  background: var(--accent-soft);

  border:
    1px solid rgba(126, 144, 128, 0.22);

  border-radius: 20px;

  box-shadow: var(--shadow);
}

.edel-gut-card-line,
.edel-weight-card-line,
.edel-metabolic-card-line,
.edel-sport-card-line {
  display: block;

  width: 44px;
  height: 2px;

  margin-bottom: 20px;

  background: var(--accent);
}

.edel-gut-card-kicker,
.edel-metabolic-card-kicker,
.edel-sport-card-kicker,
.edel-weight-philosophy-card > p {
  margin: 0 0 11px;

  color: var(--accent-dark);

  font-size: 0.68rem;
  font-weight: 600;

  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.edel-gut-focus-card h2,
.edel-weight-philosophy-card h2,
.edel-metabolic-focus-card h2,
.edel-sport-performance-card h2 {
  max-width: 375px;

  margin: 0 0 30px;

  color: var(--heading);

  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.25rem, 3.2vw, 2.75rem);
  font-weight: 500;
  line-height: 1;
}


/* SPECIALIST CREDENTIAL CARDS */

.edel-gut-credential-card,
.edel-metabolic-credential-card,
.edel-sport-credential-card,
.edel-weight-credential-card {
  padding: 22px 25px;

  background: var(--accent-dark);
  color: #ffffff;

  border-radius: 12px;

  box-shadow:
    0 16px 36px rgba(38, 49, 42, 0.13);
}

.edel-gut-credential-card,
.edel-metabolic-credential-card,
.edel-sport-credential-card {
  display: flex;

  justify-content: space-between;
  align-items: flex-end;

  gap: 24px;
}

.edel-weight-credential-card {
  display: grid;

  grid-template-columns:
    1fr auto;

  gap: 6px 24px;
}

.edel-gut-credential-card span,
.edel-gut-credential-card strong,
.edel-gut-credential-card small,
.edel-weight-credential-card span,
.edel-weight-credential-card strong,
.edel-weight-credential-card small,
.edel-metabolic-credential-card span,
.edel-metabolic-credential-card strong,
.edel-metabolic-credential-card small,
.edel-sport-credential-card span,
.edel-sport-credential-card strong,
.edel-sport-credential-card small {
  display: block;
}

.edel-gut-credential-card span,
.edel-weight-credential-card span,
.edel-metabolic-credential-card span,
.edel-sport-credential-card span {
  color: var(--accent-soft);

  font-size: 0.63rem;
  font-weight: 500;

  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.edel-weight-credential-card span {
  grid-column: 1 / -1;
}

.edel-gut-credential-card strong,
.edel-weight-credential-card strong,
.edel-metabolic-credential-card strong,
.edel-sport-credential-card strong {
  margin-top: 6px;

  color: #ffffff;

  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 600;
}

.edel-gut-credential-card small,
.edel-weight-credential-card small,
.edel-metabolic-credential-card small,
.edel-sport-credential-card small {
  color: var(--accent-soft);

  font-size: 0.67rem;
}


/* SPECIALIST TRUST */

.edel-gut-trust,
.edel-weight-trust,
.edel-metabolic-trust,
.edel-sport-trust {
  padding: 28px 0;

  background: var(--accent-soft);

  border-top:
    1px solid rgba(126, 144, 128, 0.16);

  border-bottom:
    1px solid rgba(126, 144, 128, 0.16);
}

.edel-gut-trust-grid,
.edel-weight-trust-grid,
.edel-metabolic-trust-grid,
.edel-sport-trust-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 44px;
}

.edel-gut-trust-grid > div,
.edel-weight-trust-grid > div,
.edel-metabolic-trust-grid > div,
.edel-sport-trust-grid > div {
  display: flex;

  flex-direction: column;
}

.edel-gut-mini-line,
.edel-weight-mini-line,
.edel-metabolic-mini-line,
.edel-sport-mini-line {
  width: 34px;
  height: 2px;

  margin-bottom: 10px;

  background: var(--accent);
}

.edel-gut-trust strong,
.edel-weight-trust strong,
.edel-metabolic-trust strong,
.edel-sport-trust strong {
  color: var(--heading);

  font-family: "Cormorant Garamond", serif;
  font-size: 1.18rem;
  font-weight: 600;
}

.edel-gut-trust small,
.edel-weight-trust small,
.edel-metabolic-trust small,
.edel-sport-trust small {
  margin-top: 3px;

  color: var(--muted);

  font-size: 0.7rem;
}


/* SPECIALIST CONTEXT */

.edel-gut-context,
.edel-weight-context,
.edel-metabolic-context,
.edel-sport-context {
  padding: 108px 0 72px;
}

.edel-gut-context-grid,
.edel-weight-context-grid,
.edel-metabolic-context-grid,
.edel-sport-context-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(360px, 0.78fr);

  gap: 88px;
}

.edel-gut-context h2,
.edel-weight-context h2,
.edel-metabolic-context h2,
.edel-sport-context h2 {
  max-width: 700px;

  font-size: clamp(3rem, 4.5vw, 4.2rem);
  line-height: 1;
}

.edel-gut-context-copy,
.edel-weight-context-copy,
.edel-metabolic-context-copy,
.edel-sport-context-copy {
  max-width: 480px;
}

.edel-gut-context-copy p,
.edel-weight-context-copy p,
.edel-metabolic-context-copy p,
.edel-sport-context-copy p {
  margin: 0 0 17px;

  color: var(--muted);

  font-size: 0.94rem;
  line-height: 1.72;
}

.edel-gut-large-copy,
.edel-weight-large-copy,
.edel-metabolic-large-copy,
.edel-sport-large-copy {
  color: var(--heading) !important;

  font-family: "Cormorant Garamond", serif !important;
  font-size: clamp(1.65rem, 2.2vw, 2.05rem) !important;
  font-weight: 500;
  line-height: 1.23 !important;
}


/* SPECIALIST EDITORIAL IMAGES */

.edel-gut-editorial,
.edel-weight-editorial,
.edel-metabolic-editorial,
.edel-sport-editorial {
  padding: 0 0 96px;
}

.edel-gut-editorial-frame,
.edel-weight-editorial-frame,
.edel-metabolic-editorial-frame,
.edel-sport-editorial-frame {
  margin: 0;

  overflow: hidden;

  aspect-ratio: 2.25 / 1;

  background: var(--footer-background);

  border-radius: 18px;

  box-shadow: var(--shadow);
}

.edel-gut-editorial-frame img,
.edel-weight-editorial-frame img,
.edel-metabolic-editorial-frame img,
.edel-sport-editorial-frame img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
}


/* SPECIALIST SUPPORT */

.edel-gut-support,
.edel-weight-support,
.edel-sport-support,
.edel-metabolic-dimensions {
  padding: 102px 0 110px;

  background: var(--footer-background);
}

.edel-metabolic-support {
  padding: 108px 0 112px;
}

.edel-gut-support-heading,
.edel-weight-support-heading,
.edel-sport-support-heading,
.edel-metabolic-dimensions-heading {
  max-width: 760px;

  margin-bottom: 48px;
}

.edel-gut-support h2,
.edel-weight-support h2,
.edel-sport-support h2,
.edel-metabolic-dimensions h2,
.edel-metabolic-support h2 {
  font-size: clamp(3rem, 4.5vw, 4.2rem);
  line-height: 0.99;
}

.edel-gut-support-grid,
.edel-weight-support-grid,
.edel-sport-support-grid,
.edel-metabolic-support-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 18px;
}

.edel-metabolic-dimensions-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 18px;
}

.edel-gut-support-grid article,
.edel-weight-support-grid article,
.edel-sport-support-grid article,
.edel-metabolic-support-grid article,
.edel-metabolic-dimensions-grid article {
  min-height: 250px;

  padding: 28px;

  border-radius: 14px;
}

.edel-gut-support-grid article,
.edel-weight-support-grid article,
.edel-sport-support-grid article,
.edel-metabolic-dimensions-grid article {
  background:
    rgba(247, 243, 236, 0.73);

  border:
    1px solid rgba(89, 108, 93, 0.17);
}

.edel-metabolic-support-grid article {
  background: var(--accent-soft);

  border:
    1px solid rgba(126, 144, 128, 0.18);
}

.edel-gut-support-grid h3,
.edel-weight-support-grid h3,
.edel-sport-support-grid h3,
.edel-metabolic-dimensions-grid h3 {
  margin: 0 0 10px;

  color: var(--heading);

  font-family: "Cormorant Garamond", serif;
  font-size: 1.85rem;
  font-weight: 500;
}

.edel-gut-support-grid p,
.edel-weight-support-grid p,
.edel-sport-support-grid p,
.edel-metabolic-support-grid p,
.edel-metabolic-dimensions-grid p {
  margin: 0;

  color: var(--muted);

  font-size: 0.87rem;
  line-height: 1.65;
}


/* SPECIALIST PROCESS */

.edel-gut-process,
.edel-weight-process {
  padding: 108px 0 112px;
}

.edel-metabolic-process {
  padding: 102px 0 110px;

  background: var(--footer-background);
}

.edel-gut-process-heading,
.edel-weight-process-heading,
.edel-metabolic-process-heading {
  max-width: 720px;

  margin-bottom: 48px;
}

.edel-gut-process h2,
.edel-weight-process h2,
.edel-metabolic-process h2 {
  font-size: clamp(3rem, 4.5vw, 4.2rem);
  line-height: 0.99;
}

.edel-gut-process-grid,
.edel-weight-process-grid,
.edel-metabolic-process-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 18px;
}

.edel-gut-process-grid article,
.edel-weight-process-grid article {
  min-height: 285px;

  padding: 29px;

  background: var(--accent-soft);

  border:
    1px solid rgba(126, 144, 128, 0.18);

  border-radius: 14px;
}

.edel-metabolic-process-grid article {
  min-height: 280px;

  padding: 29px;

  background:
    rgba(247, 243, 236, 0.72);

  border:
    1px solid rgba(89, 108, 93, 0.17);

  border-radius: 14px;
}

.edel-gut-process-grid h3,
.edel-weight-process-grid h3,
.edel-metabolic-process-grid h3 {
  margin: 62px 0 11px;

  color: var(--heading);

  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 500;
}

.edel-gut-process-grid p,
.edel-weight-process-grid p,
.edel-metabolic-process-grid p {
  margin: 0;

  color: var(--muted);

  font-size: 0.89rem;
  line-height: 1.65;
}


/* SPORT TRAINING DAY */

.edel-sport-day {
  padding: 108px 0 112px;
}

.edel-sport-day-top {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(300px, 0.65fr);

  gap: 85px;

  align-items: end;

  margin-bottom: 48px;
}

.edel-sport-day h2 {
  max-width: 680px;

  font-size: clamp(3rem, 4.5vw, 4.2rem);
  line-height: 0.99;
}

.edel-sport-day-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 18px;
}

.edel-sport-day-grid article {
  min-height: 300px;

  padding: 30px;

  background: var(--accent-soft);

  border:
    1px solid rgba(126, 144, 128, 0.18);

  border-radius: 14px;
}

.edel-sport-day-grid h3 {
  margin: 0 0 11px;

  color: var(--heading);

  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 500;
}


/* DARK SPECIALIST SECTIONS */

.edel-gut-fodmap,
.edel-weight-philosophy,
.edel-metabolic-philosophy,
.edel-sport-philosophy {
  padding: 108px 0;

  background: var(--accent-dark);
}

.edel-gut-fodmap .edel-gut-eyebrow,
.edel-weight-philosophy .edel-weight-eyebrow,
.edel-metabolic-philosophy .edel-metabolic-eyebrow,
.edel-sport-philosophy .edel-sport-eyebrow {
  color: var(--accent-soft);
}

.edel-gut-fodmap-grid,
.edel-weight-philosophy-grid,
.edel-metabolic-philosophy-grid,
.edel-sport-philosophy-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(320px, 0.7fr);

  gap: 85px;

  align-items: end;

  margin-bottom: 48px;
}

.edel-gut-fodmap h2,
.edel-weight-philosophy h2,
.edel-metabolic-philosophy h2,
.edel-sport-philosophy h2 {
  color: #ffffff;

  font-size: clamp(3.1rem, 4.7vw, 4.4rem);
  line-height: 0.98;
}

.edel-gut-fodmap h2 span,
.edel-weight-philosophy h2 span,
.edel-metabolic-philosophy h2 span,
.edel-sport-philosophy h2 span {
  display: block;

  color: var(--accent-soft);
}

.edel-gut-fodmap-copy,
.edel-weight-philosophy-copy,
.edel-metabolic-philosophy-copy,
.edel-sport-philosophy-copy {
  max-width: 445px;
}

.edel-gut-fodmap-copy p,
.edel-weight-philosophy-copy p,
.edel-metabolic-philosophy-copy p,
.edel-sport-philosophy-copy p {
  margin: 0 0 14px;

  color:
    rgba(255, 255, 255, 0.82);

  font-size: 0.93rem;
  line-height: 1.7;
}

.edel-gut-fodmap-stages,
.edel-weight-values-grid,
.edel-metabolic-values-grid,
.edel-sport-values-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 18px;
}

.edel-gut-fodmap-stages article,
.edel-weight-values-grid article,
.edel-metabolic-values-grid article,
.edel-sport-values-grid article {
  min-height: 255px;

  padding: 30px;

  background:
    rgba(255, 255, 255, 0.075);

  border:
    1px solid rgba(255, 255, 255, 0.17);

  border-radius: 14px;
}

.edel-gut-fodmap-stages strong,
.edel-weight-values-grid strong,
.edel-metabolic-values-grid strong,
.edel-sport-values-grid strong {
  display: block;

  color: #ffffff;

  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 500;
}

.edel-gut-fodmap-stages p,
.edel-weight-values-grid p,
.edel-metabolic-values-grid p,
.edel-sport-values-grid p {
  margin: 11px 0 0;

  color:
    rgba(255, 255, 255, 0.78);

  font-size: 0.87rem;
  line-height: 1.65;
}


/* SPECIALIST LIGHT NOTE */

.edel-gut-medical,
.edel-metabolic-medical,
.edel-sport-context-note {
  padding: 74px 0;

  background: var(--accent-soft);
}

.edel-gut-medical-grid,
.edel-metabolic-medical-grid,
.edel-sport-context-note-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(340px, 0.72fr);

  gap: 84px;

  align-items: center;
}

.edel-gut-medical h2,
.edel-metabolic-medical h2,
.edel-sport-context-note h2 {
  max-width: 650px;

  font-size: clamp(2.7rem, 4vw, 3.7rem);
  line-height: 1;
}


/* SPECIALIST PROFESSIONAL */

.edel-gut-professional,
.edel-weight-professional,
.edel-metabolic-professional,
.edel-sport-professional {
  padding: 105px 0;
}

.edel-gut-professional-grid,
.edel-metabolic-professional-grid,
.edel-sport-professional-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1.08fr)
    minmax(350px, 0.92fr);

  gap: 88px;

  align-items: center;
}

.edel-weight-professional-grid {
  display: grid;

  grid-template-columns:
    minmax(360px, 0.86fr)
    minmax(0, 1.14fr);

  gap: 88px;

  align-items: center;
}

.edel-gut-professional-copy,
.edel-weight-professional-copy,
.edel-metabolic-professional-copy,
.edel-sport-professional-copy {
  max-width: 600px;
}

.edel-gut-professional h2,
.edel-weight-professional h2,
.edel-metabolic-professional h2,
.edel-sport-professional h2 {
  font-size: clamp(3rem, 4.5vw, 4.2rem);
  line-height: 0.99;
}

.edel-gut-professional-copy > p:not(.edel-gut-eyebrow),
.edel-weight-professional-copy > p:not(.edel-weight-eyebrow),
.edel-metabolic-professional-copy > p:not(.edel-metabolic-eyebrow),
.edel-sport-professional-copy > p:not(.edel-sport-eyebrow) {
  margin: 18px 0 0;

  color: var(--muted);

  font-size: 0.94rem;
  line-height: 1.72;
}


/* SPECIALIST FAQ */

.edel-gut-faq,
.edel-weight-faq,
.edel-metabolic-faq,
.edel-sport-faq {
  padding: 106px 0 112px;

  background: var(--footer-background);
}

.edel-gut-faq-grid,
.edel-weight-faq-grid,
.edel-metabolic-faq-grid,
.edel-sport-faq-grid {
  display: grid;

  grid-template-columns:
    minmax(280px, 0.67fr)
    minmax(0, 1.33fr);

  gap: 92px;
}

.edel-gut-faq h2,
.edel-weight-faq h2,
.edel-metabolic-faq h2,
.edel-sport-faq h2 {
  font-size: clamp(2.9rem, 4.1vw, 3.9rem);
  line-height: 1;
}

.edel-gut-faq-item,
.edel-weight-faq-item,
.edel-metabolic-faq-item,
.edel-sport-faq-item {
  border-top:
    1px solid rgba(89, 108, 93, 0.18);
}

.edel-gut-faq-item:last-child,
.edel-weight-faq-item:last-child,
.edel-metabolic-faq-item:last-child,
.edel-sport-faq-item:last-child {
  border-bottom:
    1px solid rgba(89, 108, 93, 0.18);
}


/* =========================================================
   HOW IT WORKS
   ========================================================= */

.edel-process-page {
  width: 100%;

  background: var(--background);
}

.edel-process-journey h2,
.edel-process-initial h2,
.edel-process-assessment h2,
.edel-process-followup h2,
.edel-process-continuity h2,
.edel-process-online h2,
.edel-process-faq h2 {
  margin: 0;

  color: var(--heading);

  font-family: "Cormorant Garamond", serif;
  font-weight: 500;

  letter-spacing: -0.025em;
}

.edel-process-hero {
  padding: 62px 0 82px;
}

.edel-process-hero-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(390px, 0.95fr);

  gap: 78px;

  align-items: center;
}

.edel-process-hero-copy {
  max-width: 690px;
}

.edel-process-hero h1 {
  margin: 0;

  color: var(--heading);

  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4rem, 5.8vw, 5.55rem);
  font-weight: 500;
  line-height: 0.97;

  letter-spacing: -0.03em;
}

.edel-process-hero h1 span {
  display: block;

  color: var(--accent-dark);
}

.edel-process-lead {
  max-width: 600px;

  margin: 24px 0 0;

  color: var(--heading);

  font-size: 1.02rem;
  line-height: 1.7;
}

.edel-process-intro {
  max-width: 585px;

  margin: 14px 0 0;

  color: var(--muted);

  font-size: 0.94rem;
  line-height: 1.7;
}

.edel-process-actions {
  display: flex;

  gap: 24px;

  margin-top: 31px;
}

.edel-process-hero-visual {
  display: grid;

  gap: 16px;

  width: min(100%, 470px);

  margin-left: auto;
}

.edel-process-path-card {
  padding: 38px;

  background: var(--accent-soft);

  border:
    1px solid rgba(126, 144, 128, 0.22);

  border-radius: 20px;

  box-shadow: var(--shadow);
}

.edel-process-card-line {
  display: block;

  width: 44px;
  height: 2px;

  margin-bottom: 20px;

  background: var(--accent);
}

.edel-process-card-kicker {
  margin: 0 0 23px;

  color: var(--accent-dark);

  font-size: 0.68rem;
  font-weight: 600;

  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.edel-process-path-list {
  border-top:
    1px solid rgba(89, 108, 93, 0.17);
}

.edel-process-path-list > div {
  display: grid;

  grid-template-columns:
    39px 1fr;

  gap: 14px;

  padding: 17px 0;

  border-bottom:
    1px solid rgba(89, 108, 93, 0.17);
}

.edel-process-path-list strong {
  display: block;

  color: var(--heading);

  font-family: "Cormorant Garamond", serif;
  font-size: 1.28rem;
  font-weight: 600;
}

.edel-process-path-list small {
  display: block;

  margin-top: 3px;

  color: var(--muted);

  font-size: 0.7rem;
}

.edel-process-continuity-card {
  padding: 22px 25px;

  background: var(--accent-dark);
  color: #ffffff;

  border-radius: 12px;
}

.edel-process-trust {
  padding: 28px 0;

  background: var(--accent-soft);

  border-top:
    1px solid rgba(126, 144, 128, 0.16);

  border-bottom:
    1px solid rgba(126, 144, 128, 0.16);
}

.edel-process-trust-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 44px;
}

.edel-process-journey,
.edel-process-assessment,
.edel-process-continuity {
  padding: 108px 0 112px;
}

.edel-process-journey-heading,
.edel-process-assessment-heading {
  max-width: 760px;

  margin-bottom: 48px;
}

.edel-process-journey h2,
.edel-process-assessment h2,
.edel-process-continuity h2 {
  font-size: clamp(3rem, 4.5vw, 4.2rem);
  line-height: 0.99;
}

.edel-process-journey-list {
  border-top:
    1px solid rgba(89, 108, 93, 0.18);
}

.edel-process-journey-list article {
  display: grid;

  grid-template-columns:
    minmax(85px, 0.18fr)
    minmax(0, 1fr);

  gap: 45px;

  padding: 39px 0;

  border-bottom:
    1px solid rgba(89, 108, 93, 0.18);
}

.edel-process-journey-number {
  color: var(--accent-dark);

  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
}

.edel-process-journey-content h3 {
  margin: 0 0 10px;

  color: var(--heading);

  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 500;
}

.edel-process-journey-content > p:last-child {
  max-width: 700px;

  margin: 0;

  color: var(--muted);

  font-size: 0.9rem;
  line-height: 1.7;
}

.edel-process-initial {
  padding: 102px 0;

  background: var(--footer-background);
}

.edel-process-initial-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(360px, 0.78fr);

  gap: 88px;
}

.edel-process-initial h2 {
  max-width: 700px;

  font-size: clamp(3rem, 4.5vw, 4.2rem);
}

.edel-process-initial-copy p {
  margin: 0 0 17px;

  color: var(--muted);

  font-size: 0.94rem;
  line-height: 1.72;
}

.edel-process-assessment-grid,
.edel-process-continuity-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 18px;
}

.edel-process-assessment-grid article,
.edel-process-continuity-grid article {
  min-height: 245px;

  padding: 28px;

  background: var(--accent-soft);

  border:
    1px solid rgba(126, 144, 128, 0.18);

  border-radius: 14px;
}

.edel-process-assessment-grid strong,
.edel-process-continuity-grid h3 {
  display: block;

  color: var(--heading);

  font-family: "Cormorant Garamond", serif;
  font-size: 1.82rem;
  font-weight: 500;
}

.edel-process-followup {
  padding: 108px 0;

  background: var(--accent-dark);
}

.edel-process-followup .edel-process-eyebrow {
  color: var(--accent-soft);
}

.edel-process-followup-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(320px, 0.7fr);

  gap: 85px;

  align-items: end;

  margin-bottom: 48px;
}

.edel-process-followup h2 {
  color: #ffffff;

  font-size: clamp(3.1rem, 4.7vw, 4.4rem);
}

.edel-process-followup h2 span {
  display: block;

  color: var(--accent-soft);
}

.edel-process-followup-values {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 18px;
}

.edel-process-followup-values article {
  min-height: 245px;

  padding: 30px;

  background:
    rgba(255, 255, 255, 0.075);

  border:
    1px solid rgba(255, 255, 255, 0.17);

  border-radius: 14px;
}

.edel-process-followup-values strong {
  display: block;

  color: #ffffff;

  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  font-weight: 500;
}

.edel-process-online {
  padding: 74px 0;

  background: var(--accent-soft);
}

.edel-process-online-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(340px, 0.72fr);

  gap: 84px;

  align-items: center;
}

.edel-process-online h2 {
  max-width: 650px;

  font-size: clamp(2.7rem, 4vw, 3.7rem);
}

.edel-process-faq {
  padding: 106px 0 112px;

  background: var(--footer-background);
}

.edel-process-faq-grid {
  display: grid;

  grid-template-columns:
    minmax(280px, 0.67fr)
    minmax(0, 1.33fr);

  gap: 92px;
}

.edel-process-faq h2 {
  font-size: clamp(2.9rem, 4.1vw, 3.9rem);
}

.edel-process-faq-item {
  border-top:
    1px solid rgba(89, 108, 93, 0.18);
}


/* =========================================================
   RESOURCES
   ========================================================= */

.edel-resources-page {
  width: 100%;

  background: var(--background);
}

.edel-resources-hero {
  padding: 62px 0 82px;
}

.edel-resources-hero-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(390px, 0.95fr);

  gap: 78px;

  align-items: center;
}

.edel-resources-hero-copy {
  max-width: 690px;
}

.edel-resources-hero h1 {
  margin: 0;

  color: var(--heading);

  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4rem, 5.8vw, 5.55rem);
  font-weight: 500;
  line-height: 0.97;

  letter-spacing: -0.03em;
}

.edel-resources-hero h1 span {
  display: block;

  color: var(--accent-dark);
}

.edel-resources-lead {
  max-width: 600px;

  margin: 24px 0 0;

  color: var(--heading);

  font-size: 1.02rem;
  line-height: 1.7;
}

.edel-resources-intro {
  max-width: 585px;

  margin: 14px 0 0;

  color: var(--muted);

  font-size: 0.94rem;
  line-height: 1.7;
}

.edel-resources-actions {
  display: flex;

  gap: 24px;

  margin-top: 31px;
}

.edel-resources-hero-visual {
  display: grid;

  gap: 16px;

  width: min(100%, 470px);

  margin-left: auto;
}

.edel-resources-guide-card {
  padding: 38px;

  background: var(--accent-soft);

  border:
    1px solid rgba(126, 144, 128, 0.22);

  border-radius: 20px;

  box-shadow: var(--shadow);
}

.edel-resources-card-line {
  display: block;

  width: 44px;
  height: 2px;

  margin-bottom: 20px;

  background: var(--accent);
}

.edel-resources-guide-list > div {
  display: grid;

  grid-template-columns:
    38px 1fr;

  gap: 13px;

  padding: 16px 0;

  border-bottom:
    1px solid rgba(89, 108, 93, 0.17);
}

.edel-resources-guide-list strong {
  color: var(--heading);

  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 600;
}

.edel-resources-hero-detail {
  padding: 22px 25px;

  background: var(--accent-dark);
  color: #ffffff;

  border-radius: 12px;
}

.edel-resources-trust {
  padding: 28px 0;

  background: var(--accent-soft);

  border-top:
    1px solid rgba(126, 144, 128, 0.16);

  border-bottom:
    1px solid rgba(126, 144, 128, 0.16);
}

.edel-resources-trust-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 44px;
}

.edel-resources-topics,
.edel-resources-help {
  padding: 108px 0 112px;
}

.edel-resources-topics-heading {
  max-width: 760px;

  margin-bottom: 48px;
}

.edel-resources-topics h2,
.edel-resources-check h2,
.edel-resources-personal h2,
.edel-resources-help h2,
.edel-resources-note h2 {
  margin: 0;

  color: var(--heading);

  font-family: "Cormorant Garamond", serif;
  font-weight: 500;

  letter-spacing: -0.025em;
}

.edel-resources-topics h2,
.edel-resources-check h2,
.edel-resources-help h2 {
  font-size: clamp(3rem, 4.5vw, 4.2rem);
  line-height: 0.99;
}

.edel-resources-topics-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 18px;
}

.edel-resources-topics-grid > a {
  display: grid;

  grid-template-columns:
    40px 1fr auto;

  gap: 20px;

  min-height: 250px;

  padding: 29px;

  background: var(--accent-soft);

  border:
    1px solid rgba(126, 144, 128, 0.18);

  border-radius: 14px;

  color: var(--text);

  text-decoration: none;

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.edel-resources-topics-grid > a:hover {
  transform: translateY(-2px);

  background: #edf0eb;
}

.edel-resources-topics-grid h3 {
  margin: 0;

  color: var(--heading);

  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 500;
}

.edel-resources-check {
  padding: 104px 0 112px;

  background: var(--footer-background);
}

.edel-resources-check-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(360px, 0.78fr);

  gap: 88px;

  margin-bottom: 48px;
}

.edel-resources-check-list {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 18px;
}

.edel-resources-check-list article {
  min-height: 260px;

  padding: 29px;

  background:
    rgba(247, 243, 236, 0.73);

  border:
    1px solid rgba(89, 108, 93, 0.17);

  border-radius: 14px;
}

.edel-resources-personal {
  padding: 108px 0;

  background: var(--accent-dark);
}

.edel-resources-personal .edel-resources-eyebrow {
  color: var(--accent-soft);
}

.edel-resources-personal-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(320px, 0.7fr);

  gap: 85px;

  align-items: end;

  margin-bottom: 48px;
}

.edel-resources-personal h2 {
  color: #ffffff;

  font-size: clamp(3.1rem, 4.7vw, 4.4rem);
}

.edel-resources-personal h2 span {
  display: block;

  color: var(--accent-soft);
}

.edel-resources-personal-values {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 18px;
}

.edel-resources-personal-values article {
  min-height: 255px;

  padding: 30px;

  background:
    rgba(255, 255, 255, 0.075);

  border:
    1px solid rgba(255, 255, 255, 0.17);

  border-radius: 14px;
}

.edel-resources-personal-values strong {
  display: block;

  color: #ffffff;

  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  font-weight: 500;
}

.edel-resources-help-top {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(310px, 0.68fr);

  gap: 85px;

  align-items: end;

  margin-bottom: 48px;
}

.edel-resources-help-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 18px;
}

.edel-resources-help-grid article {
  min-height: 270px;

  padding: 29px;

  background: var(--accent-soft);

  border:
    1px solid rgba(126, 144, 128, 0.18);

  border-radius: 14px;
}

.edel-resources-note {
  padding: 74px 0;

  background: var(--accent-soft);
}

.edel-resources-note-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(340px, 0.72fr);

  gap: 84px;

  align-items: center;
}

.edel-resources-note h2 {
  max-width: 650px;

  font-size: clamp(2.7rem, 4vw, 3.7rem);
}


/* =========================================================
   CONTACT
   ========================================================= */

.edel-contact-page {
  width: 100%;

  background: var(--background);
}

.edel-contact-paths h2,
.edel-contact-between h2,
.edel-contact-expectations h2,
.edel-contact-details h2,
.edel-contact-social h2,
.edel-contact-faq h2 {
  margin: 0;

  color: var(--heading);

  font-family: "Cormorant Garamond", serif;
  font-weight: 500;

  letter-spacing: -0.025em;
}

.edel-contact-hero {
  padding: 68px 0 88px;
}

.edel-contact-hero-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1.08fr)
    minmax(350px, 0.72fr);

  gap: 90px;

  align-items: center;
}

.edel-contact-hero-copy {
  max-width: 710px;
}

.edel-contact-hero h1 {
  margin: 0;

  color: var(--heading);

  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4rem, 5.8vw, 5.55rem);
  font-weight: 500;
  line-height: 0.97;

  letter-spacing: -0.03em;
}

.edel-contact-hero h1 span {
  display: block;

  color: var(--accent-dark);
}

.edel-contact-lead {
  max-width: 610px;

  margin: 24px 0 0;

  color: var(--heading);

  font-size: 1.02rem;
  line-height: 1.7;
}

.edel-contact-intro {
  max-width: 560px;

  margin: 14px 0 0;

  color: var(--muted);

  font-size: 0.94rem;
  line-height: 1.7;
}

.edel-contact-hero-card {
  padding: 38px;

  background: var(--accent-soft);

  border:
    1px solid rgba(126, 144, 128, 0.22);

  border-radius: 20px;

  box-shadow: var(--shadow);
}

.edel-contact-card-line {
  display: block;

  width: 44px;
  height: 2px;

  margin-bottom: 20px;

  background: var(--accent);
}

.edel-contact-card-kicker {
  margin: 0 0 11px;

  color: var(--accent-dark);

  font-size: 0.68rem;
  font-weight: 600;

  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.edel-contact-hero-card h2 {
  margin: 0;

  font-size: 2.45rem;
}

.edel-contact-email {
  display: inline-block;

  margin-top: 25px;

  color: var(--accent-dark);

  font-size: 1rem;
  font-weight: 600;

  text-underline-offset: 5px;
}

.edel-contact-paths {
  padding: 106px 0 112px;

  background: var(--footer-background);
}

.edel-contact-paths-heading {
  max-width: 720px;

  margin-bottom: 48px;
}

.edel-contact-paths h2 {
  font-size: clamp(3rem, 4.5vw, 4.2rem);
}

.edel-contact-paths-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 18px;
}

.edel-contact-paths-grid article {
  display: flex;

  flex-direction: column;

  min-height: 470px;

  padding: 29px;

  background:
    rgba(247, 243, 236, 0.74);

  border:
    1px solid rgba(89, 108, 93, 0.17);

  border-radius: 14px;
}

.edel-contact-paths-grid h3 {
  margin: 0 0 13px;

  color: var(--heading);

  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 500;
}

.edel-contact-paths-grid article .edel-contact-button,
.edel-contact-paths-grid article .edel-contact-secondary-button {
  width: 100%;
  min-width: 0;

  margin-top: auto;
}

.edel-contact-between {
  padding: 108px 0;

  background: var(--accent-dark);
}

.edel-contact-between .edel-contact-eyebrow {
  color: var(--accent-soft);
}

.edel-contact-between-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(320px, 0.7fr);

  gap: 85px;

  align-items: end;

  margin-bottom: 48px;
}

.edel-contact-between h2 {
  color: #ffffff;

  font-size: clamp(3.1rem, 4.7vw, 4.4rem);
}

.edel-contact-between h2 span {
  display: block;

  color: var(--accent-soft);
}

.edel-contact-between-values {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 18px;
}

.edel-contact-between-values article {
  min-height: 250px;

  padding: 30px;

  background:
    rgba(255, 255, 255, 0.075);

  border:
    1px solid rgba(255, 255, 255, 0.17);

  border-radius: 14px;
}

.edel-contact-between-values strong {
  display: block;

  color: #ffffff;

  font-family: "Cormorant Garamond", serif;
  font-size: 1.85rem;
  font-weight: 500;
}

.edel-contact-expectations {
  padding: 74px 0;

  background: var(--accent-soft);
}

.edel-contact-expectations-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(340px, 0.72fr);

  gap: 84px;

  align-items: center;
}

.edel-contact-expectations h2 {
  max-width: 660px;

  font-size: clamp(2.7rem, 4vw, 3.7rem);
}

.edel-contact-details {
  padding: 108px 0 112px;
}

.edel-contact-details-heading {
  max-width: 720px;

  margin-bottom: 48px;
}

.edel-contact-details h2 {
  font-size: clamp(3rem, 4.5vw, 4.2rem);
}

.edel-contact-details-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 18px;
}

.edel-contact-details-grid > div {
  min-height: 230px;

  padding: 29px;

  background: var(--accent-soft);

  border:
    1px solid rgba(126, 144, 128, 0.18);

  border-radius: 14px;
}

.edel-contact-details-grid a {
  display: inline-block;

  color: var(--heading);

  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  font-weight: 600;

  text-decoration: none;
}

.edel-contact-social {
  padding: 108px 0 112px;

  background: var(--footer-background);
}

.edel-contact-social-heading {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(340px, 0.72fr);

  gap: 85px;

  align-items: end;

  margin-bottom: 52px;
}

.edel-contact-social h2 {
  max-width: 700px;

  font-size: clamp(3.1rem, 4.7vw, 4.4rem);
}

.edel-contact-instagram-area {
  padding: 30px;

  background: var(--background);

  border:
    1px solid rgba(126, 144, 128, 0.18);

  border-radius: 18px;

  box-shadow: var(--shadow-soft);
}

.edel-contact-instagram-top {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 25px;

  margin-bottom: 24px;
}

.edel-contact-instagram-feed {
  width: 100%;

  min-height: 180px;
}

.edel-contact-social-profiles {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 18px;

  margin-top: 18px;
}

.edel-contact-social-profile {
  display: grid;

  grid-template-columns:
    58px 1fr auto;

  gap: 20px;

  align-items: center;

  padding: 27px;

  background: var(--accent-soft);

  border:
    1px solid rgba(126, 144, 128, 0.18);

  border-radius: 14px;

  color: var(--text);

  text-decoration: none;

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.edel-contact-social-profile:hover {
  transform: translateY(-2px);

  background: #edf0eb;
}

.edel-contact-social-profile-icon {
  display: grid;

  width: 58px;
  height: 58px;

  place-items: center;

  background: var(--accent-dark);
  color: #ffffff;

  border-radius: 50%;

  font-size: 0.93rem;
  font-weight: 600;
}

.edel-contact-social-profile strong {
  display: block;

  color: var(--heading);

  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  font-weight: 600;
}

.edel-contact-faq {
  padding: 106px 0 112px;
}

.edel-contact-faq-grid {
  display: grid;

  grid-template-columns:
    minmax(280px, 0.67fr)
    minmax(0, 1.33fr);

  gap: 92px;
}

.edel-contact-faq h2 {
  font-size: clamp(2.9rem, 4.1vw, 3.9rem);
}

.edel-contact-faq-item {
  border-top:
    1px solid rgba(89, 108, 93, 0.18);
}


/* =========================================================
   POLICY PAGE SYSTEM
   ========================================================= */

.edel-policy-page {
  width: 100%;

  background: var(--background);
  color: var(--text);
}

.edel-policy-hero {
  padding: 104px 0 76px;

  border-bottom:
    1px solid rgba(126, 144, 128, 0.14);
}

.edel-policy-hero-inner {
  max-width: 980px;
}

.edel-policy-hero h1 {
  max-width: 980px;

  margin: 0;

  color: var(--heading);

  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.4rem, 6vw, 5.4rem);
  font-weight: 500;
  line-height: 0.98;

  letter-spacing: -0.025em;
}

.edel-policy-effective {
  margin: 25px 0 0;

  color: var(--muted);

  font-size: 0.76rem;
  line-height: 1.5;
}

.edel-policy-section {
  padding: 84px 0 108px;
}

.edel-policy-layout {
  display: grid;

  grid-template-columns:
    minmax(190px, 0.3fr)
    minmax(0, 0.7fr);

  gap: 100px;

  align-items: start;
}

.edel-policy-aside {
  position: sticky;

  top: 115px;

  padding-top: 5px;
}

.edel-policy-aside-label {
  display: block;

  margin-bottom: 9px;

  color: var(--accent-dark);

  font-size: 0.64rem;
  font-weight: 600;

  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.edel-policy-aside p {
  max-width: 215px;

  margin: 0 0 20px;

  color: var(--heading);

  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.15;
}

.edel-policy-aside a {
  display: inline-block;

  color: var(--accent-dark);

  font-size: 0.73rem;

  text-decoration: none;

  border-bottom:
    1px solid rgba(89, 108, 93, 0.35);
}

.edel-policy-content {
  width: 100%;
  max-width: 780px;
}

.edel-policy-content > *:first-child {
  margin-top: 0;
}

.edel-policy-content h2 {
  margin: 58px 0 18px;

  color: var(--heading);

  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 2.5vw, 2.3rem);
  font-weight: 500;
  line-height: 1.1;
}

.edel-policy-content h2:not(:first-of-type) {
  padding-top: 43px;

  border-top:
    1px solid rgba(126, 144, 128, 0.15);
}

.edel-policy-content h3 {
  margin: 31px 0 15px;

  color: var(--heading);

  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  font-weight: 500;
}

.edel-policy-content p {
  margin: 0 0 18px;

  color: var(--nav-text);

  font-size: 0.94rem;
  line-height: 1.82;
}

.edel-policy-content ul,
.edel-policy-content ol {
  margin: 9px 0 25px;

  padding-left: 1.35rem;
}

.edel-policy-content li {
  margin-bottom: 9px;

  padding-left: 5px;

  color: var(--nav-text);

  font-size: 0.94rem;
  line-height: 1.72;
}

.edel-policy-content li::marker {
  color: var(--accent);
}

.edel-policy-content strong {
  color: var(--text);

  font-weight: 600;
}

.edel-policy-content a {
  color: var(--accent-dark);

  text-decoration: underline;
  text-decoration-color:
    rgba(89, 108, 93, 0.35);

  text-underline-offset: 3px;
}

.edel-policy-related {
  display: flex;

  flex-wrap: wrap;

  gap: 10px 22px;

  margin-top: 8px;
}

.edel-policy-contact {
  padding: 64px 0;

  background: var(--accent-soft);

  border-top:
    1px solid rgba(126, 144, 128, 0.14);

  border-bottom:
    1px solid rgba(126, 144, 128, 0.14);
}

.edel-policy-contact-inner {
  display: flex;

  align-items: flex-end;
  justify-content: space-between;

  gap: 40px;
}

.edel-policy-contact h2 {
  margin: 0;

  color: var(--heading);

  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 500;
}

.edel-policy-contact-link {
  flex: 0 0 auto;

  padding-bottom: 5px;

  color: var(--nav-text);

  font-size: 0.84rem;

  text-decoration: none;

  border-bottom:
    1px solid rgba(89, 108, 93, 0.4);
}


/* =========================================================
   CANONICAL GLOBAL FOOTER
   ========================================================= */

.edel-site-footer {
  width: 100%;

  padding: 72px 0 28px;

  background: var(--footer-background);
  color: var(--text);
}

.edel-site-footer-shell {
  width: min(calc(100% - 80px), var(--site-width));

  margin-inline: auto;
}

.edel-site-footer-main {
  display: grid;

  grid-template-columns:
    minmax(300px, 0.92fr)
    minmax(520px, 1.08fr);

  gap: 90px;

  padding-bottom: 54px;
}

.edel-site-footer-brand {
  max-width: 390px;
}

.edel-site-footer-logo {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  color: var(--heading);

  text-decoration: none;
}

.edel-site-footer-logo:hover {
  color: var(--heading);
}

.edel-site-footer-mark {
  display: grid;

  width: 42px;
  height: 42px;

  place-items: center;

  flex: 0 0 42px;

  color: var(--heading);

  border:
    1px solid var(--accent);

  border-radius: 50%;

  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  font-weight: 600;
}

.edel-site-footer-name {
  color: var(--heading);

  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  font-weight: 600;
}

.edel-site-footer-brand > p {
  max-width: 350px;

  margin: 22px 0 8px;

  color: var(--nav-text);

  font-size: 0.85rem;
  line-height: 1.65;
}

.edel-site-footer-registration {
  display: block;

  color: var(--muted);

  font-size: 0.69rem;
  line-height: 1.5;
}

.edel-site-footer-nav {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 44px;
}

.edel-site-footer-nav > div {
  display: flex;

  flex-direction: column;

  gap: 9px;
}

.edel-site-footer-nav strong {
  margin-bottom: 8px;

  color: var(--heading);

  font-size: 0.67rem;
  font-weight: 600;

  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.edel-site-footer-nav a {
  width: fit-content;

  color: var(--nav-text);

  font-size: 0.8rem;

  text-decoration: none;

  transition:
    color 0.2s ease,
    transform 0.15s ease;
}

.edel-site-footer-nav a:hover {
  color: var(--accent-dark);
}

.edel-site-footer-nav a[target="_blank"]:hover {
  transform: translateX(2px);
}

.edel-site-footer-bottom {
  display: flex;

  justify-content: space-between;
  align-items: flex-start;

  gap: 35px;

  padding-top: 25px;

  border-top:
    1px solid rgba(89, 108, 93, 0.17);

  color: var(--muted);

  font-size: 0.65rem;
  line-height: 1.55;
}

.edel-site-footer-bottom > span {
  flex: 0 0 auto;
}

.edel-site-footer-legal {
  display: flex;

  flex-direction: column;
  align-items: flex-end;

  gap: 10px;
}

.edel-site-footer-legal nav {
  display: flex;

  flex-wrap: wrap;
  justify-content: flex-end;

  gap: 7px 16px;
}

.edel-site-footer-legal a,
.footer-cookie-settings {
  color: var(--muted);

  font-size: 0.65rem;
  line-height: 1.5;
}

.edel-site-footer-legal a {
  text-decoration: none;

  transition: color 0.2s ease;
}

.edel-site-footer-legal a:hover {
  color: var(--accent-dark);
}

.footer-cookie-settings {
  appearance: none;

  width: fit-content;

  margin: 0;
  padding: 0;

  background: transparent;

  border: 0;

  cursor: pointer;

  text-decoration: none;

  transition: color 0.2s ease;
}

.footer-cookie-settings:hover {
  color: var(--accent-dark);
}


/* =========================================================
   COOKIE CONSENT
   ========================================================= */

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

.cookie-banner {
  position: fixed;

  left: 24px;
  right: 24px;
  bottom: 24px;

  z-index: 9999;
}

.cookie-banner__inner {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 32px;

  width: min(100%, 1180px);

  margin-inline: auto;

  padding: 26px 28px;

  background:
    rgba(247, 243, 236, 0.985);

  border:
    1px solid rgba(89, 108, 93, 0.18);

  border-radius: 18px;

  box-shadow:
    0 20px 60px rgba(38, 49, 42, 0.16);

  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.cookie-banner__content {
  max-width: 720px;
}

.cookie-banner__eyebrow {
  margin: 0 0 6px;

  color: var(--accent-dark);

  font-size: 0.68rem;
  font-weight: 600;

  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cookie-banner h2 {
  margin: 0 0 10px;

  color: var(--heading);

  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 2.2vw, 1.9rem);
  font-weight: 500;
  line-height: 1.08;
}

.cookie-banner p {
  max-width: 680px;

  margin: 0 0 10px;

  color: var(--nav-text);

  font-size: 0.86rem;
  line-height: 1.65;
}

.cookie-banner__link {
  display: inline-block;

  color: var(--accent-dark);

  font-size: 0.78rem;
  font-weight: 500;

  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner__actions {
  display: flex;

  flex: 0 0 auto;

  gap: 10px;
}

.cookie-button {
  min-height: 46px;

  padding: 11px 18px;

  border-radius: 999px;

  font-size: 0.78rem;
  font-weight: 600;

  cursor: pointer;

  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.15s ease;
}

.cookie-button:hover {
  transform: translateY(-1px);
}

.cookie-button--secondary {
  background: transparent;
  color: var(--accent-dark);

  border:
    1px solid rgba(89, 108, 93, 0.72);
}

.cookie-button--secondary:hover {
  background: var(--accent-soft);

  border-color: var(--accent-dark);
}

.cookie-button--primary {
  background: var(--accent-dark);
  color: #ffffff;

  border:
    1px solid var(--accent-dark);
}

.cookie-button--primary:hover {
  background: var(--accent-hover);

  border-color: var(--accent-hover);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1099px) and (min-width: 768px) {

  .edel-shell,
  .edel-about-shell,
  .edel-page-shell,
  .edel-gut-shell,
  .edel-weight-shell,
  .edel-metabolic-shell,
  .edel-sport-shell,
  .edel-process-shell,
  .edel-resources-shell,
  .edel-contact-shell,
  .edel-policy-shell,
  .site-header .inside-header,
  .edel-site-footer-shell {
    width:
      min(calc(100% - 48px), var(--site-width));
  }


  /* Header */

  .site-header .inside-header {
    padding: 14px 0;
  }

  .main-navigation > .menu {
    gap: 2px;
  }

  .main-navigation a,
  .submenu-toggle {
    padding-inline: 5px;

    font-size: 0.76rem;
  }


  /* Shared heroes */

  .edel-hero-grid,
  .edel-about-hero-grid,
  .edel-services-hero-grid,
  .edel-gut-hero-grid,
  .edel-weight-hero-grid,
  .edel-metabolic-hero-grid,
  .edel-sport-hero-grid,
  .edel-process-hero-grid,
  .edel-resources-hero-grid,
  .edel-contact-hero-grid {
    gap: 42px;
  }


  /* Home */

  .edel-hero {
    padding-bottom: 54px;
  }

  .edel-hero-copy {
    padding-top: 36px;
  }

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

    gap: 30px 50px;
  }

  .edel-services,
  .edel-process,
  .edel-faq {
    padding-top: 82px;
    padding-bottom: 88px;
  }

  .edel-heading-split {
    gap: 42px;
  }

  .edel-meet-grid {
    gap: 48px;
  }

  .edel-meet-visual {
    min-height: 520px;
  }


  /* About */

  .edel-about-hero {
    padding: 45px 0 68px;
  }

  .edel-about-trust-grid,
  .edel-about-journey-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .edel-about-story,
  .edel-about-journey,
  .edel-about-approach,
  .edel-about-practice,
  .edel-about-specialisms,
  .edel-about-professional {
    padding-top: 84px;
    padding-bottom: 90px;
  }


  /* Services */

  .edel-services-hero {
    padding: 44px 0 68px;
  }

  .edel-service-detail-grid {
    grid-template-columns:
      minmax(235px, 0.67fr)
      minmax(0, 1.33fr);

    gap: 55px;
  }

  .edel-service-title-column {
    position: static;
  }


  /* Specialist */

  .edel-gut-context,
  .edel-weight-context,
  .edel-metabolic-context,
  .edel-sport-context {
    padding: 82px 0 56px;
  }

  .edel-gut-support,
  .edel-weight-support,
  .edel-sport-support,
  .edel-metabolic-dimensions,
  .edel-gut-process,
  .edel-weight-process,
  .edel-metabolic-process,
  .edel-sport-day {
    padding: 82px 0 88px;
  }

  .edel-gut-fodmap,
  .edel-weight-philosophy,
  .edel-metabolic-philosophy,
  .edel-sport-philosophy {
    padding: 82px 0;
  }

  .edel-gut-professional,
  .edel-weight-professional,
  .edel-metabolic-professional,
  .edel-sport-professional {
    padding: 82px 0;
  }


  /* Footer */

  .edel-site-footer {
    padding: 62px 0 26px;
  }

  .edel-site-footer-main {
    grid-template-columns: 1fr;

    gap: 45px;

    padding-bottom: 46px;
  }

  .edel-site-footer-brand {
    max-width: 460px;
  }

  .edel-site-footer-nav {
    gap: 35px;
  }


  /* Cookie */

  .cookie-banner__inner {
    align-items: flex-start;

    gap: 22px;
  }

  .cookie-banner__actions {
    flex-direction: column;
  }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

  .edel-shell,
  .edel-about-shell,
  .edel-page-shell,
  .edel-gut-shell,
  .edel-weight-shell,
  .edel-metabolic-shell,
  .edel-sport-shell,
  .edel-process-shell,
  .edel-resources-shell,
  .edel-contact-shell,
  .edel-policy-shell,
  .site-header .inside-header,
  .edel-site-footer-shell {
    width: calc(100% - 32px);
  }


  /* Header */

  .site-header .inside-header {
    position: relative;

    padding: 10px 0;
  }

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

  .site-branding img {
    width: 42px;
    height: 42px;
  }

  .menu-toggle {
    display: block;

    margin-left: auto;
  }

  .main-navigation {
    position: absolute;

    left: 0;
    right: 0;
    top: 100%;

    display: none;

    width: 100%;

    margin: 0;

    padding:
      10px 20px 20px;

    background:
      rgba(247, 243, 236, 0.995);

    border-bottom:
      1px solid rgba(126, 144, 128, 0.2);

    box-shadow:
      0 14px 30px rgba(38, 49, 42, 0.08);
  }

  .main-navigation.is-open {
    display: block;
  }

  .main-navigation > .menu {
    display: block;
  }

  .main-navigation a,
  .submenu-toggle {
    width: 100%;

    padding: 12px 0;

    text-align: left;

    font-size: 0.87rem;
  }

  .sub-menu {
    position: static;

    display: none;

    width: 100%;

    padding:
      3px 0 8px 16px !important;

    background:
      rgba(231, 235, 229, 0.48);

    border: 0;

    border-radius: 8px;

    box-shadow: none;

    opacity: 1;
    visibility: visible;

    transform: none;
  }

  .menu-item-has-children.is-open > .sub-menu {
    display: block;
  }

  .sub-menu a {
    white-space: normal;
  }

  .edel-book-menu {
    margin: 8px 0 0;
  }

  .edel-book-menu > a {
    padding: 13px 18px;
  }


  /* Shared typography */

  .edel-eyebrow,
  .edel-section-eyebrow,
  .edel-about-eyebrow,
  .edel-page-eyebrow,
  .edel-gut-eyebrow,
  .edel-weight-eyebrow,
  .edel-metabolic-eyebrow,
  .edel-sport-eyebrow,
  .edel-process-eyebrow,
  .edel-resources-eyebrow,
  .edel-contact-eyebrow,
  .edel-policy-eyebrow {
    font-size: 0.68rem;

    letter-spacing: 0.12em;
  }


  /* Shared action groups */

  .edel-actions,
  .edel-about-actions,
  .edel-page-actions,
  .edel-gut-actions,
  .edel-weight-actions,
  .edel-metabolic-actions,
  .edel-sport-actions,
  .edel-process-actions,
  .edel-resources-actions,
  .edel-contact-final-actions,
  .edel-process-final-actions,
  .edel-resources-final-actions {
    flex-direction: column;

    align-items: stretch;

    gap: 14px;
  }

  .edel-button,
  .edel-about-button,
  .edel-page-button,
  .edel-gut-button,
  .edel-weight-button,
  .edel-metabolic-button,
  .edel-sport-button,
  .edel-process-button,
  .edel-process-followup-button,
  .edel-resources-button,
  .edel-resources-secondary-button,
  .edel-contact-button,
  .edel-contact-secondary-button {
    width: 100%;

    min-width: 0;
  }


  /* Home */

  .edel-hero {
    padding: 18px 0 42px;
  }

  .edel-hero-grid {
    grid-template-columns: 1fr;

    gap: 31px;
  }

  .edel-hero-copy {
    padding-top: 4px;
  }

  .edel-hero h1 {
    font-size: clamp(2.85rem, 13vw, 3.6rem);
  }

  .edel-intro {
    font-size: 0.96rem;
  }

  .edel-hero-portrait {
    width: min(100%, 420px);

    margin-inline: auto;
  }

  .edel-credentials {
    padding: 29px 0;
  }

  .edel-credentials-grid {
    grid-template-columns: 1fr;

    gap: 0;
  }

  .edel-credential {
    padding: 18px 0;

    border-bottom:
      1px solid rgba(89, 108, 93, 0.14);
  }

  .edel-services {
    padding: 66px 0 58px;
  }

  .edel-heading-split,
  .edel-services-grid {
    grid-template-columns: 1fr;
  }

  .edel-heading-split {
    gap: 24px;

    margin-bottom: 34px;
  }

  .edel-service-card {
    min-height: 240px;

    padding: 24px 22px;
  }

  .edel-editorial-break {
    padding-bottom: 66px;
  }

  .edel-editorial-frame {
    display: flex;

    flex-direction: column;

    min-height: 0;
  }

  .edel-editorial-frame > img {
    height: 275px;

    object-position: 67% center;
  }

  .edel-editorial-message {
    position: static;

    width: 100%;

    transform: none;

    padding: 25px 22px 27px;

    border: 0;
    border-radius: 0;

    box-shadow: none;
  }

  .edel-meet {
    padding: 68px 0;
  }

  .edel-meet-grid {
    grid-template-columns: 1fr;

    gap: 42px;
  }

  .edel-meet-visual {
    width: min(100%, 455px);

    min-height: 500px;

    margin-inline: auto;
  }

  .edel-meet-details > div {
    grid-template-columns: 1fr;

    gap: 5px;
  }

  .edel-process {
    padding: 68px 0 74px;
  }

  .edel-process-grid {
    grid-template-columns: 1fr;

    gap: 14px;
  }

  .edel-testimonials {
    padding: 68px 0;
  }

  .edel-testimonial-grid {
    grid-template-columns: 1fr;
  }

  .edel-faq {
    padding: 68px 0 74px;
  }

  .edel-faq-grid {
    grid-template-columns: 1fr;

    gap: 34px;
  }


  /* About */

  .edel-about-hero {
    padding: 34px 0 56px;
  }

  .edel-about-hero-grid {
    grid-template-columns: 1fr;

    gap: 40px;
  }

  .edel-about-hero h1 {
    font-size: clamp(2.9rem, 12vw, 3.7rem);
  }

  .edel-about-hero-visual {
    width: 100%;

    margin: 0;
  }

  .edel-about-portrait-stage {
    min-height: 485px;

    border-radius:
      160px 160px 15px 15px;
  }

  .edel-about-trust-grid {
    grid-template-columns: 1fr;

    gap: 0;
  }

  .edel-about-story,
  .edel-about-journey,
  .edel-about-approach,
  .edel-about-practice,
  .edel-about-specialisms,
  .edel-about-professional {
    padding: 68px 0;
  }

  .edel-about-story-grid,
  .edel-about-practice-grid,
  .edel-about-professional-grid {
    grid-template-columns: 1fr;

    gap: 40px;
  }

  .edel-about-journey-grid,
  .edel-about-values-grid,
  .edel-about-specialisms-grid {
    grid-template-columns: 1fr;

    gap: 14px;
  }

  .edel-about-approach-grid {
    grid-template-columns: 1fr;

    gap: 25px;

    margin-bottom: 32px;
  }


  /* Services landing */

  .edel-services-hero {
    padding: 30px 0 52px;
  }

  .edel-services-hero-grid {
    grid-template-columns: 1fr;

    gap: 36px;
  }

  .edel-services-hero h1 {
    font-size: clamp(2.8rem, 12vw, 3.55rem);
  }

  .edel-services-hero-visual {
    padding: 0 0 29px;
  }

  .edel-services-image-frame,
  .edel-services-image-frame img {
    height: 300px;
    min-height: 300px;
  }

  .edel-services-trust-grid {
    grid-template-columns: 1fr;
  }

  .edel-services-trust-grid > div,
  .edel-services-trust-grid > div:first-child,
  .edel-services-trust-grid > div:last-child {
    padding: 14px 0;

    border-right: 0;

    border-bottom:
      1px solid rgba(89, 108, 93, 0.14);
  }

  .edel-services-introduction {
    padding: 68px 0 48px;
  }

  .edel-introduction-grid {
    grid-template-columns: 1fr;

    gap: 28px;
  }

  .edel-service-detail {
    padding: 55px 0;
  }

  .edel-service-detail-grid {
    grid-template-columns: 1fr;

    gap: 31px;
  }

  .edel-service-title-column {
    position: static;
  }

  .edel-service-may-help ul {
    grid-template-columns: 1fr;
  }

  .edel-clinical-approach {
    padding: 68px 0 74px;
  }

  .edel-approach-top,
  .edel-approach-grid,
  .edel-decision-grid {
    grid-template-columns: 1fr;
  }

  .edel-approach-top,
  .edel-decision-grid {
    gap: 30px;
  }

  .edel-services-decision {
    padding: 68px 0;
  }


  /* Specialist service pages */

  .edel-gut-hero,
  .edel-weight-hero,
  .edel-metabolic-hero,
  .edel-sport-hero {
    padding: 27px 0 52px;
  }

  .edel-gut-hero-grid,
  .edel-weight-hero-grid,
  .edel-metabolic-hero-grid,
  .edel-sport-hero-grid {
    grid-template-columns: 1fr;

    gap: 38px;
  }

  .edel-gut-hero h1,
  .edel-weight-hero h1,
  .edel-metabolic-hero h1,
  .edel-sport-hero h1 {
    font-size: clamp(2.85rem, 12vw, 3.6rem);
  }

  .edel-gut-hero-visual,
  .edel-weight-hero-visual,
  .edel-metabolic-hero-visual,
  .edel-sport-hero-visual {
    width: 100%;

    margin: 0;
  }

  .edel-gut-focus-card,
  .edel-weight-philosophy-card,
  .edel-metabolic-focus-card,
  .edel-sport-performance-card {
    padding: 27px 22px;

    border-radius: 15px;
  }

  .edel-gut-trust-grid,
  .edel-weight-trust-grid,
  .edel-metabolic-trust-grid,
  .edel-sport-trust-grid {
    grid-template-columns: 1fr;

    gap: 0;
  }

  .edel-gut-context,
  .edel-weight-context,
  .edel-metabolic-context,
  .edel-sport-context {
    padding: 68px 0 42px;
  }

  .edel-gut-context-grid,
  .edel-weight-context-grid,
  .edel-metabolic-context-grid,
  .edel-sport-context-grid {
    grid-template-columns: 1fr;

    gap: 29px;
  }

  .edel-gut-editorial,
  .edel-weight-editorial,
  .edel-metabolic-editorial,
  .edel-sport-editorial {
    padding-bottom: 58px;
  }

  .edel-gut-editorial-frame,
  .edel-weight-editorial-frame,
  .edel-metabolic-editorial-frame,
  .edel-sport-editorial-frame {
    aspect-ratio: 4 / 3;

    border-radius: 13px;
  }

  .edel-gut-support,
  .edel-weight-support,
  .edel-sport-support,
  .edel-metabolic-dimensions,
  .edel-metabolic-support,
  .edel-gut-process,
  .edel-weight-process,
  .edel-metabolic-process,
  .edel-sport-day {
    padding: 68px 0 74px;
  }

  .edel-gut-support-grid,
  .edel-weight-support-grid,
  .edel-sport-support-grid,
  .edel-metabolic-support-grid,
  .edel-metabolic-dimensions-grid,
  .edel-gut-process-grid,
  .edel-weight-process-grid,
  .edel-metabolic-process-grid,
  .edel-sport-day-grid {
    grid-template-columns: 1fr;

    gap: 14px;
  }

  .edel-gut-fodmap,
  .edel-weight-philosophy,
  .edel-metabolic-philosophy,
  .edel-sport-philosophy {
    padding: 68px 0;
  }

  .edel-gut-fodmap-grid,
  .edel-weight-philosophy-grid,
  .edel-metabolic-philosophy-grid,
  .edel-sport-philosophy-grid {
    grid-template-columns: 1fr;

    gap: 25px;

    margin-bottom: 32px;
  }

  .edel-gut-fodmap-stages,
  .edel-weight-values-grid,
  .edel-metabolic-values-grid,
  .edel-sport-values-grid {
    grid-template-columns: 1fr;

    gap: 14px;
  }

  .edel-gut-medical-grid,
  .edel-metabolic-medical-grid,
  .edel-sport-context-note-grid {
    grid-template-columns: 1fr;

    gap: 28px;
  }

  .edel-gut-professional,
  .edel-weight-professional,
  .edel-metabolic-professional,
  .edel-sport-professional {
    padding: 68px 0;
  }

  .edel-gut-professional-grid,
  .edel-weight-professional-grid,
  .edel-metabolic-professional-grid,
  .edel-sport-professional-grid {
    grid-template-columns: 1fr;

    gap: 42px;
  }

  .edel-gut-faq,
  .edel-weight-faq,
  .edel-metabolic-faq,
  .edel-sport-faq {
    padding: 68px 0 74px;
  }

  .edel-gut-faq-grid,
  .edel-weight-faq-grid,
  .edel-metabolic-faq-grid,
  .edel-sport-faq-grid {
    grid-template-columns: 1fr;

    gap: 34px;
  }


  /* How it works */

  .edel-process-hero {
    padding: 34px 0 56px;
  }

  .edel-process-hero-grid {
    grid-template-columns: 1fr;

    gap: 40px;
  }

  .edel-process-hero h1 {
    font-size: clamp(2.9rem, 12vw, 3.7rem);
  }

  .edel-process-hero-visual {
    width: 100%;

    margin: 0;
  }

  .edel-process-journey,
  .edel-process-assessment,
  .edel-process-continuity {
    padding: 68px 0 74px;
  }

  .edel-process-journey-list article {
    grid-template-columns:
      48px 1fr;

    gap: 17px;
  }

  .edel-process-initial {
    padding: 68px 0;
  }

  .edel-process-initial-grid {
    grid-template-columns: 1fr;

    gap: 29px;
  }

  .edel-process-assessment-grid,
  .edel-process-continuity-grid {
    grid-template-columns: 1fr;

    gap: 14px;
  }

  .edel-process-followup {
    padding: 68px 0;
  }

  .edel-process-followup-grid,
  .edel-process-followup-values {
    grid-template-columns: 1fr;
  }

  .edel-process-online {
    padding: 58px 0;
  }

  .edel-process-online-grid {
    grid-template-columns: 1fr;

    gap: 28px;
  }

  .edel-process-faq {
    padding: 68px 0 74px;
  }

  .edel-process-faq-grid {
    grid-template-columns: 1fr;

    gap: 34px;
  }


  /* Resources */

  .edel-resources-hero {
    padding: 34px 0 56px;
  }

  .edel-resources-hero-grid {
    grid-template-columns: 1fr;

    gap: 40px;
  }

  .edel-resources-hero h1 {
    font-size: clamp(2.9rem, 12vw, 3.7rem);
  }

  .edel-resources-hero-visual {
    width: 100%;

    margin: 0;
  }

  .edel-resources-trust-grid,
  .edel-resources-topics-grid,
  .edel-resources-check-list,
  .edel-resources-personal-values,
  .edel-resources-help-grid {
    grid-template-columns: 1fr;

    gap: 14px;
  }

  .edel-resources-topics,
  .edel-resources-check,
  .edel-resources-help {
    padding: 68px 0 74px;
  }

  .edel-resources-check-grid,
  .edel-resources-personal-grid,
  .edel-resources-help-top,
  .edel-resources-note-grid {
    grid-template-columns: 1fr;

    gap: 29px;
  }

  .edel-resources-personal {
    padding: 68px 0;
  }

  .edel-resources-note {
    padding: 58px 0;
  }


  /* Contact */

  .edel-contact-hero {
    padding: 36px 0 58px;
  }

  .edel-contact-hero-grid {
    grid-template-columns: 1fr;

    gap: 38px;
  }

  .edel-contact-hero h1 {
    font-size: clamp(2.9rem, 12vw, 3.7rem);
  }

  .edel-contact-paths,
  .edel-contact-details,
  .edel-contact-social,
  .edel-contact-faq {
    padding: 68px 0 74px;
  }

  .edel-contact-paths-grid,
  .edel-contact-details-grid,
  .edel-contact-social-profiles {
    grid-template-columns: 1fr;

    gap: 14px;
  }

  .edel-contact-paths-grid article {
    min-height: 0;
  }

  .edel-contact-between {
    padding: 68px 0;
  }

  .edel-contact-between-grid,
  .edel-contact-between-values,
  .edel-contact-expectations-grid,
  .edel-contact-social-heading,
  .edel-contact-faq-grid {
    grid-template-columns: 1fr;

    gap: 28px;
  }

  .edel-contact-expectations {
    padding: 58px 0;
  }

  .edel-contact-instagram-area {
    padding: 19px;
  }


  /* FAQ */

  .edel-faq-item summary,
  .edel-gut-faq-item summary,
  .edel-weight-faq-item summary,
  .edel-metabolic-faq-item summary,
  .edel-sport-faq-item summary,
  .edel-process-faq-item summary,
  .edel-contact-faq-item summary {
    padding:
      21px 38px 21px 0;

    font-size: 1.28rem;
  }


  /* Final CTA */

  .edel-final-cta,
  .edel-about-final,
  .edel-gut-final,
  .edel-weight-final,
  .edel-metabolic-final,
  .edel-sport-final,
  .edel-process-final,
  .edel-contact-final {
    padding: 68px 0 72px;
  }


  /* Policy */

  .edel-policy-hero {
    padding: 68px 0 50px;
  }

  .edel-policy-hero h1 {
    font-size: clamp(2.65rem, 12vw, 4rem);
  }

  .edel-policy-section {
    padding: 55px 0 72px;
  }

  .edel-policy-layout {
    grid-template-columns: 1fr;

    gap: 42px;
  }

  .edel-policy-aside {
    position: static;

    padding-bottom: 28px;

    border-bottom:
      1px solid rgba(126, 144, 128, 0.15);
  }

  .edel-policy-content h2 {
    margin: 44px 0 16px;

    font-size: clamp(1.7rem, 8vw, 2.1rem);
  }

  .edel-policy-contact {
    padding: 48px 0;
  }

  .edel-policy-contact-inner {
    flex-direction: column;

    align-items: flex-start;

    gap: 26px;
  }


  /* Footer */

  .edel-site-footer {
    padding: 54px 0 22px;
  }

  .edel-site-footer-main {
    grid-template-columns: 1fr;

    gap: 40px;

    padding-bottom: 40px;
  }

  .edel-site-footer-brand {
    max-width: 360px;
  }

  .edel-site-footer-nav {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap: 35px 25px;
  }

  .edel-site-footer-nav > div:last-child {
    grid-column: 1 / -1;
  }

  .edel-site-footer-bottom {
    flex-direction: column;

    gap: 18px;

    padding-top: 22px;
  }

  .edel-site-footer-legal {
    align-items: flex-start;
  }

  .edel-site-footer-legal nav {
    justify-content: flex-start;

    gap: 8px 14px;
  }


  /* Cookie */

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .cookie-banner__inner {
    flex-direction: column;

    align-items: stretch;

    gap: 18px;

    max-height:
      calc(100vh - 24px);

    padding: 22px;

    overflow-y: auto;

    border-radius: 15px;
  }

  .cookie-banner__actions {
    display: grid;

    grid-template-columns: 1fr;

    gap: 9px;
  }

  .cookie-button {
    width: 100%;
  }
}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

  .edel-site-footer-nav {
    grid-template-columns: 1fr;

    gap: 30px;
  }

  .edel-site-footer-nav > div:last-child {
    grid-column: auto;
  }

  .edel-site-footer-legal nav {
    flex-direction: column;

    gap: 7px;
  }

  .cookie-banner {
    left: 8px;
    right: 8px;
    bottom: 8px;
  }

  .cookie-banner__inner {
    max-height:
      calc(100vh - 16px);

    padding: 19px 17px;
  }

  .edel-about-specialisms-grid > a,
  .edel-resources-topics-grid > a {
    grid-template-columns:
      28px 1fr;
  }

  .edel-about-specialisms-grid b,
  .edel-resources-topics-grid b {
    display: none;
  }

  .edel-contact-social-profile {
    grid-template-columns:
      46px 1fr;
  }

  .edel-contact-social-profile > b {
    display: none;
  }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration:
      0.01ms !important;

    animation-iteration-count:
      1 !important;

    transition-duration:
      0.01ms !important;
  }
}