:root {
  --cream: #fff8f1;
  --cream-soft: #f8efe6;
  --paper: #ffffff;
  --ink: #25282b;
  --muted: #6f6a66;

  --green: #0b5b4c;
  --green-dark: #064539;
  --mint: #a8c9bd;
  --peach: #feb6a9;
  --coral: #ea6e59;
  --blue: #0e54b8;
  --mustard: #dfa746;
  --lavender: #9a7eb1;

  --line: rgba(37, 40, 43, .12);
  --line-dark: rgba(37, 40, 43, .22);
  --shadow: 0 24px 70px rgba(37, 40, 43, .12);
  --shadow-soft: 0 14px 40px rgba(37, 40, 43, .08);

  --serif: "Fraunces", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 4% 6%, rgba(254, 182, 169, .28), transparent 22%),
    radial-gradient(circle at 94% 8%, rgba(168, 201, 189, .22), transparent 25%),
    linear-gradient(180deg, #fffaf4 0%, var(--cream) 100%);
}

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

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

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

button {
  cursor: pointer;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -80px;
  left: 20px;
  z-index: 100;
  background: var(--green);
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
}

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

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 248, 241, .86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 12px 40px rgba(37, 40, 43, .08);
}

.header-inner {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--peach);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(234, 110, 89, .18);
}

.brand-icon img {
  width: 30px;
  height: 30px;
}

.brand-text strong {
  display: block;
  font-family: var(--serif);
  font-size: 29px;
  line-height: .95;
  letter-spacing: -.03em;
}

.brand-text em {
  display: block;
  font-style: normal;
  font-size: 10px;
  line-height: 1;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--muted);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.desktop-nav > a,
.nav-dropdown > button {
  position: relative;
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
}

.desktop-nav > a::after,
.nav-dropdown > button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 7px;
  border-radius: 999px;
  background: var(--peach);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}

.desktop-nav > a:hover::after,
.desktop-nav > a.is-active::after,
.nav-dropdown.is-open > button::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > button {
  display: flex;
  align-items: center;
  gap: 7px;
}

.nav-dropdown > button span {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -5px;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 28px);
  left: 50%;
  width: min(820px, 90vw);
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 18px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px 30px 46px 30px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(12px);
  transition: opacity .22s ease, transform .22s ease;
}

.nav-dropdown.is-open .dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-intro {
  background: var(--green);
  color: #fff;
  border-radius: 24px 24px 38px 24px;
  padding: 22px;
}

.dropdown-intro small {
  display: block;
  color: var(--peach);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 800;
}

.dropdown-intro strong {
  display: block;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.05;
  margin: 14px 0 8px;
}

.dropdown-intro p {
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: 14px;
}

.dropdown-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.dropdown-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  background: var(--cream);
  border: 1px solid var(--line);
  font-weight: 800;
  transition: transform .18s ease, background .18s ease;
}

.dropdown-links a:hover {
  background: #f3dccb;
  transform: rotate(-1deg) translateY(-2px);
}

.dropdown-links b {
  color: var(--green);
  font-family: var(--serif);
  font-size: 20px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-phone {
  background: var(--peach);
  border-radius: 999px;
  padding: 13px 18px;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(254, 182, 169, .24);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--green);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-button span {
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
}

.mobile-menu {
  display: none;
}

/* Global */

.eyebrow {
  display: block;
  color: var(--green);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 800;
}

.eyebrow.light {
  color: var(--peach);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 750;
  line-height: 1.04;
  letter-spacing: -.035em;
}

h1 {
  font-size: clamp(38px, 4.1vw, 62px);
  max-width: 760px;
}

h2 {
  font-size: clamp(32px, 3.3vw, 52px);
}

h3 {
  font-size: 28px;
}

p {
  color: var(--muted);
}

.primary-button,
.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: 999px;
  font-weight: 800;
}

.primary-button {
  background: var(--green);
  color: #fff;
  padding: 0 26px;
  box-shadow: 0 18px 34px rgba(11, 91, 76, .18);
  transition: transform .2s ease, background .2s ease;
}

.primary-button:hover {
  transform: translateY(-3px);
  background: var(--green-dark);
}

.primary-button.dark {
  background: var(--ink);
}

.text-button {
  position: relative;
  color: var(--ink);
}

.text-button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  height: 7px;
  z-index: -1;
  background: var(--peach);
  border-radius: 999px;
}

/* Hero */

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 48px 0 72px;
}

.hero-script {
  position: absolute;
  right: 6%;
  top: 18%;
  font-family: var(--serif);
  font-size: 118px;
  line-height: 1;
  color: rgba(11, 91, 76, .04);
  transform: rotate(-7deg);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(500px, 1.05fr);
  gap: 72px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.hero-content h1 {
  margin: 12px 0 16px;
  max-width: 620px;
  font-size: clamp(34px, 3.15vw, 52px);
  line-height: 1.05;
  letter-spacing: -.04em;
}

.hero-content p {
  max-width: 580px;
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.primary-button,
.text-button {
  min-height: 50px;
}

.primary-button {
  padding: 0 24px;
}

.intent-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  max-width: 580px;
}

.intent-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px 0 42px;
  border: 1px solid rgba(37, 40, 43, .10);
  border-radius: 18px 999px 999px 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.68));
  color: var(--ink);
  font-size: 13.5px;
  line-height: 1;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(37, 40, 43, .05);
  transition:
    transform .18s ease,
    background .18s ease,
    border-color .18s ease,
    color .18s ease,
    box-shadow .18s ease;
  overflow: hidden;
}

.intent-links a::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.intent-links a:nth-child(1)::before {
  background: #0b5b4c;
  box-shadow: 0 0 0 5px rgba(11, 91, 76, .10);
}

.intent-links a:nth-child(2)::before {
  background: #f2b2a5;
  box-shadow: 0 0 0 5px rgba(242, 178, 165, .16);
}

.intent-links a:nth-child(3)::before {
  background: #8f9e8b;
  box-shadow: 0 0 0 5px rgba(143, 158, 139, .14);
}

.intent-links a:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(37, 40, 43, .10);
}

/* 1. buton hover */
.intent-links a:nth-child(1):hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.intent-links a:nth-child(1):hover::before {
  background: #fff;
  box-shadow: 0 0 0 5px rgba(255,255,255,.16);
  transform: translateY(-50%) scale(1.05);
}

/* 2. buton hover */
.intent-links a:nth-child(2):hover {
  background: #f2b2a5;
  border-color: #f2b2a5;
  color: #2b2b2b;
}

.intent-links a:nth-child(2):hover::before {
  background: #fff;
  box-shadow: 0 0 0 5px rgba(255,255,255,.20);
  transform: translateY(-50%) scale(1.05);
}

/* 3. buton hover */
.intent-links a:nth-child(3):hover {
  background: #8f9e8b;
  border-color: #8f9e8b;
  color: #fff;
}

.intent-links a:nth-child(3):hover::before {
  background: #fff;
  box-shadow: 0 0 0 5px rgba(255,255,255,.16);
  transform: translateY(-50%) scale(1.05);
}

.hero-visual {
  position: relative;
  min-height: 560px;
  width: 100%;
}

.hero-visual-base {
  position: absolute;
  right: 22px;
  top: 34px;
  width: 480px;
  height: 480px;
  border-radius: 42% 58% 57% 43% / 44% 42% 58% 56%;
  background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(248,239,230,.88));
  box-shadow: 0 20px 55px rgba(37, 40, 43, .055);
}

.hero-outline {
  position: absolute;
  border: 1px solid rgba(11, 91, 76, .09);
  border-radius: 50%;
  pointer-events: none;
}

