:root {
  --sand: #3a3028;
  --sand-deep: #2c241e;
  --sage: #8fa07a;
  --sage-mid: #6f8160;
  --sage-deep: #4e5c44;
  --ink: #f2e6d6;
  --ink-deep: #241c17;
  --ink-soft: rgba(242, 230, 214, 0.7);
  /* Accents: A1E1BC / DDF4C9 / FDFBD7 */
  --accent: #a1e1bc;
  --accent-soft: #ddf4c9;
  --accent-cream: #fdfbd7;
  --paper: #322922;
  --white: #f7efe4;
  --line: rgba(242, 230, 214, 0.12);
  --glow: rgba(161, 225, 188, 0.2);
  --shadow: rgba(12, 9, 7, 0.45);

  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Onest", "Segoe UI", sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.75rem;
  --space-lg: 3.25rem;
  --space-xl: 5.5rem;
  --space-2xl: 7.5rem;

  --radius: 14px;
  --radius-sm: 10px;
  --header-h: 4.5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --max: 1100px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--ink);
  background: #322922;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

.page-ambient {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 70% at 50% 35%, rgba(58, 48, 40, 0.9), transparent 72%),
    radial-gradient(ellipse 100% 80% at 50% 100%, rgba(36, 28, 23, 0.55), transparent 70%),
    #322922;
}

.page-ambient__bloom {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  will-change: transform;
  animation: ambient-drift 22s ease-in-out infinite;
}

.page-ambient__bloom--a {
  width: min(72vw, 680px);
  height: min(72vw, 680px);
  top: -12%;
  left: -8%;
  background: radial-gradient(circle, rgba(161, 225, 188, 0.26) 0%, rgba(161, 225, 188, 0.07) 42%, transparent 70%);
}

.page-ambient__bloom--b {
  width: min(64vw, 560px);
  height: min(64vw, 560px);
  top: 28%;
  right: -14%;
  background: radial-gradient(circle, rgba(221, 244, 201, 0.2) 0%, rgba(221, 244, 201, 0.05) 45%, transparent 72%);
  animation-delay: -8s;
  animation-duration: 26s;
}

.page-ambient__bloom--c {
  width: min(80vw, 720px);
  height: min(80vw, 720px);
  bottom: -22%;
  left: 18%;
  background: radial-gradient(circle, rgba(253, 251, 215, 0.12) 0%, rgba(42, 34, 28, 0.2) 48%, transparent 74%);
  animation-delay: -14s;
  animation-duration: 30s;
}

.page-grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  opacity: 0.03;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

main,
.footer {
  position: relative;
  z-index: 1;
}

.cursor-glow {
  pointer-events: none;
  position: fixed;
  z-index: 150;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(161, 225, 188, 0.12), transparent 70%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  mix-blend-mode: screen;
}

body.has-pointer .cursor-glow.is-active {
  opacity: 0.7;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

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

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.015em;
}

h2 {
  font-size: clamp(1.9rem, 3.8vw, 2.75rem);
  margin-bottom: var(--space-md);
}

h3 {
  font-size: 1.3rem;
  margin-bottom: var(--space-xs);
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.eyebrow {
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: none;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.lead {
  max-width: 36rem;
  color: var(--ink-soft);
  margin-bottom: var(--space-md);
  font-size: 1.05rem;
  line-height: 1.7;
}

.section {
  padding: var(--space-2xl) 0;
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 5.5rem;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(50, 41, 34, 0.55), transparent);
  opacity: 0.55;
}

.about {
  margin-top: -3.5rem;
  padding-top: calc(var(--space-2xl) + 2rem);
  z-index: 1;
}

.about::before {
  display: none;
}

.topics::before,
.services::before,
.contacts::before {
  background: linear-gradient(
    180deg,
    rgba(36, 28, 23, 0.35) 0%,
    transparent 100%
  );
  opacity: 0.8;
  height: 4.5rem;
}

.section__intro {
  max-width: 42rem;
  margin-bottom: var(--space-lg);
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  padding: 0.95rem 1.55rem;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
  overflow: hidden;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s var(--ease);
}

.btn--primary {
  background: var(--accent);
  color: var(--ink-deep);
  box-shadow: 0 8px 22px rgba(161, 225, 188, 0.16);
}

.btn--primary::before {
  display: none;
}

.btn--primary:hover {
  background: var(--accent-soft);
  box-shadow: 0 10px 26px rgba(161, 225, 188, 0.22);
  transform: translateY(-1px);
}

.btn--primary:active {
  transform: translateY(0);
}

.magnetic {
  display: inline-flex;
}

.magnetic__inner {
  display: inline-block;
  transition: transform 0.35s var(--ease-out);
  will-change: transform;
}

/* Header */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: var(--header-h);
  padding: 0.75rem clamp(1rem, 3vw, 1.75rem);
  transform: translateY(0);
  transition:
    background-color 0.4s var(--ease),
    backdrop-filter 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    transform 0.45s var(--ease);
}

