:root {
  --cream: #f7f4ef;
  --cream-deep: #efe9e0;
  --paper: #fffdf9;
  --sage: #bfcfaf;
  --sage-deep: #758467;
  --forest: #40523d;
  --terracotta: #c98f7a;
  --terracotta-deep: #a86450;
  --taupe: #8a6e5e;
  --ink: #2f2a27;
  --muted: #6f6761;
  --line: rgba(47, 42, 39, 0.13);
  --white-line: rgba(255, 255, 255, 0.17);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --shadow-sm: 0 15px 45px rgba(65, 51, 43, 0.08);
  --shadow-lg: 0 35px 80px rgba(58, 46, 39, 0.15);
  --radius-sm: 14px;
  --radius-md: 26px;
  --radius-lg: 48px;
  --container: 1180px;
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --scroll-progress: 0;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

body::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  content: "";
  display: none;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  z-index: 9999;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

button,
a {
  outline: none;
}

button:focus-visible,
a:focus-visible {
  border-radius: 8px;
  box-shadow: 0 0 0 3px var(--cream), 0 0 0 5px var(--terracotta-deep);
}

svg {
  display: block;
}

.container {
  margin-inline: auto;
  max-width: var(--container);
  padding-inline: 24px;
  width: 100%;
}

.section {
  padding-block: 120px;
  position: relative;
}

.section-small {
  padding-block: 88px;
}

.skip-link {
  background: var(--ink);
  color: white;
  left: 16px;
  padding: 10px 16px;
  position: fixed;
  top: -100px;
  transition: top 0.2s ease;
  z-index: 10000;
}

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

.eyebrow {
  align-items: center;
  color: var(--terracotta-deep);
  display: flex;
  font-size: 0.72rem;
  font-weight: 600;
  gap: 10px;
  letter-spacing: 0.16em;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.eyebrow > span {
  background: currentColor;
  border-radius: 50%;
  height: 5px;
  position: relative;
  width: 5px;
}

.eyebrow > span::after {
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
  height: 13px;
  left: -5px;
  opacity: 0.45;
  position: absolute;
  top: -5px;
  width: 13px;
}

.eyebrow-light {
  color: #d9b9aa;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 em,
h2 em {
  color: var(--terracotta-deep);
  font-weight: 500;
}

h2 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
}

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

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.84rem;
  font-weight: 600;
  gap: 10px;
  justify-content: center;
  letter-spacing: 0.015em;
  min-height: 54px;
  padding: 14px 25px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  transition: transform 0.3s var(--ease-premium), box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.button::after {
  background: linear-gradient(105deg, transparent 25%, rgba(255, 255, 255, 0.24) 48%, transparent 72%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  transform: translateX(-135%);
  transition: transform 0.75s var(--ease-premium);
  z-index: -1;
}

.button.is-pressed,
.button:active {
  transform: translateY(0) scale(0.98);
}

.button svg {
  fill: currentColor;
  height: 18px;
  width: 18px;
}

.button-primary {
  background: var(--forest);
  box-shadow: 0 12px 32px rgba(64, 82, 61, 0.2);
  color: white;
}

.button-primary:hover {
  background: #344531;
  box-shadow: 0 16px 38px rgba(64, 82, 61, 0.27);
}

.button-ghost {
  border-color: var(--line);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(47, 42, 39, 0.24);
}

.button-outline {
  border-color: var(--forest);
  color: var(--forest);
}

.button-outline:hover {
  background: var(--forest);
  color: white;
}

.button-small {
  min-height: 43px;
  padding: 10px 20px;
}

.button-light {
  background: var(--paper);
  color: var(--forest);
  min-width: 224px;
}

.button-light:hover {
  box-shadow: 0 15px 40px rgba(22, 32, 20, 0.25);
}

.text-link {
  align-items: center;
  color: var(--terracotta-deep);
  display: inline-flex;
  font-size: 0.88rem;
  font-weight: 600;
  gap: 20px;
  padding-bottom: 4px;
  position: relative;
}

.text-link::after {
  background: currentColor;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 0.35s var(--ease-premium);
  width: 100%;
}

.text-link span {
  transition: transform 0.25s ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: scaleX(1);
}

/* Header */
.site-header {
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  z-index: 1000;
}

.site-header::after {
  background: linear-gradient(90deg, var(--terracotta), var(--sage-deep));
  bottom: 0;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  transform: scaleX(var(--scroll-progress));
  transform-origin: left;
  transition: transform 0.1s linear;
}

.site-header.scrolled {
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(247, 244, 239, 0.94);
  box-shadow: 0 10px 35px rgba(47, 42, 39, 0.07), 0 1px 0 var(--line);
}

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

.brand {
  align-items: flex-start;
  display: inline-flex;
  gap: 12px;
  flex-shrink: 0;
  height: 76px;
  overflow: hidden;
}

.brand-logo {
  display: block;
  filter: none;
  height: auto;
  max-width: none;
  object-fit: contain;
  object-position: top left;
  width: 154px;
}

.brand-mark {
  align-items: center;
  border: 1px solid var(--taupe);
  border-radius: 50% 50% 48% 52% / 55% 45% 55% 45%;
  color: var(--taupe);
  display: inline-flex;
  font-family: var(--serif);
  font-size: 0.9rem;
  height: 43px;
  justify-content: center;
  transform: rotate(-4deg);
  width: 43px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 1.16rem;
  font-weight: 600;
}

.brand-copy small {
  color: var(--taupe);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.19em;
  margin-top: 4px;
  text-transform: uppercase;
}

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

.desktop-nav a {
  color: #5f5752;
  font-size: 0.78rem;
  font-weight: 500;
  position: relative;
  transition: color 0.25s ease;
}

.desktop-nav a::after {
  background: var(--terracotta);
  bottom: -8px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
  width: 100%;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  transform: scaleX(1);
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--ink);
}

.header-cta {
  background: var(--terracotta);
  color: white;
}

.header-cta:hover {
  background: var(--terracotta-deep);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

/* Hero */
.hero {
  align-items: center;
  display: flex;
  min-height: 820px;
  overflow: hidden;
  padding-top: 150px;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: clamp(42px, 7vw, 95px);
  grid-template-columns: 1.05fr 0.95fr;
  position: relative;
  z-index: 1;
}

.hero-copy {
  padding-top: 8px;
}

.hero h1 {
  font-size: clamp(3.7rem, 6.8vw, 6.15rem);
  margin-bottom: 28px;
  max-width: 730px;
}

.hero h1 em {
  display: inline-block;
  font-style: italic;
  position: relative;
}

.hero h1 em::after {
  background: url("data:image/svg+xml,%3Csvg width='230' height='11' viewBox='0 0 230 11' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 8C70 1 153 1 229 5' stroke='%23C98F7A' fill='none' stroke-width='2' stroke-linecap='round' opacity='.65'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
  bottom: -4px;
  content: "";
  height: 11px;
  left: 0;
  position: absolute;
  width: 100%;
}

.hero-lead {
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-block: 38px 48px;
}

.hero-highlights {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 560px;
  padding-top: 24px;
}

.hero-highlights > div {
  display: flex;
  flex-direction: column;
}

.hero-highlights strong {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
}

.hero-highlights span {
  color: var(--muted);
  font-size: 0.68rem;
  margin-top: 3px;
}

.hero-visual {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  min-height: 570px;
  position: relative;
}

.clean-photo-frame {
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  margin-left: auto;
  overflow: hidden;
  padding: 10px;
  transform: none !important;
  filter: none !important;
  opacity: 1 !important;
  animation: none !important;
  transition: none !important;
  will-change: auto !important;
  width: min(100%, 390px);
}

.clean-photo-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: initial;
  object-position: initial;
  transform: none !important;
  filter: none !important;
  opacity: 1 !important;
  animation: none !important;
  transition: none !important;
  will-change: auto !important;
  image-rendering: auto;
  border-radius: 24px;
}

/* Trust */
.trust-strip {
  background: var(--paper);
  border-block: 1px solid var(--line);
  padding-block: 18px;
}

.trust-grid {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.trust-grid span {
  color: var(--taupe);
  font-family: var(--serif);
  font-size: 0.86rem;
}

.trust-grid i {
  background: var(--sage);
  border-radius: 50%;
  height: 4px;
  width: 4px;
}

/* Café intro */
.cafe-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(201, 143, 122, 0.11), transparent 32%),
    radial-gradient(circle at 92% 15%, rgba(191, 207, 175, 0.18), transparent 30%),
    var(--cream);
}

.cafe-grid {
  align-items: center;
  display: grid;
  gap: clamp(44px, 7vw, 88px);
  grid-template-columns: 1.05fr 0.95fr;
}

.cafe-copy h2 {
  margin-bottom: 24px;
  max-width: 720px;
}

.cafe-copy > p {
  font-size: 0.98rem;
  max-width: 620px;
}

.cafe-options {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
  margin-block: 34px;
}

.cafe-option-card {
  background: rgba(255, 253, 249, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 50px rgba(65, 51, 43, 0.07);
  padding: 28px;
  transition: transform 0.4s var(--ease-premium), box-shadow 0.35s ease, border-color 0.3s ease, background 0.3s ease;
}

.cafe-option-card svg {
  fill: none;
  height: 31px;
  margin-bottom: 24px;
  stroke: var(--terracotta);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
  width: 31px;
  transition: transform 0.4s var(--ease-premium);
}

.cafe-option-card h3 {
  font-size: 1.45rem;
  margin-bottom: 11px;
}

.cafe-option-card p {
  font-size: 0.76rem;
  line-height: 1.7;
}

.cafe-visual {
  position: relative;
}

/* Shared headings */
.section-heading {
  margin-bottom: 62px;
}

.section-heading h2 {
  max-width: 720px;
}

.split-heading {
  align-items: end;
  display: grid;
  gap: 50px;
  grid-template-columns: 1.25fr 0.75fr;
}

.split-heading > p {
  border-left: 1px solid var(--line);
  font-size: 0.92rem;
  padding-left: 30px;
}

.centered {
  margin-inline: auto;
  max-width: 780px;
  text-align: center;
}

.centered .eyebrow {
  justify-content: center;
}

.centered p {
  margin: 22px auto 0;
  max-width: 650px;
}

/* About */
.about {
  background: var(--paper);
}

.about-grid {
  align-items: center;
  display: grid;
  gap: clamp(60px, 9vw, 120px);
  grid-template-columns: 0.9fr 1.1fr;
}

.about-visual {
  min-height: 520px;
  position: relative;
}

.about-image-wrap {
  border-radius: 180px 180px 25px 25px;
  height: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.about-image-wrap::after {
  background: rgba(191, 207, 175, 0.13);
  content: "";
  display: none;
  inset: 0;
  mix-blend-mode: multiply;
  position: absolute;
}

.about-image-wrap img {
  display: block;
  filter: none;
  height: auto;
  object-fit: initial;
  transform: none;
  transition: none;
  width: 100%;
}

.js img:not(.is-loaded):not(.clean-photo-img) {
  opacity: 0.92;
}

img.is-loaded {
  opacity: 1;
}

.about-copy h2 {
  margin-bottom: 30px;
}

.about-copy > p {
  font-size: 0.95rem;
  margin-bottom: 17px;
}

.about-points {
  display: grid;
  gap: 12px 22px;
  grid-template-columns: 1fr 1fr;
  margin-block: 32px;
}

.about-points div {
  align-items: center;
  color: #544c47;
  display: flex;
  font-size: 0.78rem;
  gap: 10px;
}

.about-points svg {
  fill: none;
  height: 19px;
  stroke: var(--terracotta);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 19px;
}

/* Specialties */
.specialties {
  background: var(--forest);
  color: white;
}

.specialties .section-heading p,
.specialty-card p {
  color: rgba(255, 255, 255, 0.66);
}

.specialties .split-heading > p {
  border-color: var(--white-line);
}

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

.specialty-card {
  border: 1px solid var(--white-line);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  min-height: 335px;
  overflow: hidden;
  padding: 28px;
  position: relative;
  box-shadow: 0 16px 38px rgba(20, 29, 19, 0);
  transition: background 0.35s ease, transform 0.4s var(--ease-premium), border-color 0.35s ease, box-shadow 0.35s ease;
}

.specialty-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 22px 48px rgba(20, 29, 19, 0.2);
  transform: translateY(-7px);
}

.specialty-card.featured {
  background: var(--terracotta);
  border-color: var(--terracotta);
}

.specialty-card.featured p {
  color: rgba(255, 255, 255, 0.84);
}

.specialty-card.wide {
  align-items: end;
  display: grid;
  gap: 24px;
  grid-column: span 4;
  grid-template-columns: auto 1fr auto;
  min-height: 190px;
}

.card-number {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  position: absolute;
  right: 25px;
  top: 24px;
}

.specialty-icon {
  align-items: center;
  border: 1px solid var(--white-line);
  border-radius: 50%;
  display: flex;
  height: 53px;
  justify-content: center;
  margin-bottom: auto;
  width: 53px;
}

.specialty-icon svg {
  fill: none;
  height: 24px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.25;
  width: 24px;
  transition: transform 0.4s var(--ease-premium);
}

.specialty-card h3 {
  font-size: 1.55rem;
  margin-bottom: 14px;
}

.specialty-card p {
  font-size: 0.77rem;
  line-height: 1.65;
}

.card-arrow {
  bottom: 26px;
  font-size: 1.1rem;
  opacity: 0;
  position: absolute;
  right: 25px;
  transform: translate(-6px, 6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.specialty-card:hover .card-arrow {
  opacity: 1;
  transform: translate(0);
}

.wide .specialty-icon {
  margin: 0;
}

.wide h3 {
  font-size: 1.8rem;
}

.wide p {
  max-width: 600px;
}

/* Process */
.process {
  background: var(--paper);
}

.attendance-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: -25px 0 65px;
}

.attendance-pills span {
  align-items: center;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  display: inline-flex;
  font-size: 0.72rem;
  gap: 8px;
  padding: 9px 15px;
}

.attendance-pills svg {
  fill: none;
  height: 16px;
  stroke: var(--sage-deep);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  width: 16px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.process-step {
  border-top: 1px solid var(--line);
  padding: 34px 32px 0 0;
  position: relative;
  transition: transform 0.35s var(--ease-premium);
}

.process-step:not(:last-child)::after {
  background: var(--line);
  content: "";
  height: 1px;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.step-number {
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--sage);
  border-radius: 50%;
  color: var(--sage-deep);
  display: flex;
  font-family: var(--serif);
  height: 45px;
  justify-content: center;
  left: 0;
  position: absolute;
  top: -23px;
  width: 45px;
  z-index: 1;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.35s var(--ease-premium), box-shadow 0.3s ease;
}

.process-step h3 {
  font-size: 1.35rem;
  margin: 17px 0 13px;
}

.process-step p {
  font-size: 0.76rem;
  line-height: 1.7;
}

/* Value */
.value-banner {
  background: var(--cream-deep);
  overflow: hidden;
}

.value-inner {
  text-align: center;
}

.quote-mark {
  fill: var(--terracotta);
  height: 38px;
  margin: 0 auto 24px;
  opacity: 0.45;
  width: 48px;
}

.value-inner > p {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4.5vw, 4rem);
  letter-spacing: -0.035em;
  line-height: 1.18;
  margin: auto;
  max-width: 960px;
}

.value-inner em {
  color: var(--terracotta-deep);
}

.value-inner > span {
  color: var(--muted);
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  margin-top: 28px;
}

/* Services */
.services {
  background: var(--cream);
}

.services-grid {
  display: grid;
  align-items: start;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  min-height: 560px;
  overflow: hidden;
  padding: 34px;
  position: relative;
  transition: transform 0.4s var(--ease-premium), box-shadow 0.4s ease, border-color 0.3s ease;
}

.service-card::before {
  border: 1px solid var(--sage);
  border-radius: 50%;
  content: "";
  height: 200px;
  opacity: 0.16;
  position: absolute;
  right: -95px;
  top: -90px;
  width: 200px;
}

.service-main {
  background:
    linear-gradient(145deg, rgba(201, 143, 122, 0.2), transparent 42%),
    var(--forest);
  color: white;
  transform: translateY(-18px);
}

.service-main::before {
  border-color: white;
}

.service-main p,
.service-main li {
  color: rgba(255, 253, 249, 0.88);
}

.service-top {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.service-tag,
.service-mode {
  border-radius: 999px;
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  padding: 7px 11px;
  text-transform: uppercase;
}

.service-tag {
  background: rgba(191, 207, 175, 0.23);
  color: var(--sage-deep);
}

.service-main .service-tag {
  background: rgba(255, 253, 249, 0.14);
  color: #f8eee7;
}

.service-mode {
  border: 1px solid var(--line);
  color: var(--muted);
}

.service-main .service-mode {
  border-color: rgba(255, 253, 249, 0.38);
  color: rgba(255, 253, 249, 0.82);
}

.service-card h3 {
  font-size: clamp(1.9rem, 3vw, 2.35rem);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.service-card > p {
  font-size: 1rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.service-ideal {
  margin-top: 18px;
}

.service-ideal strong {
  color: var(--ink);
  font-size: 0.82rem;
}

.service-main .service-ideal strong {
  color: #fffdf9;
}

.service-summary {
  margin-top: 14px;
}

.service-benefits,
.service-details ul {
  display: grid;
  gap: 10px;
  list-style: none;
}

.service-benefits {
  margin-top: 24px;
  position: relative;
  z-index: 1;
}

.service-card li,
.service-details p {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.65;
}

.service-main li,
.service-main .service-details p {
  color: rgba(255, 253, 249, 0.9);
}

.service-card li {
  padding-left: 17px;
  position: relative;
}

.service-card li::before {
  background: var(--terracotta);
  border-radius: 50%;
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  top: 10px;
  width: 5px;
}

.service-main li::before {
  background: #f4d7ca;
  box-shadow: 0 0 0 3px rgba(244, 215, 202, 0.12);
}

.service-price {
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.service-details {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 13px;
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding-top: 0;
  position: relative;
  transform: translateY(-6px);
  transition: max-height 0.55s var(--ease-premium), opacity 0.35s ease, margin 0.35s ease, padding 0.35s ease, transform 0.35s var(--ease-premium);
  z-index: 1;
}

.service-main .service-details {
  border-color: var(--white-line);
}

.service-card.details-open .service-details {
  margin-top: 24px;
  max-height: 2200px;
  opacity: 1;
  padding-top: 24px;
  transform: translateY(0);
}

.service-details h4 {
  color: var(--terracotta-deep);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  margin-top: 6px;
  text-transform: uppercase;
}

.service-main .service-details h4 {
  color: #edc4b2;
}

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

.price small {
  color: var(--muted);
  font-size: 0.62rem;
  margin-bottom: 4px;
}

.service-main .price small {
  color: rgba(255, 253, 249, 0.78);
}

.price strong {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4vw, 2.65rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1;
}

.price sup {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0;
}

.service-main .button-primary {
  background: var(--terracotta);
}

.service-actions {
  align-items: stretch;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
  margin-top: auto;
  padding-top: 26px;
  position: relative;
  z-index: 1;
}

.service-main .service-actions {
  border-color: var(--white-line);
}

.service-main .service-detail-toggle {
  background: rgba(255, 253, 249, 0.1);
  border-color: rgba(255, 253, 249, 0.7);
  color: #fffdf9;
}

.service-main .service-detail-toggle:hover {
  background: rgba(255, 253, 249, 0.2);
  border-color: #fffdf9;
  color: #fffdf9;
}

.service-main .service-actions .button-light:not(.service-detail-toggle) {
  background: #fffdf9;
  border-color: #fffdf9;
  color: var(--forest);
}

.service-main .service-actions .button-light:not(.service-detail-toggle):hover {
  background: #f7efe7;
  border-color: #f7efe7;
  color: var(--forest);
}

.service-actions .button {
  min-height: 48px;
  padding-inline: 18px;
  width: 100%;
}

.service-detail-toggle {
  background: transparent;
  cursor: pointer;
}

.service-detail-toggle::before {
  content: "+";
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1;
}

.service-card.details-open .service-detail-toggle::before {
  content: "−";
}

.payment-note {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-top: 30px;
  text-align: center;
}

.payment-note span {
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 600;
}

.payment-note i {
  background: var(--terracotta);
  border-radius: 50%;
  height: 4px;
  width: 4px;
}

.payment-note p {
  font-size: 0.7rem;
  max-width: 760px;
}

/* Differences */
.differences {
  background: var(--paper);
}

.differences-grid {
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.difference-item {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  min-height: 250px;
  padding: 35px;
  position: relative;
  transition: background 0.3s ease, transform 0.4s var(--ease-premium), box-shadow 0.35s ease;
}

.difference-item:hover {
  background: var(--cream);
  box-shadow: 0 18px 42px rgba(65, 51, 43, 0.08);
  transform: translateY(-4px);
  z-index: 2;
}

.difference-item > span {
  color: #a79d96;
  font-size: 0.6rem;
  position: absolute;
  right: 25px;
  top: 20px;
}

.difference-item svg {
  fill: none;
  height: 32px;
  margin-bottom: 45px;
  stroke: var(--terracotta);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.2;
  width: 32px;
  transition: transform 0.4s var(--ease-premium), stroke 0.3s ease;
}

.difference-item h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.difference-item p {
  font-size: 0.74rem;
}

/* Testimonials */
.testimonials {
  background: var(--forest);
  color: white;
}

.testimonials .section-heading > p {
  border-color: var(--white-line);
  color: rgba(255, 255, 255, 0.6);
}

.placeholder-disclaimer {
  font-size: 0.68rem !important;
  line-height: 1.65;
}

.testimonials-grid {
  align-items: stretch;
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(3, 1fr);
}

.testimonial-card {
  border: 1px solid var(--white-line);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  min-height: 350px;
  padding: 32px;
  transition: transform 0.4s var(--ease-premium), box-shadow 0.4s ease, border-color 0.3s ease;
}

.testimonial-card.featured {
  background: var(--cream);
  color: var(--ink);
  transform: translateY(-14px);
}

.stars {
  color: #dbab90;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  margin-bottom: 28px;
}

.testimonial-card blockquote {
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.5;
}

.testimonial-more {
  margin: 18px 0 28px;
}

.testimonial-more summary {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: #edc4b2;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.64rem;
  font-weight: 700;
  gap: 8px;
  letter-spacing: 0.08em;
  list-style: none;
  padding: 8px 12px;
  text-transform: uppercase;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.testimonial-more summary::-webkit-details-marker {
  display: none;
}

.testimonial-more summary::after {
  content: "+";
  font-size: 0.9rem;
  line-height: 1;
}

.testimonial-more[open] summary::after {
  content: "−";
}

.testimonial-more summary:hover,
.testimonial-more summary:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.42);
  color: #fffdf9;
}

.testimonial-more p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  line-height: 1.75;
  margin-top: 16px;
}

.testimonial-card.featured .testimonial-more summary {
  border-color: rgba(47, 42, 39, 0.16);
  color: var(--terracotta-deep);
}

.testimonial-card.featured .testimonial-more summary:hover,
.testimonial-card.featured .testimonial-more summary:focus-visible {
  background: rgba(201, 143, 122, 0.1);
  border-color: rgba(201, 143, 122, 0.32);
  color: var(--terracotta-deep);
}

.testimonial-card.featured .testimonial-more p {
  color: var(--muted);
}

.testimonial-person {
  align-items: center;
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.testimonial-person > span {
  align-items: center;
  background: var(--terracotta);
  border-radius: 50%;
  color: white;
  display: flex;
  font-family: var(--serif);
  height: 42px;
  justify-content: center;
  width: 42px;
}

.testimonial-person div {
  display: flex;
  flex-direction: column;
}

.testimonial-person strong {
  font-size: 0.7rem;
  font-weight: 600;
}

.testimonial-person small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.59rem;
}

.testimonial-card.featured .testimonial-person small {
  color: var(--muted);
}

/* FAQ */
.faq {
  background: var(--cream);
}

.faq-grid {
  align-items: start;
  display: grid;
  gap: 90px;
  grid-template-columns: 0.8fr 1.2fr;
}

.faq-intro {
  position: sticky;
  top: 130px;
}

.faq-intro h2 {
  font-size: clamp(2.5rem, 4.8vw, 4rem);
}

.faq-intro > p {
  font-size: 0.82rem;
  margin-block: 25px;
  max-width: 420px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease, padding 0.3s var(--ease-premium);
}

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

.faq-item button {
  align-items: center;
  background: none;
  border: 0;
  cursor: pointer;
  display: flex;
  font-family: var(--serif);
  font-size: 1.22rem;
  justify-content: space-between;
  padding-block: 25px;
  text-align: left;
  width: 100%;
  transition: color 0.25s ease;
}

.faq-item button i {
  height: 16px;
  margin-left: 20px;
  position: relative;
  width: 16px;
}

.faq-item button i::before,
.faq-item button i::after {
  background: var(--terracotta);
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  top: 7px;
  transition: transform 0.25s ease;
  width: 16px;
}

.faq-item button i::after {
  transform: rotate(90deg);
}

.faq-item.active button i::after {
  transform: rotate(0);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.4s var(--ease-premium), opacity 0.3s ease;
}

.faq-answer p {
  font-size: 0.78rem;
  line-height: 1.75;
  max-width: 590px;
  overflow: hidden;
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-item.active .faq-answer p {
  padding-bottom: 25px;
}

/* CTA */
.final-cta {
  background: var(--terracotta);
  color: white;
  overflow: hidden;
}

.cta-shape {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  position: absolute;
}

.cta-shape-one {
  height: 520px;
  left: -290px;
  top: -120px;
  width: 520px;
}

.cta-shape-two {
  bottom: -250px;
  height: 600px;
  right: -300px;
  width: 600px;
}

.cta-inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  position: relative;
  text-align: center;
  z-index: 1;
}

.cta-kicker {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.cta-inner h2 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  max-width: 970px;
}

.cta-inner h2 em {
  color: white;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.78);
  margin: 25px auto 32px;
  max-width: 580px;
}

.cta-inner small {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.62rem;
  margin-top: 15px;
}

/* Footer */
.site-footer {
  background: #292d27;
  color: white;
  padding-top: 80px;
}

.footer-main {
  display: grid;
  gap: 70px;
  grid-template-columns: 1.4fr 0.6fr 1fr;
  padding-bottom: 65px;
}

.brand-footer .brand-mark {
  border-color: #d5c8bf;
  color: #d5c8bf;
}

.brand-footer .brand-copy small {
  color: #b9aaa1;
}

.footer-brand > p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.74rem;
  margin-block: 24px;
  max-width: 370px;
}

.instagram-link {
  align-items: center;
  color: #d8c5ba;
  display: inline-flex;
  font-size: 0.72rem;
  gap: 9px;
}

.instagram-link svg {
  fill: none;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.4;
  width: 18px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column h3 {
  color: #cfb9ac;
  font-family: var(--sans);
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.footer-column > a,
.footer-column > p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.7rem;
}

.footer-column > a:hover {
  color: white;
}

.footer-contact {
  gap: 20px;
}

.footer-contact a,
.footer-contact p {
  line-height: 1.7;
}

.footer-contact span {
  color: rgba(255, 255, 255, 0.38);
  display: block;
  font-size: 0.56rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  padding-block: 22px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.58rem;
}

.whatsapp-float {
  align-items: center;
  bottom: 24px;
  display: flex;
  position: fixed;
  right: 24px;
  transition: transform 0.35s var(--ease-premium), filter 0.35s ease;
  z-index: 900;
}

.whatsapp-float span {
  background: white;
  border-radius: 999px 0 0 999px;
  color: var(--forest);
  font-size: 0.68rem;
  font-weight: 600;
  margin-right: -5px;
  opacity: 0;
  padding: 10px 15px;
  pointer-events: none;
  transform: translateX(12px);
  transition: opacity 0.3s ease, transform 0.35s var(--ease-premium);
}

.whatsapp-float svg {
  background: #4f7f4d;
  border: 4px solid white;
  border-radius: 50%;
  fill: white;
  height: 54px;
  padding: 10px;
  width: 54px;
  filter: drop-shadow(0 9px 22px rgba(36, 62, 32, 0.28));
  transition: background 0.3s ease, transform 0.35s var(--ease-premium), filter 0.35s ease;
}

.whatsapp-float::after {
  animation: whatsapp-attention 7s ease-out 3s infinite;
  border: 1px solid rgba(79, 127, 77, 0.55);
  border-radius: 50%;
  content: "";
  height: 50px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  right: 2px;
  width: 50px;
  z-index: -1;
}

.back-to-top {
  align-items: center;
  background: rgba(255, 253, 249, 0.92);
  border: 1px solid var(--line);
  border-radius: 50%;
  bottom: 91px;
  box-shadow: 0 12px 32px rgba(47, 42, 39, 0.11);
  color: var(--forest);
  cursor: pointer;
  display: flex;
  height: 43px;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 30px;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.35s var(--ease-premium), background 0.3s ease;
  visibility: hidden;
  width: 43px;
  z-index: 899;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.back-to-top svg {
  fill: none;
  height: 18px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 18px;
}

@keyframes whatsapp-attention {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  8% {
    opacity: 0.42;
  }
  22%,
  100% {
    opacity: 0;
    transform: scale(1.65);
  }
}

/* Motion */
.js .reveal {
  --reveal-x: 0px;
  --reveal-y: 24px;
  opacity: 0;
  transform: translate3d(var(--reveal-x), var(--reveal-y), 0);
  transition: opacity 0.72s ease, transform 0.72s var(--ease-premium);
  transition-delay: var(--reveal-delay, 0ms);
}

.js .reveal-left {
  --reveal-x: -28px;
  --reveal-y: 0px;
}

.js .reveal-right {
  --reveal-x: 28px;
  --reveal-y: 0px;
}

.reveal-delay {
  --reveal-delay: 120ms;
}

.js .reveal.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (hover: hover) and (pointer: fine) {
  .button:hover {
    transform: translateY(-3px);
  }

  .button:hover::after {
    transform: translateX(135%);
  }

  .about-image-wrap:hover img {
    filter: none;
    transform: none;
  }

  .cafe-option-card:hover {
    background: rgba(255, 253, 249, 0.92);
    border-color: rgba(138, 110, 94, 0.24);
    box-shadow: 0 24px 58px rgba(65, 51, 43, 0.11);
    transform: translateY(-6px);
  }

  .cafe-option-card:hover svg {
    transform: scale(1.08) rotate(3deg);
  }

  .specialty-card:hover .specialty-icon svg,
  .difference-item:hover svg,
  .attendance-pills span:hover svg {
    transform: scale(1.08) rotate(3deg);
  }

  .process-step:hover {
    transform: translateY(-5px);
  }

  .process-step:hover .step-number {
    background: var(--sage-deep);
    border-color: var(--sage-deep);
    box-shadow: 0 9px 24px rgba(117, 132, 103, 0.2);
    color: white;
    transform: translateY(-3px);
  }

  .service-card:hover {
    border-color: rgba(138, 110, 94, 0.25);
    box-shadow: 0 28px 65px rgba(65, 51, 43, 0.13);
    transform: translateY(-7px);
  }

  .service-main:hover {
    transform: translateY(-25px);
  }

  .testimonial-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 28px 55px rgba(19, 28, 18, 0.2);
    transform: translateY(-6px);
  }

  .testimonial-card.featured:hover {
    transform: translateY(-20px);
  }

  .faq-item:hover {
    background: rgba(255, 253, 249, 0.55);
    padding-inline: 14px;
  }

  .faq-item:hover button,
  .faq-item.active button {
    color: var(--terracotta-deep);
  }

  .whatsapp-float:hover,
  .whatsapp-float:focus-visible {
    transform: translateY(-4px);
  }

  .whatsapp-float:hover span,
  .whatsapp-float:focus-visible span {
    opacity: 1;
    transform: translateX(0);
  }

  .whatsapp-float:hover svg {
    background: var(--forest);
    filter: drop-shadow(0 13px 25px rgba(36, 62, 32, 0.34));
    transform: scale(1.04);
  }

  .back-to-top:hover {
    background: white;
    transform: translateY(-3px);
  }
}

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

  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .whatsapp-float::after {
    animation: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Responsive */
@media (max-width: 1050px) {
  .brand-logo {
    width: 142px;
  }

  .desktop-nav {
    gap: 19px;
  }

  .desktop-nav a {
    font-size: 0.72rem;
  }

  .hero-grid {
    gap: 40px;
  }

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

  .service-featured-plan {
    grid-column: span 2;
  }

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

  .specialty-card.wide {
    grid-column: span 2;
  }
}

@media (max-width: 860px) {
  html {
    scroll-padding-top: 82px;
  }

  .section {
    padding-block: 90px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    background: transparent;
    border: 0;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
    height: 40px;
    justify-content: center;
    width: 40px;
  }

  .menu-toggle span {
    background: var(--ink);
    height: 1px;
    margin-left: auto;
    transition: transform 0.25s ease, width 0.25s ease;
    width: 24px;
  }

  .menu-toggle span:last-child {
    width: 17px;
  }

  .menu-toggle.active span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle.active span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
    width: 24px;
  }

  .mobile-menu {
    background: rgba(247, 244, 239, 0.98);
    border-bottom: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 4px;
    left: 0;
    opacity: 0;
    padding: 14px 24px 26px;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 84px;
    transform: translateY(-15px);
    transition: opacity 0.28s ease, transform 0.35s var(--ease-premium), visibility 0.28s;
    visibility: hidden;
  }

  .mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .mobile-menu a {
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 1.15rem;
    padding: 11px 0;
    transition: color 0.25s ease, padding-left 0.3s var(--ease-premium);
  }

  .mobile-menu a:hover,
  .mobile-menu a:focus-visible,
  .mobile-menu a.active {
    color: var(--terracotta-deep);
    padding-left: 8px;
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float {
    bottom: max(18px, env(safe-area-inset-bottom));
    right: 18px;
  }

  .back-to-top {
    bottom: calc(max(18px, env(safe-area-inset-bottom)) + 68px);
    right: 23px;
  }

  .hero {
    min-height: auto;
    padding-top: 130px;
  }

  .hero-grid,
  .cafe-grid,
  .about-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero .eyebrow,
  .hero-actions {
    justify-content: center;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-highlights {
    margin-inline: auto;
  }

  .hero-visual {
    margin: auto;
    min-height: 590px;
    width: min(100%, 520px);
  }

  .clean-photo-frame {
    margin-inline: auto;
  }

  .cafe-copy,
  .cafe-copy h2,
  .cafe-copy > p {
    margin-inline: auto;
    text-align: center;
  }

  .cafe-copy .eyebrow,
  .cafe-copy .text-link {
    justify-content: center;
  }

  .about-grid {
    gap: 55px;
  }

  .about-visual {
    margin: auto;
    max-width: 560px;
    width: 100%;
  }

  .split-heading {
    align-items: start;
    gap: 25px;
    grid-template-columns: 1fr;
  }

  .split-heading > p {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
    padding-top: 20px;
  }

  .specialties .split-heading > p,
  .testimonials .split-heading > p {
    border-color: var(--white-line);
  }

  .process-grid {
    gap: 50px 15px;
    grid-template-columns: 1fr 1fr;
  }

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

  .service-card,
  .testimonial-card,
  .faq-item,
  .cta-inner,
  .footer-main {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .service-featured-plan {
    grid-column: auto;
  }

  .service-main {
    transform: none;
  }

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

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

  .testimonial-card {
    min-height: 280px;
  }

  .testimonial-card.featured {
    transform: none;
  }

  .faq-intro {
    position: static;
  }

  .footer-main {
    grid-template-columns: 1.3fr 0.7fr;
  }

  .footer-contact {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .container {
    padding-inline: 19px;
  }

  .section {
    padding-block: 92px;
  }

  .header-inner {
    height: 75px;
  }

  .mobile-menu {
    top: 75px;
  }

  .brand-mark {
    height: 38px;
    width: 38px;
  }

  .brand-logo {
    width: 124px;
  }

  .brand-copy strong {
    font-size: 1rem;
  }

  .brand {
    height: 62px;
  }

  .hero {
    padding-block: 112px 76px;
  }

  .hero h1 {
    font-size: clamp(2.72rem, 13.2vw, 3.75rem);
    max-width: 100%;
  }

  .hero-lead {
    font-size: 0.92rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    min-height: 52px;
    padding-inline: 18px;
    width: 100%;
  }

  .hero-highlights {
    gap: 8px;
    grid-template-columns: 1fr;
  }

  .hero-highlights strong {
    font-size: 0.88rem;
  }

  .hero-highlights span {
    font-size: 0.58rem;
  }

  .hero-visual {
    min-height: auto;
  }

  .clean-photo-frame {
    border-radius: 28px;
    width: calc(100% - 18px);
  }

  .trust-grid {
    flex-wrap: wrap;
    gap: 8px 13px;
    justify-content: center;
  }

  .trust-grid span {
    font-size: 0.68rem;
  }

  .cafe-options {
    grid-template-columns: 1fr;
  }

  .cafe-option-card {
    padding: 24px;
  }

  .cafe-grid {
    gap: 46px;
  }

  .clean-photo-frame img {
    border-radius: 22px;
  }

  .section-heading {
    margin-bottom: 45px;
  }

  h2 {
    font-size: clamp(2.25rem, 11vw, 3.15rem);
  }

  .about-visual {
    min-height: 445px;
  }

  .about-image-wrap {
    height: auto;
    width: 100%;
  }

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

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

  .specialty-card,
  .specialty-card.wide {
    grid-column: span 1;
    min-height: 300px;
  }

  .specialty-card.wide {
    align-items: start;
    display: flex;
  }

  .process-grid {
    gap: 52px;
    grid-template-columns: 1fr;
  }

  .process-step {
    padding-right: 0;
  }

  .service-card {
    min-height: auto;
    padding: 28px 23px;
  }

  .service-card h3 {
    font-size: clamp(1.65rem, 9vw, 1.9rem);
  }

  .service-card > p {
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .service-top {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 28px;
  }

  .service-actions {
    gap: 9px;
    padding-top: 22px;
  }

  .service-actions .button {
    font-size: 0.78rem;
    min-height: 50px;
    padding-inline: 14px;
    white-space: normal;
  }

  .service-benefits,
  .service-details ul {
    gap: 10px;
  }

  .service-card li,
  .service-details p {
    font-size: 0.86rem;
    line-height: 1.65;
    overflow-wrap: anywhere;
  }

  .testimonial-card {
    min-height: auto;
    padding: 28px 23px;
  }

  .testimonial-card blockquote {
    font-size: clamp(1.08rem, 6vw, 1.25rem);
  }

  .testimonial-more summary {
    max-width: 100%;
    white-space: normal;
  }

  .payment-note {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .payment-note i {
    display: none;
  }

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

  .difference-item {
    min-height: 220px;
  }

  .faq-item button {
    align-items: flex-start;
    font-size: 1.02rem;
    gap: 16px;
    line-height: 1.35;
  }

  .faq-item button i {
    flex: 0 0 16px;
    margin-left: 0;
    margin-top: 5px;
  }

  .faq-answer p {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .final-cta {
    padding-block: 95px;
  }

  .cta-inner h2 {
    font-size: clamp(2.16rem, 10.8vw, 3.45rem);
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .cta-inner p {
    font-size: 0.9rem;
  }

  .footer-main {
    gap: 45px;
    grid-template-columns: 1fr;
  }

  .footer-contact {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .whatsapp-float svg {
    height: 52px;
    width: 52px;
  }
}

@media (max-width: 380px) {
  .container {
    padding-inline: 17px;
  }

  .brand-logo {
    width: 108px;
  }

  .brand {
    height: 54px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 12.8vw, 3.1rem);
  }

  .hero-lead {
    font-size: 0.88rem;
  }

  .button {
    font-size: 0.78rem;
  }

  .clean-photo-frame {
    width: calc(100% - 12px);
  }

  .service-card,
  .testimonial-card {
    padding-inline: 21px;
  }

  .price strong {
    font-size: 2rem;
  }

  .cta-inner h2 {
    font-size: clamp(2rem, 10.5vw, 3rem);
  }
}