.hero-outline-one {
  width: 420px;
  height: 420px;
  right: 48px;
  top: 54px;
}

.hero-outline-two {
  width: 240px;
  height: 240px;
  left: 72px;
  bottom: 58px;
}

.hero-single-figure {
  position: absolute;
  right: 42px;
  top: 62px;
  width: 455px;
  height: 470px;
  margin: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  border-radius: 34% 66% 26% 74% / 64% 28% 72% 36%;
  transform: rotate(1.5deg);
  z-index: 3;
}

.hero-single-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-brush {
  position: absolute;
  display: block;
  z-index: 4;
}

.hero-brush-one {
  left: 116px;
  top: 112px;
  width: 58px;
  height: 58px;
  background: rgba(254, 182, 169, .78);
  border-radius: 58% 42% 47% 53%;
  transform: rotate(-18deg);
}

.hero-brush-two {
  right: 16px;
  bottom: 44px;
  width: 78px;
  height: 72px;
  background: rgba(11, 91, 76, .92);
  border-radius: 42% 58% 61% 39%;
  transform: rotate(22deg);
}

/* Tablet */
@media (max-width: 1120px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content h1 {
    max-width: 650px;
    font-size: clamp(32px, 5vw, 46px);
  }

  .hero-content p {
    max-width: 620px;
    font-size: 16px;
  }

  .hero-visual {
    min-height: 540px;
    max-width: 620px;
    margin: 0 auto;
  }

  .hero-visual-base {
    right: 38px;
    top: 42px;
    width: 400px;
    height: 400px;
  }

  .hero-outline-one {
    width: 350px;
    height: 350px;
    right: 58px;
    top: 58px;
  }

  .hero-outline-two {
    width: 210px;
    height: 210px;
    left: 54px;
    bottom: 68px;
  }

  .hero-single-figure {
    right: 52px;
    top: 74px;
    width: 370px;
    height: 390px;
  }

  .hero-brush-one {
    left: 88px;
    top: 112px;
    width: 54px;
    height: 54px;
  }

  .hero-brush-two {
    right: 30px;
    bottom: 54px;
    width: 70px;
    height: 64px;
  }
}

/* Mobile */
@media (max-width: 760px) {
  .hero-section {
    padding: 34px 0 60px;
  }

  .hero-script {
    display: none;
  }

  .hero-grid {
    gap: 26px;
  }

  .hero-content h1 {
    margin: 10px 0 14px;
    font-size: 34px;
    line-height: 1.08;
  }

  .hero-content p {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.7;
  }

  .hero-actions {
    gap: 12px;
  }

 .intent-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 100%;
  margin-top: 20px;
}

.intent-links a {
  width: auto;
  min-height: 40px;
  padding: 0 14px 0 36px;
  font-size: 12.5px;
  border-radius: 16px 999px 999px 16px;
}

.intent-links a::before {
  left: 12px;
  width: 10px;
  height: 10px;
}

  .hero-visual {
    min-height: 340px;
  }

  .hero-visual-base {
    right: 8px;
    top: 24px;
    width: 250px;
    height: 250px;
  }

  .hero-outline-one {
    width: 210px;
    height: 210px;
    right: 22px;
    top: 32px;
  }

  .hero-outline-two {
    width: 130px;
    height: 130px;
    left: 8px;
    bottom: 34px;
  }

  .hero-single-figure {
    right: 16px;
    top: 44px;
    width: 235px;
    height: 250px;
  }

  .hero-brush-one {
    left: 18px;
    top: 76px;
    width: 42px;
    height: 42px;
  }

  .hero-brush-two {
    right: 0;
    bottom: 30px;
    width: 54px;
    height: 50px;
  }
}
/* Approach */

.approach-section {
  position: relative;
  padding: 86px 0;
  background: #fff;
}

.approach-section::before {
  content: "";
  position: absolute;
  inset: auto 0 100% 0;
  height: 70px;
  background: #fff;
  clip-path: polygon(0 45%, 45% 70%, 100% 40%, 100% 100%, 0 100%);
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: 72px;
  align-items: center;
}

.approach-image {
  min-height: 470px;
  overflow: hidden;
  border-radius: 44% 56% 65% 35% / 50% 45% 55% 50%;
  box-shadow: var(--shadow);
}

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

.approach-content p {
  font-size: 18px;
}

.approach-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.approach-points span {
  font-weight: 800;
  border-bottom: 3px solid var(--peach);
  padding-bottom: 8px;
}

/* Services */

.service-guide-section {
  position: relative;
  padding: 92px 0 100px;
  background:
    radial-gradient(circle at 88% 12%, rgba(168, 201, 189, .15), transparent 28%),
    linear-gradient(180deg, #fff 0%, var(--cream) 100%);
  overflow: hidden;
}

.service-guide-layout {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 68px;
  align-items: start;
}

.service-guide-intro {
  position: sticky;
  top: 118px;
}

.service-guide-intro h2 {
  max-width: 340px;
  margin: 10px 0 18px;
  font-size: clamp(34px, 3vw, 50px);
}

.service-guide-intro p {
  max-width: 335px;
  margin: 0 0 24px;
  font-size: 16.5px;
  line-height: 1.82;
}

.service-guide-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 32px;
  align-items: start;
  min-width: 0;
}

.service-guide-list {
  display: grid;
  border-top: 1px solid rgba(37, 40, 43, .12);
}

.service-guide-item {
  position: relative;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  column-gap: 18px;
  row-gap: 4px;
  padding: 20px 0 19px;
  border-bottom: 1px solid rgba(37, 40, 43, .12);
  transition:
    padding .2s ease,
    background .2s ease,
    transform .2s ease;
}

.service-guide-item::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 13px;
  bottom: 13px;
  width: 4px;
  border-radius: 999px;
  background: transparent;
  transition: background .2s ease, transform .2s ease;
}

.service-guide-item span {
  grid-row: 1 / span 2;
  color: rgba(37, 40, 43, .30);
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -.03em;
  transition: color .2s ease, transform .2s ease;
}

.service-guide-item strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1.05;
  letter-spacing: -.03em;
  transition: color .2s ease;
}

.service-guide-item small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  transition: color .2s ease;
}

.service-guide-item:hover,
.service-guide-item.is-active {
  padding-left: 14px;
}

.service-guide-item:hover::before,
.service-guide-item.is-active::before {
  background: var(--green);
  transform: scaleY(.88);
}

.service-guide-item:hover span,
.service-guide-item.is-active span {
  color: var(--green);
  transform: translateY(-2px);
}

.service-guide-item:hover strong,
.service-guide-item.is-active strong {
  color: var(--green);
}

.service-guide-preview {
  position: sticky;
  top: 118px;
  min-height: 365px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  overflow: hidden;
  color: #fff;
  border-radius: 34px 34px 82px 34px;
  background: var(--green);
  box-shadow: 0 24px 56px rgba(37, 40, 43, .13);
  transition:
    background .25s ease,
    transform .25s ease,
    box-shadow .25s ease;
}

.service-guide-preview:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 66px rgba(37, 40, 43, .16);
}

.service-guide-preview::before {
  content: "";
  position: absolute;
  right: -46px;
  top: -54px;
  width: 175px;
  height: 175px;
  border-radius: 44% 56% 58% 42%;
  background: rgba(255,255,255,.12);
}

.service-guide-preview::after {
  content: "";
  position: absolute;
  left: -64px;
  bottom: -76px;
  width: 185px;
  height: 185px;
  border-radius: 58% 42% 40% 60%;
  background: rgba(255,255,255,.08);
}

.preview-mark,
.service-guide-preview > div,
.service-guide-preview > a {
  position: relative;
  z-index: 2;
}

.preview-mark {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: rgba(255,255,255,.16);
}