.header.is-scrolled {
  background: rgba(42, 34, 28, 0.86);
  backdrop-filter: blur(16px) saturate(1.05);
  box-shadow: 0 1px 0 var(--line);
}

.header.is-hidden {
  transform: translateY(-110%);
}

.header__brand {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.header__nav {
  display: none;
  gap: 1.65rem;
  margin-left: auto;
}

.header__nav a {
  position: relative;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.header__nav a span {
  display: inline-block;
  transition: transform 0.35s var(--ease), color 0.25s ease;
}

.header__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.header__nav a:hover span {
  color: var(--ink);
  transform: translateY(-1px);
}

.header__nav a:hover::after {
  transform: scaleX(1);
}

.header__cta {
  display: none;
  padding: 0.65rem 1.1rem;
  background: var(--accent);
  color: var(--ink-deep);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.header__cta:hover {
  background: var(--accent-soft);
}

.header__menu {
  margin-left: auto;
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  gap: 6px;
}

.header__menu span {
  display: block;
  width: 1.35rem;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s ease;
}

.header.is-open .header__menu span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.header.is-open .header__menu span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2rem 1.5rem;
  background: rgba(42, 34, 28, 0.97);
  backdrop-filter: blur(18px);
  animation: menu-in 0.45s var(--ease);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a:not(.btn) {
  font-family: var(--font-body);
  font-size: clamp(1.45rem, 6vw, 1.9rem);
  font-weight: 600;
  opacity: 0;
  transform: translateY(16px);
  animation: rise 0.55s var(--ease) forwards;
}

.mobile-nav a:nth-child(1) { animation-delay: 0.05s; }
.mobile-nav a:nth-child(2) { animation-delay: 0.1s; }
.mobile-nav a:nth-child(3) { animation-delay: 0.15s; }
.mobile-nav a:nth-child(4) { animation-delay: 0.2s; }
.mobile-nav a:nth-child(5) { animation-delay: 0.28s; }

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: min(42vh, 320px);
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(50, 41, 34, 0) 0%,
    rgba(50, 41, 34, 0.25) 28%,
    rgba(50, 41, 34, 0.7) 62%,
    #322922 100%
  );
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 45%, #000 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 45%, #000 100%);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.16);
  transform-origin: center 40%;
  will-change: transform;
  animation: hero-zoom 2.8s var(--ease-out) forwards;
  filter: saturate(0.88) sepia(0.18) brightness(0.82) contrast(1.05);
  -webkit-mask-image: linear-gradient(to bottom, #000 58%, rgba(0, 0, 0, 0.55) 82%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 58%, rgba(0, 0, 0, 0.55) 82%, transparent 100%);
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(28, 21, 16, 0.35) 0%, rgba(28, 21, 16, 0.12) 42%, rgba(28, 21, 16, 0.55) 78%, #322922 100%),
    linear-gradient(105deg, rgba(58, 42, 30, 0.35), transparent 60%);
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.45;
  animation: float 10s ease-in-out infinite;
}

.hero__orb--one {
  width: min(42vw, 380px);
  height: min(42vw, 380px);
  left: -6%;
  bottom: 8%;
  background: rgba(161, 225, 188, 0.3);
}

.hero__orb--two {
  width: min(34vw, 300px);
  height: min(34vw, 300px);
  right: 4%;
  top: 18%;
  background: rgba(221, 244, 201, 0.22);
  animation-delay: -4s;
}

.hero__content {
  position: relative;
  z-index: 3;
  width: min(100% - 2.5rem, 36rem);
  margin-right: auto;
  margin-left: max(1.25rem, calc((100% - var(--max)) / 2));
  padding: calc(var(--header-h) + 4rem) 0 7rem;
  text-shadow: 0 2px 24px rgba(20, 15, 12, 0.35);
}

.hero__role {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero__role::before {
  content: "";
  width: 1.5rem;
  height: 1px;
  background: var(--accent);
  opacity: 0.8;
}

.hero__name {
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  font-weight: 500;
  margin-bottom: 1.1rem;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.hero__tagline {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  max-width: 28rem;
  color: rgba(250, 246, 240, 0.88);
  margin-bottom: 2.1rem;
  font-style: normal;
  font-weight: 400;
  font-family: var(--font-body);
  letter-spacing: 0;
  line-height: 1.6;
  text-shadow: none;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem 1.35rem;
}

.hero .btn--primary {
  background: var(--accent);
  color: var(--ink-deep);
  box-shadow: 0 10px 28px rgba(12, 9, 7, 0.28);
  text-shadow: none;
  min-width: 10.5rem;
}

.hero .btn--primary:hover {
  background: var(--accent-soft);
}

.hero__link {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(250, 246, 240, 0.88);
  border-bottom: 1px solid rgba(161, 225, 188, 0.45);
  padding-bottom: 0.15rem;
  transition: color 0.25s ease, border-color 0.25s ease;
  text-shadow: none;
}

.hero__link:hover {
  color: var(--accent-cream);
  border-color: var(--accent);
}

.hero-anim {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.85s var(--ease-out),
    transform 0.85s var(--ease-out);
  transition-delay: calc(var(--d, 0) * 0.1s + 0.12s);
}

.hero.is-ready .hero-anim {
  opacity: 1;
  transform: translateY(0);
}

.hero-anim[data-delay="0"] { --d: 0; }
.hero-anim[data-delay="1"] { --d: 1; }
.hero-anim[data-delay="2"] { --d: 2; }
.hero-anim[data-delay="3"] { --d: 3; }

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.6rem;
  z-index: 3;
  width: 1.7rem;
  height: 2.5rem;
  border: 1px solid rgba(250, 246, 240, 0.35);
  border-radius: 999px;
  transform: translateX(-50%);
  display: grid;
  place-items: start center;
  padding-top: 0.45rem;
}

.hero__scroll-dot {
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background: var(--accent);
  animation: scroll-dot 1.8s var(--ease) infinite;
}

/* About */
.about__grid {
  display: grid;
  gap: var(--space-lg);
  align-items: center;
}

.about__visual {
  position: relative;
  padding: 1.5rem 1.25rem 1.75rem;
  will-change: transform;
  transform-origin: center center;
}

.about__visual.is-visible {
  animation: about-float 11s ease-in-out 0.85s infinite;
}

.about__visual::after {
  content: "";
  position: absolute;
  inset: 1.35rem 1.1rem 1.55rem;
  z-index: 3;
  pointer-events: none;
  border-radius: calc(var(--radius) + 8px);
  box-shadow:
    0 0 18px 10px #322922,
    0 0 36px 18px rgba(50, 41, 34, 0.85),
    inset 0 0 22px 8px rgba(50, 41, 34, 0.55);
}

.about__glow {
  position: absolute;
  inset: 8% 0 0;
  z-index: 0;
  border-radius: 42%;
  background:
    radial-gradient(ellipse 65% 60% at 48% 42%, rgba(161, 225, 188, 0.32), transparent 65%),
    radial-gradient(ellipse 75% 70% at 55% 65%, rgba(221, 244, 201, 0.16), transparent 70%),
    radial-gradient(ellipse 90% 85% at 50% 50%, rgba(20, 15, 12, 0.65), transparent 72%);
  filter: blur(34px);
  transform: scale(1.08);
  opacity: 0;
  transition: opacity 1.1s var(--ease-out);
}

.about__frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: calc(var(--radius) + 6px);
  isolation: isolate;
  box-shadow:
    0 2px 8px rgba(12, 9, 7, 0.2),
    0 16px 36px rgba(12, 9, 7, 0.28),
    0 36px 72px rgba(12, 9, 7, 0.34),
    0 0 60px rgba(161, 225, 188, 0.08);
}

.about__frame::before {
  content: "";
  position: absolute;
  inset: -10px;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(180deg, #322922 0%, transparent 30%, transparent 62%, #322922 100%),
    linear-gradient(90deg, #322922 0%, transparent 28%, transparent 72%, #322922 100%);
  opacity: 0.92;
  filter: blur(16px);
}

.about__frame::after {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: 2;
  pointer-events: none;
  border-radius: inherit;
  background:
    radial-gradient(ellipse 94% 90% at 55% 38%, transparent 54%, rgba(50, 41, 34, 0.48) 100%);
  box-shadow:
    inset 0 0 52px 20px rgba(50, 41, 34, 0.48),
    inset 0 -40px 60px rgba(50, 41, 34, 0.4);
  filter: blur(4px);
}

.about__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 58% 18%;
  filter: saturate(0.92) brightness(0.9) contrast(1.04);
  transform: scale(1.04);
  transition: transform 1.2s var(--ease-out), filter 0.8s ease;
}

.reveal.is-visible .about__photo {
  transform: scale(1);
}

.reveal.is-visible .about__glow {
  opacity: 1;
  animation: about-glow 9s ease-in-out infinite;
}

.about__meta {
  display: grid;
  gap: var(--space-md);
  margin: var(--space-md) 0 var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid var(--line);
}

.about__meta p {
  color: var(--ink-soft);
}

.text-reveal {
  display: block;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-md);
}

.stats dt {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4.5vw, 3.1rem);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stats dd {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* Topics */
.topics__layout {
  display: grid;
  gap: var(--space-lg);
  align-items: start;
}

.topics__intro {
  max-width: 28rem;
}

.topics__intro h2 {
  margin-bottom: 1rem;
}

.topics__list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0.35rem 0;
  list-style: none;
  border-top: 1px solid rgba(242, 230, 214, 0.12);
  border-bottom: 1px solid rgba(242, 230, 214, 0.12);
}

.topic {
  position: relative;
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.45rem 0.25rem 1.45rem 0;
  border-bottom: 1px solid rgba(242, 230, 214, 0.08);
  transition:
    background-color 0.4s ease,
    padding-left 0.45s var(--ease),
    border-color 0.35s ease;
}

.topic:last-child {
  border-bottom: 0;
}

.topic::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), var(--sage-mid));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.45s var(--ease);
}

.topic:hover,
.topic:focus-within {
  padding-left: 0.85rem;
  background: linear-gradient(90deg, rgba(161, 225, 188, 0.1), transparent 70%);
}

.topic:hover::before,
.topic:focus-within::before {
  transform: scaleY(1);
}

.topic__mark {
  width: 0.7rem;
  height: 0.7rem;
  margin-top: 0.45rem;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  background: transparent;
  box-shadow: 0 0 0 0 rgba(161, 225, 188, 0);
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s var(--ease);
}

.topic:hover .topic__mark,
.topic:focus-within .topic__mark {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(161, 225, 188, 0.16);
  transform: scale(1.08);
}

.topic__body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.topic__body p {
  color: var(--ink-soft);
  max-width: 40rem;
  font-size: 1rem;
  line-height: 1.65;
}

/* Services */
.section__intro--center {
  text-align: center;
  margin-inline: auto;
}

.section__intro--center .lead {
  margin-inline: auto;
}

.services__list {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}

.service {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.85rem 1.6rem;
  background: rgba(42, 34, 28, 0.55);
  border: 1px solid rgba(242, 230, 214, 0.1);
  border-radius: var(--radius);
  transition:
    transform 0.35s var(--ease),
    border-color 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.35s var(--ease);
}

.service:hover {
  transform: translateY(-3px);
  border-color: rgba(161, 225, 188, 0.28);
  background: rgba(48, 39, 32, 0.7);
  box-shadow: 0 16px 36px rgba(12, 9, 7, 0.2);
}