.preview-mark span {
  color: #fff;
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1;
  font-weight: 700;
}

.service-guide-preview small {
  display: block;
  margin-bottom: 10px;
  color: rgba(255,255,255,.72);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 800;
}

.service-guide-preview h3 {
  max-width: 260px;
  margin: 0 0 12px;
  color: #fff;
  font-size: 34px;
  line-height: 1.02;
}

.service-guide-preview p {
  max-width: 270px;
  margin: 0;
  color: rgba(255,255,255,.84);
  font-size: 15.5px;
  line-height: 1.72;
}

.service-guide-preview a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  color: #fff;
  font-weight: 800;
}

.service-guide-preview a::after {
  content: "→";
}

.service-guide-preview.theme-green { background: #2f7d6b; }
.service-guide-preview.theme-coral { background: #df6a52; }
.service-guide-preview.theme-sand { background: #c99535; }
.service-guide-preview.theme-blue { background: #245fba; }
.service-guide-preview.theme-lilac { background: #866ba6; }
.service-guide-preview.theme-deep { background: #0b5b4c; }
.service-guide-preview.theme-peach { background: #c95e4a; }

@media (max-width: 1120px) {
  .service-guide-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .service-guide-intro {
    position: static;
  }

  .service-guide-intro h2,
  .service-guide-intro p {
    max-width: 720px;
  }

  .service-guide-panel {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-guide-preview {
    order: -1;
    position: relative;
    top: auto;
    min-height: 240px;
    border-radius: 32px 32px 70px 32px;
  }

  .service-guide-preview h3,
  .service-guide-preview p {
    max-width: 620px;
  }
}

@media (max-width: 760px) {
  .service-guide-section {
    padding: 70px 0;
  }

  .service-guide-intro h2 {
    font-size: 36px;
  }

  .service-guide-preview {
    min-height: 220px;
    padding: 22px;
    border-radius: 28px 28px 58px 28px;
  }

  .preview-mark {
    width: 54px;
    height: 54px;
    border-radius: 17px;
  }

  .preview-mark span {
    font-size: 31px;
  }

  .service-guide-preview h3 {
    font-size: 29px;
  }

  .service-guide-preview p {
    font-size: 14.5px;
    line-height: 1.65;
  }

  .service-guide-item {
    grid-template-columns: 46px minmax(0, 1fr);
    column-gap: 14px;
    padding: 17px 0;
  }

  .service-guide-item:hover,
  .service-guide-item.is-active {
    padding-left: 8px;
  }

  .service-guide-item::before {
    left: -10px;
  }

  .service-guide-item span {
    font-size: 24px;
  }

  .service-guide-item strong {
    font-size: 22px;
  }

  .service-guide-item small {
    font-size: 13px;
  }
}
/* Process */

.process-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0 140px;
  background: var(--green);
  color: #fff;
}

.process-background {
  position: absolute;
  inset: 0;
  opacity: .28;
}

.process-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(.2);
}

.process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6,69,57,.96), rgba(6,69,57,.78));
}

.process-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.process-inner h2 {
  color: #fff;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.process-steps article {
  border-top: 1px solid rgba(255,255,255,.4);
  padding-top: 24px;
}

.process-steps span {
  color: var(--peach);
  font-family: var(--serif);
  font-size: 44px;
}

.process-steps h3 {
  color: #fff;
}

.process-steps p {
  color: rgba(255,255,255,.8);
}

.section-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 110px;
  fill: var(--cream);
}

/* Team */

.team-section {
  padding: 96px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 56px;
  align-items: start;
}

.team-intro {
  position: sticky;
  top: 120px;
}

.team-list {
  display: grid;
  gap: 34px;
}

.team-profile {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 28px;
  align-items: center;
}

.team-profile:nth-child(even) {
  grid-template-columns: 1fr 300px;
}

.team-profile:nth-child(even) img {
  order: 2;
}

.team-profile img {
  width: 300px;
  height: 360px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.team-profile:first-child img {
  border-radius: 52% 48% 65% 35% / 45% 55% 45% 55%;
  transform: rotate(-2deg);
}

.team-profile:nth-child(2) img {
  border-radius: 38% 62% 42% 58% / 60% 38% 62% 40%;
  transform: rotate(2deg);
}

.team-profile span {
  display: block;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 800;
}

.team-profile a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--green);
  font-weight: 800;
  border-bottom: 3px solid var(--peach);
}

/* Instagram */

.instagram-section {
  padding: 92px 0;
  background: #fff;
}

.instagram-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.instagram-heading h2 {
  max-width: 760px;
  margin: 8px 0 0;
}

.instagram-feed {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.instagram-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  border-radius: 28px;
  background: var(--green);
  box-shadow: 0 14px 34px rgba(37, 40, 43, .08);
}

.instagram-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .78;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.34));
}

.instagram-card span,
.instagram-card strong,
.instagram-card small {
  position: relative;
  z-index: 2;
  color: #fff;
}

.instagram-card span {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 800;
}

.instagram-card strong {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1;
}

.instagram-card small {
  opacity: .82;
}

.instagram-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.instagram-card-1 {
  grid-column: span 2;
  background: var(--green);
}

.instagram-card-2 {
  grid-column: span 2;
  background: var(--coral);
}

.instagram-card-3 {
  background: var(--blue);
}

.instagram-card-4 {
  background: var(--mustard);
}

.instagram-card-5 {
  grid-column: span 3;
  background: #6e9f93;
}

.instagram-card-6 {
  grid-column: span 3;
  background: var(--lavender);
}

/* Appointment */

.melida-appointment {
  position: relative;
  padding: 72px 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(254, 182, 169, .14), transparent 24%),
    linear-gradient(180deg, var(--cream) 0%, #f4e9de 100%);
  overflow: hidden;
}

.melida-appointment-shell {
  display: grid;
  grid-template-columns: 430px minmax(0, 560px);
  gap: 34px;
  align-items: stretch;
  justify-content: center;
}

.appointment-info {
  position: relative;
  overflow: hidden;
  padding: 30px 32px;
  border-radius: 30px 30px 68px 30px;
  background:
    radial-gradient(circle at 92% 10%, rgba(255,255,255,.10), transparent 24%),
    linear-gradient(135deg, var(--green) 0%, #0d6b59 100%);
  color: #fff;
  box-shadow: 0 22px 52px rgba(37, 40, 43, .12);
}

.appointment-info::before {
  content: "";
  position: absolute;
  right: -58px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  border-radius: 48% 52% 60% 40%;
  background: rgba(255,255,255,.07);
  pointer-events: none;
}

.appointment-info h2,
.appointment-info p,
.appointment-contact-list {
  position: relative;
  z-index: 2;
}

.appointment-info h2 {
  max-width: 390px;
  margin: 10px 0 16px;
  color: #fff;
  font-size: clamp(30px, 2.55vw, 42px);
  line-height: 1.04;
}

.appointment-info p {
  max-width: 390px;
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 15.5px;
  line-height: 1.7;
}

.appointment-contact-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.appointment-contact-list a,
.appointment-contact-list div {
  display: grid;
  gap: 3px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 16px;
  background: rgba(255,255,255,.075);
  transition: background .18s ease, transform .18s ease;
}

.appointment-contact-list a:hover {
  background: rgba(255,255,255,.13);
  transform: translateY(-2px);
}

.appointment-contact-list small {
  color: var(--peach);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 800;
}

.appointment-contact-list strong {
  color: #fff;
  font-size: 14px;
  line-height: 1.42;
}

.melida-appointment-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(37, 40, 43, .08);
  border-radius: 30px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 20px 50px rgba(37, 40, 43, .09);
  backdrop-filter: blur(12px);
}

.form-head {
  display: grid;
  gap: 5px;
  margin-bottom: 2px;
}

.form-head span {
  color: var(--green);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 800;
}

.form-head p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.melida-appointment-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 800;
}

.melida-appointment-form input,
.melida-appointment-form select,
.melida-appointment-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(37, 40, 43, .10);
  border-radius: 15px;
  outline: 0;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 7px 18px rgba(37, 40, 43, .035);
  transition:
    border-color .18s ease,
    box-shadow .18s ease,
    background .18s ease;
}

.melida-appointment-form textarea {
  min-height: 100px;
  padding-top: 13px;
  resize: vertical;
}

.melida-appointment-form input::placeholder,
.melida-appointment-form textarea::placeholder {
  color: rgba(37, 40, 43, .42);
}

.melida-appointment-form input:focus,
.melida-appointment-form select:focus,
.melida-appointment-form textarea:focus {
  border-color: rgba(11, 91, 76, .38);
  box-shadow: 0 0 0 4px rgba(11, 91, 76, .09);
  background: #fff;
}

.appointment-submit {
  min-height: 50px;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(11, 91, 76, .16);
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.appointment-submit:hover {
  transform: translateY(-2px);
  background: var(--green-dark);
  box-shadow: 0 22px 40px rgba(11, 91, 76, .20);
}

.form-note {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

@media (max-width: 1120px) {
  .melida-appointment-shell {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .appointment-info {
    border-radius: 28px 28px 62px 28px;
  }

  .appointment-info h2,
  .appointment-info p {
    max-width: 640px;
  }
}

@media (max-width: 760px) {
  .melida-appointment {
    padding: 58px 0;
  }

  .appointment-info {
    padding: 26px 22px;
    border-radius: 24px 24px 52px 24px;
  }

  .appointment-info h2 {
    font-size: 31px;
  }

  .appointment-info p {
    font-size: 15px;
  }

  .appointment-contact-list {
    margin-top: 20px;
  }

  .melida-appointment-form {
    padding: 22px 16px;
    border-radius: 24px;
  }

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

  .melida-appointment-form input,
  .melida-appointment-form select {
    min-height: 48px;
  }

  .melida-appointment-form textarea {
    min-height: 96px;
  }

  .appointment-submit {
    min-height: 50px;
  }
}
/* Footer */

.site-footer {
  padding: 88px 0 24px;
  background: var(--green);
  color: rgba(255,255,255,.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 360px 1fr .7fr 1fr;
  gap: 42px;
}

.footer-logo .brand-text strong {
  color: #fff;
}

.footer-logo .brand-text em {
  color: rgba(255,255,255,.62);
}

.footer-brand p {
  max-width: 360px;
  color: rgba(255,255,255,.78);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-column h3 {
  margin: 0 0 8px;
  color: #fff;
}

.footer-column a,
.footer-column p {
  margin: 0;
  color: rgba(255,255,255,.78);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.14);
  font-size: 13px;
}

/* Mobile Dock */

.mobile-dock {
  display: none;
}

/* Animations */

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity .75s ease,
    transform .75s cubic-bezier(.2,.8,.2,1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-delay="1"] {
  transition-delay: .1s;
}

/* Responsive */

@media (max-width: 1120px) {
  .desktop-nav {
    display: none;
  }

  .header-phone {
    display: none;
  }

  .menu-button {
    display: flex;
  }

  .mobile-menu {
    position: absolute;
    top: 100%;
    left: 14px;
    right: 14px;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: var(--shadow);
  }

  .mobile-menu.is-open {
    display: grid;
    gap: 8px;
  }

  .mobile-menu a,
  .mobile-menu button {
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--cream);
    color: var(--ink);
    font-weight: 800;
    text-align: left;
  }

  .mobile-service-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .mobile-services {
    display: none;
    gap: 8px;
    padding-left: 10px;
  }

  .mobile-services.is-open {
    display: grid;
  }

  .mobile-menu .mobile-menu-cta {
    background: var(--green);
    color: #fff;
  }

  .hero-grid,
  .approach-grid,
  .services-grid,
  .process-inner,
  .team-grid,
  .appointment-grid {
    grid-template-columns: 1fr;
  }

  .services-intro,
  .team-intro {
    position: static;
  }

  .hero-visual {
    min-height: 540px;
  }

  .visual-room {
    left: 70px;
    top: 95px;
    width: 300px;
    height: 205px;
  }

  .founder-photo-one {
    left: 0;
    top: 8px;
    width: 240px;
    height: 315px;
  }

  .founder-photo-two {
    right: 0;
    bottom: 72px;
    width: 250px;
    height: 320px;
  }

  .visual-note {
    left: 92px;
    bottom: 8px;
    width: 300px;
  }

  .service-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(180px, auto);
  }

  .service-tile {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .team-profile,
  .team-profile:nth-child(even) {
    grid-template-columns: 260px 1fr;
  }

  .team-profile:nth-child(even) img {
    order: 0;
  }

  .instagram-feed {
    grid-template-columns: repeat(2, 1fr);
  }

  .instagram-card {
    grid-column: span 1 !important;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-inner {
    height: 72px;
  }

  .brand-icon {
    width: 42px;
    height: 42px;
  }

  .brand-text strong {
    font-size: 25px;
  }

  .hero-section {
    padding: 42px 0 70px;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 35px;
  }

  .hero-visual {
    min-height: 470px;
  }

  .visual-orbit,
  .hero-script,
  .shape-peach,
  .shape-green {
    display: none;
  }

  .visual-room {
    left: 20px;
    top: 110px;
    width: 220px;
    height: 150px;
    border-radius: 24px;
  }

  .founder-photo-one {
    left: 0;
    top: 0;
    width: 210px;
    height: 280px;
    border-radius: 28px 28px 82px 28px;
  }

  .founder-photo-two {
    right: 0;
    bottom: 88px;
    width: 200px;
    height: 255px;
    border-radius: 82px 28px 30px 30px;
  }

  .visual-note {
    left: 20px;
    right: 20px;
    bottom: 0;
    width: auto;
    padding: 18px;
    border-radius: 22px;
  }

  .approach-image {
    min-height: 320px;
  }

  .approach-points,
  .service-mosaic,
  .team-profile,
  .team-profile:nth-child(even),
  .appointment-form,
  .instagram-feed {
    grid-template-columns: 1fr;
  }

  .team-profile img {
    width: 100%;
    height: 370px;
  }

  .team-profile:nth-child(even) img {
    order: 0;
  }

  .footer-grid,
  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    padding-bottom: 78px;
  }

  .mobile-dock {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 90;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    background: rgba(255,248,241,.92);
    backdrop-filter: blur(18px);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }

  .mobile-dock a {
    display: block;
    text-align: center;
    padding: 10px;
    border-radius: 16px;
    background: var(--green);
    color: #fff;
  }

  .mobile-dock a:last-child {
    background: var(--peach);
    color: var(--ink);
  }

  .mobile-dock small {
    display: block;
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
  }

  .mobile-dock strong {
    display: block;
    font-size: 14px;
  }
}
/* ==================================================
   ABOUT PAGE
================================================== */

.about-simple-page {
  padding: 52px 0 84px;
  background:
    radial-gradient(circle at 90% 8%, rgba(254, 182, 169, .15), transparent 24%),
    linear-gradient(180deg, #fff 0%, var(--cream) 100%);
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.page-breadcrumb a {
  color: var(--green);
}

.page-breadcrumb strong {
  color: var(--ink);
}

.about-simple-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 72px;
  align-items: start;
}

.about-simple-content {
  max-width: 820px;
}

.about-simple-content h1 {
  max-width: 780px;
  margin: 12px 0 24px;
  font-size: clamp(38px, 4vw, 64px);
  line-height: 1.02;
}

.about-simple-content p {
  max-width: 760px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.86;
}

.about-contact-card {
  position: sticky;
  top: 112px;
  padding: 28px;
  border-radius: 30px 30px 70px 30px;
  background: var(--green);
  color: #fff;
  box-shadow: 0 24px 60px rgba(37, 40, 43, .13);
}

.about-contact-card > small {
  display: block;
  margin-bottom: 12px;
  color: var(--peach);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 800;
}

.about-contact-card h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 31px;
}

.about-contact-card p {
  margin: 0 0 22px;
  color: rgba(255,255,255,.76);
  font-size: 15px;
  line-height: 1.7;
}

.about-contact-links {
  display: grid;
  gap: 10px;
}

.about-contact-links a,
.about-contact-links div {
  display: grid;
  gap: 3px;
  padding: 13px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}

.about-contact-links span {
  color: var(--peach);
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
  font-weight: 800;
}

.about-contact-links strong {
  color: #fff;
  font-size: 14px;
  line-height: 1.45;
}

.about-whatsapp-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 50px;
  margin-top: 18px;
  border-radius: 999px;
  background: #fff;
  color: var(--green);
  font-weight: 800;
}

.about-experts-section {
  padding: 92px 0;
  background: #fff;
}

.about-section-title {
  max-width: 760px;
  margin-bottom: 42px;
}

.about-section-title h2 {
  margin: 10px 0 14px;
  font-size: clamp(34px, 3.4vw, 54px);
}

.about-section-title p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.expert-bio-card {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 46px;
  align-items: start;
  padding: 34px 0;
  border-top: 1px solid rgba(37, 40, 43, .12);
}

.expert-bio-card:last-child {
  border-bottom: 1px solid rgba(37, 40, 43, .12);
}

.expert-bio-card.reverse {
  grid-template-columns: minmax(0, 1fr) 340px;
}

.expert-bio-card.reverse figure {
  order: 2;
}

.expert-bio-card figure {
  position: sticky;
  top: 112px;
  margin: 0;
  overflow: hidden;
  border-radius: 34px 34px 90px 34px;
  box-shadow: 0 20px 50px rgba(37, 40, 43, .10);
}

.expert-bio-card figure img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.expert-bio-content > span {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 800;
}

.expert-bio-content h3 {
  margin: 0 0 20px;
  font-size: clamp(34px, 3vw, 48px);
}

.expert-bio-content p {
  margin: 0 0 17px;
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.86;
}

.expert-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.expert-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.about-service-links {
  padding: 86px 0 96px;
  background: var(--cream);
}

.about-service-links-head {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  margin-bottom: 28px;
}

.about-service-links-head h2 {
  max-width: 620px;
  margin: 8px 0 0;
  font-size: clamp(32px, 3vw, 48px);
}

.about-service-link-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
}

.about-service-link-grid a {
  display: grid;
  gap: 18px;
  min-height: 150px;
  padding: 18px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(37, 40, 43, .08);
  box-shadow: 0 12px 30px rgba(37, 40, 43, .05);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.about-service-link-grid a:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(37, 40, 43, .09);
  background: #fffaf5;
}

.about-service-link-grid span {
  color: var(--green);
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
  font-weight: 750;
}

.about-service-link-grid strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.08;
}