.service--featured {
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(161, 225, 188, 0.14), transparent 55%),
    rgba(48, 39, 32, 0.7);
  border-color: rgba(161, 225, 188, 0.24);
}

.service__badge {
  width: fit-content;
  margin-bottom: 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-deep);
  background: var(--accent-cream);
  border-radius: 8px;
  padding: 0.4rem 0.7rem;
}

.service__head {
  margin-bottom: 1rem;
}

.service__duration {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--accent);
  margin-bottom: 0.55rem;
}

.service h3 {
  font-size: 1.25rem;
  min-height: 2.6em;
}

.service__text {
  color: var(--ink-soft);
  flex: 1 1 auto;
  margin-bottom: 1.75rem;
}

.service__footer {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(242, 230, 214, 0.12);
  margin-top: auto;
}

.service__price {
  font-family: var(--font-body);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}

.service__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--accent-soft);
  transition: gap 0.35s var(--ease), color 0.25s ease;
}

.service__link:hover {
  gap: 0.7rem;
  color: var(--white);
}

/* Contacts */
.contacts {
  padding-bottom: calc(var(--space-2xl) + 1rem);
}

.contacts__inner {
  display: grid;
  gap: 1.75rem;
  padding: clamp(2rem, 5vw, 3.25rem);
  background:
    radial-gradient(ellipse 70% 80% at 90% 0%, rgba(161, 225, 188, 0.16), transparent 55%),
    linear-gradient(155deg, #3f342c 0%, #2a211b 100%);
  color: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 20px 48px rgba(12, 9, 7, 0.28);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(161, 225, 188, 0.16);
}

.contacts__inner::before {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(221, 244, 201, 0.12);
  filter: blur(20px);
  animation: float 9s ease-in-out infinite;
}

.contacts__copy {
  position: relative;
  z-index: 1;
  max-width: 34rem;
}

.contacts .eyebrow {
  color: var(--accent);
}

.contacts h2 {
  margin-bottom: 0.85rem;
}

.contacts .lead {
  color: rgba(250, 246, 240, 0.82);
  margin-bottom: 0;
}

.contacts__actions {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.85rem;
}

.contacts__action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.25rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(250, 246, 240, 0.14);
  background: rgba(255, 252, 240, 0.04);
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s var(--ease);
}