@media (max-width: 1120px) {
  .about-simple-grid,
  .expert-bio-card,
  .expert-bio-card.reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-contact-card,
  .expert-bio-card figure {
    position: relative;
    top: auto;
  }

  .expert-bio-card.reverse figure {
    order: 0;
  }

  .expert-bio-card figure img {
    height: 460px;
  }

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

@media (max-width: 760px) {
  .about-simple-page {
    padding: 38px 0 68px;
  }

  .page-breadcrumb {
    margin-bottom: 24px;
  }

  .about-simple-content h1 {
    font-size: 36px;
  }

  .about-simple-content p {
    font-size: 15.5px;
    line-height: 1.76;
  }

  .about-contact-card {
    padding: 24px;
    border-radius: 24px 24px 56px 24px;
  }

  .about-contact-card h2 {
    font-size: 28px;
  }

  .about-experts-section {
    padding: 72px 0;
  }

  .about-section-title {
    margin-bottom: 28px;
  }

  .expert-bio-card {
    padding: 28px 0;
  }

  .expert-bio-card figure {
    border-radius: 26px 26px 72px 26px;
  }

  .expert-bio-card figure img {
    height: 360px;
  }

  .expert-bio-content h3 {
    font-size: 34px;
  }

  .expert-bio-content p {
    font-size: 15.5px;
    line-height: 1.76;
  }

  .about-service-links {
    padding: 70px 0 82px;
  }

  .about-service-links-head {
    display: grid;
    gap: 10px;
  }

  .about-service-link-grid {
    grid-template-columns: 1fr;
  }

  .about-service-link-grid a {
    min-height: auto;
    padding: 20px;
    border-radius: 22px;
  }
}
/* ==================================================
   SERVICE STORY DETAIL PAGES
================================================== */

.service-story-page {
  padding: 42px 0 78px;
  background:
    radial-gradient(circle at 88% 8%, rgba(254, 182, 169, .14), transparent 22%),
    linear-gradient(180deg, #fff 0%, var(--cream) 100%);
}

.service-story-breadcrumb {
  margin-bottom: 28px;
}

.service-story-hero {
  display: grid;
  grid-template-columns: minmax(360px, .92fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.service-story-image {
  position: relative;
  min-height: 470px;
}

.service-story-image figure {
  position: absolute;
  left: 0;
  top: 0;
  width: 420px;
  height: 440px;
  margin: 0;
  overflow: hidden;
  border-radius: 38% 62% 36% 64% / 56% 34% 66% 44%;
  box-shadow: var(--shadow);
}

.service-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-image-note {
  position: absolute;
  right: 0;
  bottom: 18px;
  max-width: 300px;
  padding: 22px 24px;
  border-radius: 26px 26px 58px 26px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(37, 40, 43, .08);
  box-shadow: 0 18px 44px rgba(37, 40, 43, .10);
  backdrop-filter: blur(12px);
}

.service-image-note small {
  display: block;
  margin-bottom: 7px;
  color: var(--green);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 800;
}

.service-image-note strong {
  display: block;
  color: var(--ink);
  font-size: 15.5px;
  line-height: 1.55;
}

.service-story-intro {
  max-width: 680px;
}

.service-story-intro h1 {
  max-width: 640px;
  margin: 10px 0 18px;
  font-size: clamp(34px, 3.1vw, 48px);
  line-height: 1.04;
}

.service-story-intro p {
  max-width: 620px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.78;
}

.service-meta-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0;
}

.service-meta-list div {
  min-height: 92px;
  padding: 15px;
  border-radius: 20px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(37, 40, 43, .08);
  box-shadow: 0 10px 26px rgba(37, 40, 43, .045);
}

.service-meta-list span {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 800;
}

.service-meta-list strong {
  display: block;
  color: var(--ink);
  font-size: 14.5px;
  line-height: 1.38;
}

.service-story-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.service-article-section {
  padding: 88px 0;
  background: #fff;
}

.service-article-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 74px;
  align-items: start;
}

.service-article-nav {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 24px;
  background: var(--cream);
  border: 1px solid rgba(37, 40, 43, .08);
}

.service-article-nav span {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 800;
}

.service-article-nav a {
  padding: 11px 12px;
  border-radius: 14px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  transition: background .18s ease, color .18s ease;
}

.service-article-nav a:hover {
  background: #fff;
  color: var(--green);
}

.service-article-content {
  display: grid;
  gap: 74px;
  min-width: 0;
}

.service-text-block,
.service-split-block,
.service-topic-story,
.service-flow-section,
.service-faq-section {
  scroll-margin-top: 120px;
}

.service-text-block {
  max-width: 850px;
}

.service-text-block h2,
.service-split-block h2,
.service-section-head h2 {
  margin: 10px 0 22px;
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1.06;
}

.service-text-block p,
.service-split-block p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.88;
}

.service-split-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 42px;
  align-items: start;
}

.service-soft-card {
  position: sticky;
  top: 112px;
  padding: 26px;
  border-radius: 28px 28px 66px 28px;
  background: var(--green);
  color: #fff;
  box-shadow: 0 22px 50px rgba(37, 40, 43, .12);
}

.service-soft-card small {
  display: block;
  margin-bottom: 12px;
  color: var(--peach);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 800;
}

.service-soft-card strong {
  display: block;
  color: #fff;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.22;
}

.service-topic-story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-topic-story-grid article {
  padding: 24px;
  border-radius: 28px;
  background: var(--cream);
  border: 1px solid rgba(37, 40, 43, .08);
  box-shadow: 0 12px 30px rgba(37, 40, 43, .045);
}

.service-topic-story-grid span {
  display: block;
  margin-bottom: 24px;
  color: var(--green);
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
  font-weight: 750;
}

.service-topic-story-grid h3 {
  margin: 0 0 10px;
  font-size: 27px;
}

.service-topic-story-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.72;
}

.service-flow-list {
  display: grid;
  border-top: 1px solid rgba(37, 40, 43, .12);
}

.service-flow-list article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(37, 40, 43, .12);
}

.service-flow-list span {
  color: var(--green);
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1;
  font-weight: 750;
}

.service-flow-list h3 {
  margin: 0 0 8px;
  font-size: 27px;
}

.service-flow-list p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.service-faq-list {
  display: grid;
  gap: 10px;
}

.service-faq-list details {
  border-radius: 22px;
  background: var(--cream);
  border: 1px solid rgba(37, 40, 43, .08);
  overflow: hidden;
}

.service-faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 800;
  list-style: none;
}

.service-faq-list summary::-webkit-details-marker {
  display: none;
}

.service-faq-list summary::after {
  content: "+";
  float: right;
  color: var(--green);
  font-weight: 800;
}

.service-faq-list details[open] summary::after {
  content: "–";
}

.service-faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.72;
}

.service-related-section {
  padding: 84px 0;
  background: var(--cream);
}

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

.service-related-grid a {
  display: grid;
  gap: 8px;
  min-height: 160px;
  padding: 22px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(37, 40, 43, .08);
  box-shadow: 0 12px 30px rgba(37, 40, 43, .05);
  transition: transform .18s ease, box-shadow .18s ease;
}

.service-related-grid a:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(37, 40, 43, .09);
}

.service-related-grid span {
  color: var(--green);
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1;
  font-weight: 750;
}

.service-related-grid strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.08;
}

.service-related-grid small {
  color: var(--muted);
  font-size: 14px;
}

.service-compact-cta {
  padding: 76px 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(254, 182, 169, .16), transparent 24%),
    linear-gradient(135deg, var(--green) 0%, #0d6b59 100%);
}

.service-compact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
  color: #fff;
}

.service-compact-inner h2 {
  max-width: 680px;
  margin: 10px 0 12px;
  color: #fff;
  font-size: clamp(31px, 3vw, 46px);
}

.service-compact-inner p {
  max-width: 640px;
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 16.5px;
  line-height: 1.72;
}

.service-compact-actions {
  display: grid;
  gap: 12px;
  justify-items: end;
}

.service-compact-actions .text-button {
  color: #fff;
}

@media (max-width: 1120px) {
  .service-story-hero,
  .service-article-layout,
  .service-split-block,
  .service-compact-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .service-story-image {
    max-width: 620px;
    min-height: 450px;
  }

  .service-article-nav,
  .service-soft-card {
    position: relative;
    top: auto;
  }

  .service-article-nav {
    display: flex;
    flex-wrap: wrap;
  }

  .service-article-nav span {
    width: 100%;
  }

  .service-compact-actions {
    justify-items: start;
  }
}

@media (max-width: 760px) {
  .service-story-page {
    padding: 34px 0 62px;
  }

  .service-story-hero {
    gap: 26px;
  }

  .service-story-image {
    min-height: 360px;
  }

  .service-story-image figure {
    width: 285px;
    height: 310px;
  }

  .service-image-note {
    right: 0;
    bottom: 0;
    max-width: 245px;
    padding: 18px;
    border-radius: 22px 22px 50px 22px;
  }

  .service-story-intro h1 {
    font-size: 32px;
  }

  .service-story-intro p {
    font-size: 15.5px;
    line-height: 1.72;
  }

  .service-meta-list {
    grid-template-columns: 1fr;
  }

  .service-meta-list div {
    min-height: auto;
  }

  .service-article-section,
  .service-related-section {
    padding: 68px 0;
  }

  .service-article-content {
    gap: 58px;
  }

  .service-text-block h2,
  .service-split-block h2,
  .service-section-head h2 {
    font-size: 32px;
  }

  .service-text-block p,
  .service-split-block p {
    font-size: 15.5px;
    line-height: 1.76;
  }

  .service-topic-story-grid,
  .service-related-grid {
    grid-template-columns: 1fr;
  }

  .service-flow-list article {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
  }

  .service-flow-list h3 {
    font-size: 24px;
  }

  .service-compact-cta {
    padding: 66px 0 78px;
  }

  .service-compact-inner h2 {
    font-size: 31px;
  }
}
/* ==================================================
   TEST CATALOG PAGE
================================================== */

.test-catalog-page {
  padding: 42px 0 92px;
  background:
    radial-gradient(circle at 90% 8%, rgba(254, 182, 169, .14), transparent 22%),
    linear-gradient(180deg, #fff 0%, var(--cream) 100%);
}

.test-catalog-breadcrumb {
  margin-bottom: 26px;
}

.test-catalog-head {
  max-width: 840px;
  margin-bottom: 22px;
}

.test-catalog-head h1 {
  margin: 10px 0 16px;
  font-size: clamp(34px, 3.4vw, 54px);
  line-height: 1.04;
}

.test-catalog-head p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.82;
}

.test-catalog-note {
  max-width: 840px;
  margin: 0 0 34px;
  padding: 18px 20px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(37, 40, 43, .08);
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.72;
  box-shadow: 0 12px 30px rgba(37, 40, 43, .05);
}

.test-catalog-note strong {
  color: var(--green);
}

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

.test-catalog-card {
  min-height: 245px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(37, 40, 43, .08);
  box-shadow: 0 14px 34px rgba(37, 40, 43, .055);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.test-catalog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(11, 91, 76, .18);
  box-shadow: 0 22px 48px rgba(37, 40, 43, .10);
}

.test-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 30px;
}

.test-card-top span {
  color: var(--green);
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1;
  font-weight: 750;
}

.test-card-top small {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 11px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.test-catalog-card h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 27px;
  line-height: 1.08;
}

.test-catalog-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.test-catalog-info {
  padding: 84px 0;
  background: #fff;
}

.test-catalog-info-grid {
  display: grid;
  grid-template-columns: 390px minmax(0, 1fr);
  gap: 70px;
  align-items: start;
}

.test-catalog-info h2 {
  margin: 10px 0 0;
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1.06;
}

.test-info-text p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

.test-info-text p:last-child {
  margin-bottom: 0;
}

.test-catalog-cta {
  padding: 76px 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(254, 182, 169, .16), transparent 24%),
    linear-gradient(135deg, var(--green) 0%, #0d6b59 100%);
}