.contacts__action:hover {
  background: rgba(161, 225, 188, 0.12);
  border-color: rgba(161, 225, 188, 0.35);
  transform: translateY(-2px);
}

.contacts__action--primary {
  background: var(--accent);
  border-color: transparent;
  color: var(--ink-deep);
}

.contacts__action--primary:hover {
  background: var(--accent-soft);
  border-color: transparent;
}

.contacts__action-label {
  font-size: 0.92rem;
  font-weight: 500;
  opacity: 0.72;
}

.contacts__action--primary .contacts__action-label {
  opacity: 0.75;
}

.contacts__action-value {
  font-size: 1.1rem;
  font-weight: 600;
}

.contacts__meta {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
  padding-top: 0.35rem;
  border-top: 1px solid rgba(250, 246, 240, 0.12);
}

.contacts__meta-item {
  display: grid;
  gap: 0.25rem;
}

.contacts__meta-item span {
  font-size: 0.88rem;
  color: rgba(250, 246, 240, 0.55);
}

.contacts__meta-item strong {
  font-size: 1.05rem;
  font-weight: 600;
  transition: color 0.25s ease;
}

.contacts__meta-item:hover strong {
  color: var(--accent);
}

/* Footer */
.footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid var(--line);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

/* Reveals */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.9s var(--ease-out),
    transform 0.9s var(--ease-out);
  transition-delay: calc(var(--i, 0) * 0.08s);
}

.reveal--clip {
  clip-path: inset(8% 8% 8% 8%);
  transition:
    opacity 1s var(--ease-out),
    transform 1s var(--ease-out),
    clip-path 1.15s var(--ease-out);
}

.reveal--scale {
  transform: translateY(40px) scale(0.97);
}

.reveal--up {
  transform: translateY(48px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  clip-path: inset(0 0 0 0);
}

@keyframes hero-zoom {
  to {
    transform: scale(1.08);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(12px, -18px, 0);
  }
}

@keyframes ambient-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  33% {
    transform: translate3d(3%, 2%, 0) scale(1.04);
  }
  66% {
    transform: translate3d(-2%, 4%, 0) scale(0.97);
  }
}

@keyframes about-glow {
  0%,
  100% {
    transform: scale(1.08) translate3d(0, 0, 0);
    opacity: 0.92;
  }
  50% {
    transform: scale(1.14) translate3d(2%, -1%, 0);
    opacity: 1;
  }
}

@keyframes about-float {
  0%,
  100% {
    transform: translate3d(-7px, 2px, 0) rotate(-0.55deg);
  }
  50% {
    transform: translate3d(7px, -4px, 0) rotate(0.55deg);
  }
}

@keyframes scan {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes scroll-dot {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(14px);
  }
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes menu-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (min-width: 768px) {
  .header__nav {
    display: flex;
  }

  .header__cta {
    display: inline-flex;
  }

  .header__menu {
    display: none;
  }

  .about__grid {
    grid-template-columns: 0.88fr 1.12fr;
    gap: 4.5rem;
  }

  .services__list {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .service {
    padding: 2rem 1.85rem;
  }

  .contacts__inner {
    gap: 2rem;
    padding: 3.25rem;
  }

  .contacts__actions {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .contacts__meta {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .topics__layout {
    grid-template-columns: minmax(240px, 0.9fr) 1.35fr;
    gap: 4.5rem;
    align-items: start;
  }

  .topics__intro {
    position: sticky;
    top: calc(var(--header-h) + 1.5rem);
  }

  .topic {
    grid-template-columns: 1.5rem 1fr;
    gap: 1.25rem;
    padding: 1.7rem 0.35rem 1.7rem 0;
  }
}

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

  .reveal,
  .hero-anim,
  .hero__image,
  .btn,
  .header,
  .magnetic__inner,
  .about__photo,
  .topic,
  .service {
    transition: none !important;
    animation: none !important;
  }

  .reveal,
  .hero-anim {
    opacity: 1;
    transform: none;
    clip-path: none;
  }

  .hero__scroll-dot,
  .hero__orb,
  .page-ambient__bloom,
  .about__glow,
  .about__visual,
  .cursor-glow {
    animation: none !important;
  }

  .cursor-glow {
    display: none;
  }
}