.test-catalog-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
  color: #fff;
}

.test-catalog-cta-inner h2 {
  max-width: 680px;
  margin: 10px 0 12px;
  color: #fff;
  font-size: clamp(31px, 3vw, 46px);
}

.test-catalog-cta-inner p {
  max-width: 640px;
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 16.5px;
  line-height: 1.72;
}

.test-catalog-actions {
  display: grid;
  gap: 12px;
  justify-items: end;
}

.test-catalog-actions .text-button {
  color: #fff;
}

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

  .test-catalog-info-grid,
  .test-catalog-cta-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .test-catalog-actions {
    justify-items: start;
  }
}

@media (max-width: 760px) {
  .test-catalog-page {
    padding: 34px 0 68px;
  }

  .test-catalog-head h1 {
    font-size: 34px;
  }

  .test-catalog-head p {
    font-size: 15.5px;
    line-height: 1.74;
  }

  .test-catalog-grid {
    grid-template-columns: 1fr;
  }

  .test-catalog-card {
    min-height: auto;
    padding: 22px;
    border-radius: 24px;
  }

  .test-card-top {
    margin-bottom: 22px;
  }

  .test-catalog-info {
    padding: 68px 0;
  }

  .test-catalog-cta {
    padding: 66px 0 78px;
  }

  .test-catalog-cta-inner h2 {
    font-size: 31px;
  }
}
/* ==================================================
   BLOG ARCHIVE WITH IMAGES
================================================== */

.blog-archive-page {
  padding: 42px 0 96px;
  background:
    radial-gradient(circle at 88% 8%, rgba(254, 182, 169, .14), transparent 22%),
    linear-gradient(180deg, #fff 0%, var(--cream) 100%);
}

.blog-archive-breadcrumb {
  margin-bottom: 26px;
}

.blog-archive-head {
  max-width: 860px;
  margin-bottom: 38px;
}

.blog-archive-head h1 {
  margin: 10px 0 18px;
  font-size: clamp(36px, 3.7vw, 60px);
  line-height: 1.03;
}

.blog-archive-head p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.blog-archive-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 34px;
  align-items: start;
}

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

.blog-post-card a {
  display: block;
  height: 100%;
  overflow: hidden;
  border-radius: 30px;
  background: #fff;
  border: 1px solid rgba(37, 40, 43, .08);
  box-shadow: 0 16px 38px rgba(37, 40, 43, .06);
  transition: transform .22s ease, box-shadow .22s ease;
}

.blog-post-card a:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 56px rgba(37, 40, 43, .12);
}

.blog-post-card figure {
  margin: 0;
  height: 245px;
  overflow: hidden;
  background: var(--cream);
}

.blog-post-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.blog-post-card a:hover img {
  transform: scale(1.045);
}

.blog-post-content {
  padding: 24px;
}

.blog-post-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.blog-post-meta span {
  display: inline-flex;
  min-height: 31px;
  align-items: center;
  padding: 0 11px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
}

.blog-post-meta small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.blog-post-content h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.08;
}

.blog-post-content p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.blog-post-content strong {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.blog-sidebar {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 16px;
}

.blog-sidebar-box,
.blog-sidebar-cta {
  padding: 24px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(37, 40, 43, .08);
  box-shadow: 0 16px 38px rgba(37, 40, 43, .06);
}

.sidebar-label,
.blog-sidebar-cta small {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 800;
}

.blog-sidebar-box h2 {
  margin: 0 0 18px;
  font-size: 34px;
}

.blog-category-list {
  display: grid;
  gap: 8px;
}

.blog-category-list a {
  display: grid;
  gap: 4px;
  padding: 14px;
  border-radius: 18px;
  background: var(--cream);
  transition: background .18s ease, transform .18s ease;
}

.blog-category-list a:hover {
  transform: translateX(4px);
  background: #fff6ef;
}

.blog-category-list strong {
  color: var(--ink);
  font-size: 14px;
}

.blog-category-list small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.blog-sidebar-cta {
  background: var(--green);
  color: #fff;
}

.blog-sidebar-cta small {
  color: var(--peach);
}

.blog-sidebar-cta h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 29px;
}

.blog-sidebar-cta p {
  margin: 0 0 18px;
  color: rgba(255,255,255,.78);
  font-size: 15px;
  line-height: 1.7;
}

.blog-sidebar-cta a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
  background: #fff;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

@media (max-width: 1120px) {
  .blog-archive-layout {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: relative;
    top: auto;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .blog-archive-page {
    padding: 34px 0 78px;
  }

  .blog-archive-head h1 {
    font-size: 35px;
  }

  .blog-archive-head p {
    font-size: 15.5px;
    line-height: 1.74;
  }

  .blog-post-grid,
  .blog-sidebar {
    grid-template-columns: 1fr;
  }

  .blog-post-card figure {
    height: 215px;
  }

  .blog-post-content h2 {
    font-size: 25px;
  }
}
/* ==================================================
   BLOG DETAIL PAGES
================================================== */

.blog-detail-page{background:#fff}
.blog-detail-hero{padding:42px 0 76px;background:radial-gradient(circle at 88% 8%,rgba(254,182,169,.14),transparent 22%),linear-gradient(180deg,#fff 0%,var(--cream) 100%)}
.blog-detail-breadcrumb{margin-bottom:28px}
.blog-detail-head{max-width:900px;margin-bottom:34px}
.blog-detail-category{display:inline-flex;min-height:34px;align-items:center;padding:0 13px;border-radius:999px;background:#fff;color:var(--green);font-size:11px;letter-spacing:.05em;text-transform:uppercase;font-weight:900;box-shadow:0 10px 24px rgba(37,40,43,.045)}
.blog-detail-head h1{max-width:900px;margin:18px 0 18px;font-size:clamp(38px,4vw,66px);line-height:1.02}
.blog-detail-meta{display:flex;flex-wrap:wrap;gap:10px}
.blog-detail-meta span{display:inline-flex;min-height:36px;align-items:center;padding:0 13px;border-radius:999px;background:rgba(11,91,76,.08);color:var(--green);font-size:12px;font-weight:800}
.blog-detail-image{margin:0;height:min(560px,54vw);min-height:330px;overflow:hidden;border-radius:38px 38px 110px 38px;box-shadow:0 26px 70px rgba(37,40,43,.12);background:#fff}
.blog-detail-image img{width:100%;height:100%;object-fit:cover}
.blog-detail-content-section{padding:88px 0 96px;background:#fff}
.blog-detail-layout{display:grid;grid-template-columns:minmax(0,780px) 330px;gap:76px;align-items:start}
.blog-detail-content{min-width:0}
.blog-detail-content>p:first-child{color:var(--ink);font-family:var(--serif);font-size:clamp(26px,2.5vw,38px);line-height:1.22}
.blog-detail-content h2{margin:46px 0 16px;color:var(--ink);font-size:clamp(30px,3vw,46px);line-height:1.08}
.blog-detail-content p{margin:0 0 18px;color:var(--muted);font-size:17px;line-height:1.9}
.blog-detail-quote{margin:42px 0;padding:28px;border-radius:28px 28px 70px 28px;background:var(--cream);border:1px solid rgba(37,40,43,.08);color:var(--green);font-family:var(--serif);font-size:30px;line-height:1.22}
.blog-detail-sidebar{position:sticky;top:112px;display:grid;gap:16px}
.blog-detail-side-card,.blog-detail-related{padding:24px;border-radius:28px;background:var(--cream);border:1px solid rgba(37,40,43,.08);box-shadow:0 16px 38px rgba(37,40,43,.055)}
.blog-detail-side-card{background:var(--green);color:#fff}
.blog-detail-side-card span,.blog-detail-related span{display:block;margin-bottom:10px;color:var(--peach);font-size:11px;letter-spacing:.14em;text-transform:uppercase;font-weight:900}
.blog-detail-related span{color:var(--green)}
.blog-detail-side-card h3,.blog-detail-related h3{margin:0 0 12px;color:inherit;font-size:29px;line-height:1.1}
.blog-detail-side-card p{margin:0 0 18px;color:rgba(255,255,255,.78);font-size:15px;line-height:1.72}
.blog-detail-side-card a{display:inline-flex;min-height:42px;align-items:center;padding:0 16px;border-radius:999px;background:#fff;color:var(--green);font-size:13px;font-weight:900}
.blog-detail-related-list{display:grid;gap:8px}
.blog-detail-related-list a{display:grid;gap:4px;padding:13px;border-radius:16px;background:#fff;color:var(--ink);font-size:14px;font-weight:800;transition:transform .18s ease,background .18s ease}
.blog-detail-related-list a:hover{transform:translateX(4px);background:#fff8f1}
.blog-detail-bottom-cta{padding:76px 0;background:radial-gradient(circle at 18% 18%,rgba(254,182,169,.16),transparent 24%),linear-gradient(135deg,var(--green) 0%,#0d6b59 100%)}
.blog-detail-bottom-inner{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:40px;align-items:center;color:#fff}
.blog-detail-bottom-inner h2{max-width:760px;margin:10px 0 12px;color:#fff;font-size:clamp(31px,3vw,46px)}
.blog-detail-bottom-inner p{max-width:640px;margin:0;color:rgba(255,255,255,.78);font-size:16.5px;line-height:1.72}
.blog-detail-actions{display:grid;gap:12px;justify-items:end}
.blog-detail-actions .text-button{color:#fff}
@media(max-width:1120px){.blog-detail-layout,.blog-detail-bottom-inner{grid-template-columns:1fr;gap:34px}.blog-detail-sidebar{position:relative;top:auto;grid-template-columns:1fr 1fr}.blog-detail-actions{justify-items:start}}
@media(max-width:760px){.blog-detail-hero{padding:34px 0 62px}.blog-detail-head h1{font-size:36px}.blog-detail-image{height:310px;min-height:310px;border-radius:28px 28px 76px 28px}.blog-detail-content-section{padding:68px 0 76px}.blog-detail-content>p:first-child{font-size:25px}.blog-detail-content p{font-size:15.5px;line-height:1.78}.blog-detail-content h2{margin-top:36px;font-size:31px}.blog-detail-quote{padding:23px;font-size:25px;border-radius:24px 24px 60px 24px}.blog-detail-sidebar{grid-template-columns:1fr}.blog-detail-bottom-cta{padding:66px 0 78px}.blog-detail-bottom-inner h2{font-size:31px}}

/* ==================================================
   CONTACT PAGE
================================================== */

.contact-page {
  padding: 42px 0 92px;
  background:
    radial-gradient(circle at 88% 8%, rgba(254, 182, 169, .14), transparent 22%),
    linear-gradient(180deg, #fff 0%, var(--cream) 100%);
}

.contact-breadcrumb {
  margin-bottom: 26px;
}

.contact-hero {
  max-width: 850px;
  margin-bottom: 38px;
}

.contact-hero h1 {
  margin: 10px 0 18px;
  font-size: clamp(36px, 3.8vw, 62px);
  line-height: 1.03;
}

.contact-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.82;
}

.contact-layout {
  display: grid;
  grid-template-columns: 390px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.contact-left {
  display: grid;
  gap: 16px;
}

.contact-info-card,
.contact-note-card,
.contact-form-card {
  border-radius: 30px;
  border: 1px solid rgba(37, 40, 43, .08);
  box-shadow: 0 18px 46px rgba(37, 40, 43, .07);
}

.contact-info-card {
  padding: 24px;
  background: #fff;
}

.contact-card-label {
  display: block;
  margin-bottom: 16px;
  color: var(--green);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 900;
}

.contact-info-list {
  display: grid;
  gap: 10px;
}

.contact-info-list a,
.contact-info-list div {
  display: grid;
  gap: 4px;
  padding: 15px;
  border-radius: 18px;
  background: var(--cream);
  transition: transform .18s ease, background .18s ease;
}

.contact-info-list a:hover {
  transform: translateX(4px);
  background: #fff6ef;
}

.contact-info-list small {
  color: var(--green);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 900;
}

.contact-info-list strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.45;
}

.contact-note-card {
  padding: 26px;
  background: var(--green);
  color: #fff;
  border-radius: 30px 30px 76px 30px;
}

.contact-note-card small {
  display: block;
  margin-bottom: 10px;
  color: var(--peach);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 900;
}

.contact-note-card h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 31px;
  line-height: 1.1;
}

.contact-note-card p {
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 15px;
  line-height: 1.72;
}

.contact-form-card {
  padding: 30px;
  background: #fff;
}

.contact-form-card h2 {
  max-width: 620px;
  margin: 0 0 24px;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.08;
}

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

.form-row {
  display: grid;
  gap: 8px;
}

.form-row:nth-child(5) {
  grid-column: 1 / -1;
}

.form-row label {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(37, 40, 43, .12);
  background: var(--cream);
  color: var(--ink);
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.form-row textarea {
  min-height: 132px;
  padding-top: 15px;
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  background: #fff;
  border-color: rgba(11, 91, 76, .34);
  box-shadow: 0 0 0 4px rgba(11, 91, 76, .08);
}

.contact-submit {
  grid-column: 1 / -1;
  width: max-content;
  border: 0;
  cursor: pointer;
}

.contact-form-note {
  grid-column: 1 / -1;
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.contact-map-section {
  padding: 88px 0;
  background: #fff;
}

.contact-map-grid {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.contact-map-content h2 {
  margin: 10px 0 14px;
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1.08;
}

.contact-map-content p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.76;
}

.contact-map-frame {
  height: 430px;
  overflow: hidden;
  border-radius: 34px 34px 96px 34px;
  box-shadow: 0 24px 64px rgba(37, 40, 43, .10);
  background: var(--cream);
}

.contact-map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-service-section {
  padding: 84px 0 96px;
  background: var(--cream);
}

.contact-service-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.contact-service-head h2 {
  margin: 10px 0 0;
  font-size: clamp(32px, 3vw, 48px);
}

.contact-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.contact-service-grid a {
  display: grid;
  gap: 24px;
  min-height: 155px;
  padding: 22px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(37, 40, 43, .08);
  box-shadow: 0 14px 34px rgba(37, 40, 43, .055);
  transition: transform .18s ease, box-shadow .18s ease;
}

.contact-service-grid a:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(37, 40, 43, .10);
}

.contact-service-grid span {
  color: var(--green);
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1;
  font-weight: 750;
}

.contact-service-grid strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.08;
}

@media (max-width: 1120px) {
  .contact-layout,
  .contact-map-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 760px) {
  .contact-page {
    padding: 34px 0 72px;
  }

  .contact-hero h1 {
    font-size: 35px;
  }

  .contact-hero p {
    font-size: 15.5px;
    line-height: 1.74;
  }

  .contact-left,
  .contact-form,
  .contact-service-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 24px;
    border-radius: 26px;
  }

  .contact-form-card h2 {
    font-size: 30px;
  }

  .contact-submit {
    width: 100%;
    justify-content: center;
  }

  .contact-map-section {
    padding: 68px 0;
  }

  .contact-map-frame {
    height: 330px;
    border-radius: 28px 28px 76px 28px;
  }

  .contact-service-section {
    padding: 68px 0 82px;
  }

  .contact-service-grid a {
    min-height: auto;
  }
}