@font-face {
  font-family: "Carefree";
  src: url("assets/fonts/Carefree-Font/OTF/Carefree Serif Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


@font-face {
  font-family: "Carefree";
  src: url("assets/fonts/Carefree-Font/OTF/Carefree Serif Italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Carefree";
  src: url("assets/fonts/Carefree-Font/OTF/Carefree Serif Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Carefree";
  src: url("assets/fonts/Carefree-Font/OTF/Carefree Serif Bold Italic.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "CarefreeThinLocal";
  src: url("assets/fonts/Carefree-Font/OTF/Carefree Serif Thin.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "CarefreeThinLocal";
  src: url("assets/fonts/Carefree-Font/OTF/Carefree Serif Thin Italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "CarefreeHairlineLocal";
  src: url("assets/fonts/Carefree-Font/OTF/Carefree Serif Hairline.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "CarefreeHairlineLocal";
  src: url("assets/fonts/Carefree-Font/OTF/Carefree Serif Hairline Italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "CarefreeExtraLightLocal";
  src: url("assets/fonts/Carefree-Font/OTF/Carefree Serif Extra Light.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "CarefreeExtraLightLocal";
  src: url("assets/fonts/Carefree-Font/OTF/Carefree Serif Extra Light Italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "SabonLocal";
  src: url("assets/fonts/Sabon Regular/Sabon Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "TrueTypewriterLocal";
  src: url("assets/fonts/True/True.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "NefelibataLocal";
  src: url("assets/fonts/nefelibata-script/nefelibata-script.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --cream: #f8f6f2;
  --logo-green: #838b7a;
  --paper-sheet: #efede7;
  --olive: var(--logo-green);
  --deep-olive: #4a522a;
  --warm-white: #f8f6f2;
  --paper: var(--logo-green);
  --ink: #4a2f1d;
  --soft-ink: rgba(74, 47, 29, 0.82);
  --about-space-lg: clamp(64px, 8vw, 110px);
  --about-space-md: clamp(40px, 5vw, 72px);
  --about-space-sm: clamp(24px, 3vw, 40px);
  --about-inline: clamp(24px, 8vw, 140px);
  --shadow: rgba(0, 0, 0, 0.08);
  --transition: 0.3s ease;
  --font-carefree: "Carefree", "Georgia", serif;
  --font-carefree-thin: "CarefreeThinLocal", "Carefree Serif Thin", "Carefree", "Georgia", serif;
  --font-carefree-hairline: "CarefreeHairlineLocal", "Carefree Serif Hairline", "Carefree", "Georgia", serif;
  --font-carefree-extra-light: "CarefreeExtraLightLocal", "Carefree Serif Extra Light", "Carefree", "Georgia", serif;
  --font-sabon: "SabonLocal", "Sabon", "Sabon LT Std", "Sabon Next LT Pro", "Times New Roman", serif;
  --font-typewriter: "TrueTypewriterLocal", "True Typewriter", "TrueTypewriter", "American Typewriter", "Courier New", monospace;
  --font-nefelibata: "NefelibataLocal", "Nefelibata Script", "Nefelibata", "Brush Script MT", cursive;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: "Carefree", "Georgia", serif;
  color: #4a2f1d;
  background: var(--logo-green);
  text-transform: uppercase;
}

body.home-hero {
  --logo-green: #989e90;
  --home-footer-text-size: clamp(21px, 1.65vw, 30px);
}

body.nav-open {
  overflow: hidden;
}

html.device-mobile,
html.device-tablet,
html.device-desktop {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

html.device-touch a,
html.device-touch button,
html.device-touch input,
html.device-touch textarea {
  touch-action: manipulation;
}

html.device-touch .topnav a,
html.device-touch .mobile-nav a,
html.device-touch .ghost-button,
html.device-touch .whatsapp-button,
html.device-touch .social-item {
  min-height: 44px;
}

html.device-touch .topnav a,
html.device-touch .mobile-nav a {
  display: inline-flex;
  align-items: center;
}

html.device-mobile .container {
  width: min(100%, 94vw);
}

html.device-mobile .topbar-inner {
  padding-right: clamp(14px, 4vw, 18px);
}

html.device-mobile .gallery-track {
  grid-auto-columns: minmax(72vw, 1fr);
}

html.device-mobile .gallery-item {
  scroll-snap-align: start;
}

html.device-mobile .process-content,
html.device-mobile .portal-hero-card,
html.device-mobile .contact-card {
  padding: clamp(22px, 5vw, 30px);
}

html.device-tablet .container {
  width: min(1200px, 93vw);
}

html.device-tablet .topnav {
  gap: 18px;
  font-size: clamp(22px, 2.6vw, 28px);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

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

#page {
  min-height: 100vh;
  background: var(--logo-green);
  position: relative;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.topbar {
  background: var(--logo-green);
  color: #4a2f1d;
  z-index: 10;
}

.topbar-inner {
  width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  height: 72px;
  padding: 0 4vw 0 0;
  position: relative;
}

.brand {
  position: absolute;
  left: 0;
  top: -48px;
  z-index: 1;
  display: flex;
  align-items: center;
  line-height: 0;
}

.brand-mark {
  display: block;
  width: 200px;
  height: auto;
  max-width: 200px;
}

.topnav {
  display: flex;
  gap: 26px;
  font-size: 31px;
  margin-top: 6px;
  text-transform: none;
  letter-spacing: 0.12em;
  color: #4a2f1d;
  font-family: var(--font-carefree-extra-light);
  font-style: italic;
  font-weight: 400;
  font-synthesis: none;
}

.topnav a,
.mobile-nav a {
  white-space: nowrap;
  text-transform: lowercase;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #4a2f1d;
  cursor: pointer;
}

.menu-icon {
  width: 28px;
  height: 2px;
  background: currentColor;
  display: block;
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 28px;
  height: 2px;
  background: currentColor;
}

.menu-icon::before {
  top: -8px;
}

.menu-icon::after {
  top: 8px;
}

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

.hero {
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--logo-green);
}

.hero-media {
  width: min(760px, 86vw);
  height: 360px;
  margin-left: 150px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: grid;
  place-items: center;
}

.media-placeholder {
  color: #4a2f1d;
  font-family: "Carefree", "Georgia", serif;
  font-size: 34px;
  letter-spacing: 0.08em;
}

.about-hero {
  position: relative;
  padding: 120px 0 80px;
  background: var(--logo-green);
  color: #4a2f1d;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  background: transparent;
  border-bottom: none;
  display: grid;
  place-items: center;
  font-family: "Carefree", "Georgia", serif;
  font-size: 32px;
  letter-spacing: 0.08em;
  color: rgba(74, 47, 29, 0.6);
}

.about-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
}

.about-hero-card {
  background: rgba(131, 139, 122, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 36px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  max-width: calc(100% - 50px);
  margin-top: 50px;
}

.about-hero-card p {
  margin-top: 0;
  line-height: 1.8;
}

.about-hero-card .ghost-button {
  border-color: var(--cream);
  color: #4a2f1d;
}

.about-hero-side {
  display: grid;
  gap: 24px;
  align-content: start;
}

.about-banner {
  height: 200px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: grid;
  place-items: center;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
}

.about-portrait {
  height: 360px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: grid;
  place-items: center;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
}

.advisor {
  padding: 80px 0;
  background: var(--logo-green);
  color: #4a2f1d;
}

.advisor-kicker {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  margin-top: 0;
  margin-bottom: 28px;
}

.advisor-slider {
  position: relative;
  min-height: 240px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.advisor-slide {
  position: absolute;
  inset: 40px;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}

.advisor-slide.is-active {
  opacity: 1;
  transform: translateY(0);
}

.advisor-slide h3 {
  font-family: "Carefree", "Georgia", serif;
  font-size: 28px;
  margin-top: 0;
}

.advisor-slide p {
  line-height: 1.7;
}

.advisor-next {
  margin-top: 24px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--cream);
  background: transparent;
  color: #4a2f1d;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  cursor: pointer;
}

.about {
  padding: 80px 0;
  background: var(--logo-green);
  color: #4a2f1d;
}

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

.about-collage {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  grid-auto-rows: 170px;
  gap: 18px;
  min-height: 420px;
}

.photo {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: grid;
  place-items: center;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.2em;
}

.photo-1 {
  grid-column: 1;
  grid-row: 1;
}

.photo-2 {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.photo-3 {
  grid-column: 1;
  grid-row: 2;
}

.photo-4 {
  grid-column: 2;
  grid-row: 3;
}

.about-copy {
  font-size: 16px;
  line-height: 1.8;
}

.process {
  position: relative;
  padding: 120px 0 80px;
  background: var(--logo-green);
  color: #4a2f1d;
  overflow: hidden;
}

.process-bg {
  position: absolute;
  inset: 0;
  background: transparent;
  display: grid;
  place-items: center;
  color: rgba(74, 47, 29, 0.65);
  font-family: "Carefree", "Georgia", serif;
  font-size: 32px;
  letter-spacing: 0.1em;
}

.process-content {
  position: relative;
}

.process-title {
  text-align: center;
  font-family: "Carefree", "Georgia", serif;
  font-size: 52px;
  margin-top: 0;
  margin-bottom: 50px;
}

.process-timeline {
  position: relative;
  display: grid;
  gap: 40px;
  padding-left: 50px;
}

.process-timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(248, 246, 242, 0.6);
}

.process-step {
  position: relative;
}

.process-step .dot {
  position: absolute;
  left: -38px;
  top: 12px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--cream);
}

.process-step h3 {
  font-family: "Carefree", "Georgia", serif;
  font-size: 30px;
  margin-top: 0;
}

.process-step p {
  line-height: 1.8;
  margin-bottom: 0;
}

.service-suite {
  padding: 90px 0;
  background: var(--logo-green);
}

.service-card {
  background: var(--olive);
  color: #4a2f1d;
  padding: 60px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.service-kicker {
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: 16px;
  text-align: center;
  margin-top: 0;
  margin-bottom: 40px;
}

.service-block + .service-block {
  margin-top: 30px;
}

.service-block h3 {
  font-family: "Carefree", "Georgia", serif;
  font-size: 30px;
  margin-bottom: 10px;
}

.service-block p {
  line-height: 1.7;
  margin: 0;
}

.faq {
  position: relative;
  padding: 90px 0;
  background: var(--logo-green);
  color: #4a2f1d;
  overflow: hidden;
}

.faq-bg {
  position: absolute;
  inset: 0;
  background: transparent;
  display: grid;
  place-items: center;
  color: rgba(74, 47, 29, 0.6);
  font-family: "Carefree", "Georgia", serif;
  font-size: 28px;
  letter-spacing: 0.12em;
}

.faq-content {
  position: relative;
}

.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-header span {
  font-family: "Carefree", "Georgia", serif;
  font-size: 36px;
  display: block;
}

.faq-header h2 {
  font-family: "Carefree", "Georgia", serif;
  font-size: 26px;
  margin: 10px 0 0;
}

.faq-list {
  background: var(--logo-green);
  color: #4a2f1d;
  padding: 30px;
  border-radius: 12px;
}

.faq-item {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  font-family: "Carefree", "Georgia", serif;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  cursor: pointer;
}

.faq-item + .faq-panel {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  font-size: 15px;
  line-height: 1.7;
  padding-right: 24px;
}

.faq-panel.is-open {
  max-height: 200px;
  padding-bottom: 18px;
}

.faq-icon {
  font-size: 24px;
}

.client-gallery {
  padding: 60px 0;
  background: var(--logo-green);
}

.portal-hero {
  position: relative;
  padding: 120px 0 90px;
  background: var(--logo-green);
  color: #4a2f1d;
  overflow: hidden;
}

.portal-hero-bg {
  position: absolute;
  inset: 0;
  background: transparent;
  display: grid;
  place-items: center;
  color: rgba(74, 47, 29, 0.6);
  font-family: "Carefree", "Georgia", serif;
  font-size: 32px;
  letter-spacing: 0.1em;
}

.portal-hero-card {
  position: relative;
  background: rgba(131, 139, 122, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 50px;
  display: grid;
  gap: 24px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.portal-hero-banner {
  height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
}

.portal-copy p {
  line-height: 1.8;
  margin-top: 0;
}

.portal-copy ul {
  margin: 0;
  padding-left: 20px;
  line-height: 1.8;
}

.portal-note {
  margin: 0;
  font-size: 15px;
}

.portal-code {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}

.ghost-button {
  display: inline-flex;
  margin-top: 24px;
  border: 1px solid var(--warm-white);
  padding: 10px 24px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 13px;
}

.services {
  padding: 60px 0;
  background: var(--logo-green);
}

.services-heading {
  margin: 0 0 10px;
  font-family: "Carefree", "Georgia", serif;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: clamp(28px, 4.2vw, 52px);
}

.services-heading a {
  color: inherit;
  text-decoration: none;
}

.section-line {
  height: 1px;
  background: rgba(248, 246, 242, 0.6);
  opacity: 0.6;
  margin: 24px 0;
}

.services-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(74, 47, 29, 0.35);
}

.service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  border-bottom: 1px solid rgba(74, 47, 29, 0.35);
  font-family: "Carefree", "Georgia", serif;
  font-size: 28px;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.service-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(74, 47, 29, 0.55);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  line-height: 1;
}

.reviews {
  position: relative;
  padding: 86px 0;
  background:
    linear-gradient(rgba(60, 46, 31, 0.33), rgba(60, 46, 31, 0.33)),
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.14), transparent 40%),
    linear-gradient(120deg, #6d7668 0%, #7b8576 48%, #6d7668 100%);
  color: var(--cream);
  overflow: hidden;
}

.reviews::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.018) 0 1px,
      transparent 1px 4px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.014) 0 1px,
      transparent 1px 3px
    );
  pointer-events: none;
  opacity: 0.35;
}

.reviews-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px 28px;
  width: min(760px, 92vw);
  margin: 0 auto 18px;
  position: relative;
  z-index: 1;
}

.reviews-header h2 {
  font-family: "Carefree", "Georgia", serif;
  font-size: clamp(34px, 4.2vw, 52px);
  margin: 0;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.reviews-title-lowercase {
  text-transform: none;
}

.reviews-title-main {
  margin: 0;
}

.reviews-title-accent {
  margin: 0;
  font-family: "Carefree", "Georgia", serif;
  font-size: clamp(22px, 2.8vw, 38px);
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.reviews-header p {
  margin: 0;
}

.reviews-slider {
  background: var(--paper-sheet);
  color: #4a2f1d;
  border: 1px solid rgba(74, 47, 29, 0.22);
  border-radius: 2px;
  padding: 38px 44px;
  min-height: 300px;
  width: min(760px, 92vw);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 22px 46px rgba(29, 22, 15, 0.34);
  z-index: 1;
}

.paper-texture {
  background-color: var(--paper-sheet);
  background-image: none;
  box-shadow: inset 0 0 0 1px rgba(120, 108, 92, 0.08);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.paper-texture::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(120, 108, 92, 0.018) 0 1px,
      transparent 1px 4px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.03) 0 1px,
      transparent 1px 3px
    );
  mix-blend-mode: multiply;
  opacity: 0.34;
  pointer-events: none;
  z-index: 0;
}

.paper-texture > * {
  position: relative;
  z-index: 1;
}

.paper-texture .section-line {
  background: rgba(74, 47, 29, 0.35);
  opacity: 1;
}

.paper-texture .reviews-slider {
  background: var(--paper-sheet);
  border-color: rgba(74, 47, 29, 0.22);
}

.paper-texture .gallery-item {
  background: var(--paper-sheet);
  border-color: rgba(74, 47, 29, 0.15);
}

.paper-texture .gallery-dots button {
  background: rgba(74, 47, 29, 0.2);
}

.paper-texture .gallery-dots button.is-active {
  background: #4a2f1d;
}

.paper-texture .follow-mark {
  background: var(--paper-sheet);
}

.paper-texture .social-item {
  background: var(--paper-sheet);
}

body.secondary-pages .paper-palette-bg {
  background-color: var(--paper-sheet) !important;
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(120, 108, 92, 0.018) 0 1px,
      transparent 1px 4px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.03) 0 1px,
      transparent 1px 3px
    );
  color: #4a2f1d;
}

body.secondary-pages .paper-palette-bg .section-line {
  background: rgba(74, 47, 29, 0.35);
  opacity: 1;
}

body.secondary-pages .paper-palette-bg .service-card,
body.secondary-pages .paper-palette-bg .faq-list,
body.secondary-pages .paper-palette-bg .portal-hero-card,
body.secondary-pages .paper-palette-bg .contact-card {
  background: rgba(239, 237, 231, 0.92);
  border-color: rgba(74, 47, 29, 0.2);
  color: #4a2f1d;
}

body.secondary-pages .paper-palette-bg .ghost-button,
body.secondary-pages .paper-palette-bg .whatsapp-button {
  border-color: rgba(74, 47, 29, 0.35);
  color: #4a2f1d;
}

body.about-inverted {
  --paper-sheet: var(--logo-green);
  --paper: #efede7;
  --about-card-base: #f6f2ea;
  --about-card-border: rgba(201, 184, 158, 0.92);
  --about-card-fiber-dark: rgba(114, 98, 77, 0.024);
  --about-card-fiber-light: rgba(255, 255, 255, 0.14);
  --about-card-shadow: 0 20px 36px rgba(54, 35, 21, 0.14);
}

body.about-inverted .paper-palette-bg {
  background-image: none;
}

body.about-inverted .hw-about,
body.about-inverted .hw-why,
body.about-inverted .hw-details,
body.about-inverted .hw-packages,
body.about-inverted .hw-process,
body.about-inverted .hw-payments,
body.about-inverted .hw-faq {
  background: var(--logo-green);
}

body.about-inverted .hw-about-card,
body.about-inverted .hw-why-panel,
body.about-inverted .hw-details-card,
body.about-inverted .hw-package-card,
body.about-inverted .hw-payments-grid > div,
body.about-inverted .hw-faq-list > div,
body.about-inverted .hw-step > div {
  background-color: var(--about-card-base);
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(229, 218, 200, 0.14)),
    repeating-linear-gradient(
      0deg,
      var(--about-card-fiber-dark) 0 1px,
      transparent 1px 4px
    ),
    repeating-linear-gradient(
      90deg,
      var(--about-card-fiber-light) 0 1px,
      transparent 1px 3px
    );
  border: 1px solid var(--about-card-border);
  border-radius: 14px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.28),
    var(--about-card-shadow);
  color: #4a2f1d;
}

body.about-inverted .hw-details-card,
body.about-inverted .hw-payments-grid > div,
body.about-inverted .hw-faq-list > div,
body.about-inverted .hw-step > div {
  padding: clamp(22px, 3vw, 30px);
}

body.about-inverted .hw-package-card {
  margin: var(--about-space-sm) var(--about-inline) 0;
  padding-bottom: var(--about-space-md);
}

body.about-inverted .hw-step {
  align-items: stretch;
}

body.about-inverted .hw-about-image,
body.about-inverted .hw-why-photo,
body.about-inverted .hw-package-banner,
body.about-inverted .hw-payments-media,
body.about-inverted .hw-invest-media {
  background: var(--paper);
  border: 1px solid rgba(74, 47, 29, 0.18);
  color: #4a2f1d;
}

body.about-inverted .hw-outro {
  background: var(--logo-green);
  color: #4a2f1d;
}

/* Revert the first about blocks to their previous flat style */
body.about-inverted .hw-about .hw-about-card {
  background: var(--paper);
  background-image: none;
  border: 1px solid rgba(74, 47, 29, 0.18);
  border-radius: 0;
  box-shadow: none;
}

body.about-inverted .hw-why .hw-why-panel {
  background: var(--logo-green);
  background-image: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

body.services-page {
  --services-paper-base: #f6f4ef;
  --services-paper-border: rgba(210, 197, 176, 0.9);
  --services-paper-fiber-dark: rgba(113, 102, 87, 0.026);
  --services-paper-fiber-light: rgba(255, 255, 255, 0.12);
}

body.services-page .paper-palette-bg {
  position: relative;
  background-color: var(--logo-green) !important;
  background-image: none;
}

body.services-page .process-content,
body.services-page .service-card,
body.services-page .faq-list,
body.services-page .gallery-item,
body.services-page .gallery-track,
body.services-page .follow-mark,
body.services-page .social-item {
  background-color: var(--services-paper-base);
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(214, 197, 171, 0.16)),
    repeating-linear-gradient(
      0deg,
      var(--services-paper-fiber-dark) 0 1px,
      transparent 1px 4px
    ),
    repeating-linear-gradient(
      90deg,
      var(--services-paper-fiber-light) 0 1px,
      transparent 1px 3px
    );
  border: 1px solid var(--services-paper-border);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

body.services-page .process-content {
  padding: clamp(26px, 4vw, 44px);
}

body.services-page .process-timeline::before {
  background: rgba(224, 210, 188, 0.95);
}

body.services-page .process-step .dot {
  background: #eee4d4;
  border: 1px solid rgba(103, 82, 57, 0.22);
}

body.services-page .service-card {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.34),
    0 18px 36px rgba(74, 47, 29, 0.09);
}

body.services-page .service-block {
  border-left: 3px solid rgba(203, 188, 165, 0.95);
  padding: 10px 14px 10px 18px;
  background: rgba(250, 248, 243, 0.75);
}

body.services-page .service-block + .service-block {
  margin-top: 18px;
}

body.services-page .faq-list {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

body.services-page .faq-item + .faq-panel {
  border-bottom: 1px solid rgba(210, 197, 176, 0.8);
}

body.services-page .faq-icon {
  color: rgba(143, 118, 86, 0.95);
}

body.services-page .gallery-track {
  padding: 10px;
}

body.services-page .gallery-item {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

body.services-page .follow-mark,
body.services-page .social-item {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

body.services-page .follow.paper-texture .follow-mark {
  border: 0;
  box-shadow: none;
  background-image: none;
}

body.services-page .services-single {
  background: #a7a79d;
}

body.services-page .services-single-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 5.2 / 1;
  min-height: clamp(185px, 18vw, 285px);
  overflow: hidden;
}

body.services-page .services-single-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1) contrast(1.04) brightness(0.82);
}

body.services-page .services-single-hero h1 {
  margin: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: rgba(248, 246, 242, 0.9);
  font-family: var(--font-carefree-extra-light);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(76px, 9vw, 156px);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

body.services-page .services-single-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.58);
}

body.services-page .services-single-card {
  min-height: clamp(460px, 43vw, 680px);
  padding: clamp(30px, 3.2vw, 62px) clamp(26px, 2.2vw, 46px) clamp(26px, 2.2vw, 42px);
  text-align: center;
  color: #f3f1e9;
}

body.services-page .services-single-card + .services-single-card {
  border-left: 1px solid rgba(255, 255, 255, 0.62);
}

body.services-page .services-single-card h2 {
  margin: 0 0 clamp(20px, 2.2vw, 36px);
  font-family: var(--font-carefree-extra-light);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(58px, 4.8vw, 92px);
  line-height: 0.9;
  letter-spacing: 0;
  color: #f6f4ec;
}

body.services-page .services-single-card p {
  margin: 0 auto;
  max-width: 34ch;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(14px, 1.14vw, 30px);
  line-height: 1.38;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: #f4f1e8;
}

body.services-page .services-single-card h3 {
  margin: clamp(20px, 2vw, 30px) 0 clamp(8px, 0.9vw, 14px);
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(14px, 1.1vw, 19px);
  line-height: 1.35;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: #f4f1e8;
}

body.services-page .services-single-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

body.services-page .services-single-card li {
  margin: 0;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(14px, 1.1vw, 19px);
  line-height: 1.38;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: #f4f1e8;
}

body.services-page .services-single-card li::before {
  content: "-";
}

@media (max-width: 900px) {
  body.services-page .services-single-hero {
    min-height: clamp(130px, 30vw, 200px);
    aspect-ratio: 5.2 / 1;
  }

  body.services-page .services-single-hero h1 {
    font-size: clamp(44px, 11vw, 86px);
  }

  body.services-page .services-single-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.services-page .services-single-card {
    min-height: clamp(320px, 86vw, 460px);
    padding: clamp(14px, 2.8vw, 22px) clamp(8px, 1.8vw, 14px) clamp(14px, 3vw, 24px);
  }

  body.services-page .services-single-card + .services-single-card {
    border-left: 1px solid rgba(255, 255, 255, 0.62);
    border-top: 0;
  }

  body.services-page .services-single-card h2 {
    font-size: clamp(28px, 6.8vw, 46px);
    margin-bottom: clamp(10px, 1.8vw, 18px);
  }

  body.services-page .services-single-card p,
  body.services-page .services-single-card h3,
  body.services-page .services-single-card li {
    font-size: clamp(8.8px, 2.25vw, 11.6px);
    line-height: 1.28;
  }

  body.services-page .services-single-card p {
    max-width: 18.5ch;
  }
}

body.service-flow-page #page {
  background: #e7e6e2;
}

body.service-flow-page .service-flow-main {
  background: #e7e6e2;
  min-height: calc(100svh - 108px);
  padding: clamp(72px, 8vw, 116px) 0 clamp(84px, 9vw, 126px);
}

body.service-flow-page .service-flow-wrap {
  width: min(1680px, 96vw);
  margin: 0 auto;
}

body.service-flow-page .service-flow-title {
  margin: 0;
  text-align: center;
  font-family: var(--font-carefree-extra-light);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(82px, 7.5vw, 138px);
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #9da398;
}

body.service-flow-page .service-flow-track {
  --step-gap-x: clamp(22px, 2.4vw, 44px);
  --step-gap-y: clamp(54px, 6vw, 90px);
  --line-color: rgba(156, 160, 152, 0.7);
  --connector-h: clamp(40px, 3.4vw, 56px);
  position: relative;
  margin-top: clamp(34px, 4vw, 56px);
  display: grid;
  grid-template-columns: repeat(var(--steps), minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(clamp(220px, 18vw, 320px), 1fr));
  column-gap: var(--step-gap-x);
  row-gap: var(--step-gap-y);
}

body.service-flow-page .service-flow-track::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  border-top: 1px solid var(--line-color);
  transform: translateY(-50%);
}

body.service-flow-page .service-flow-step {
  position: relative;
  max-width: 360px;
  min-height: clamp(220px, 18vw, 320px);
}

body.service-flow-page .service-flow-step.is-top {
  grid-row: 1;
  align-self: end;
  padding-bottom: clamp(22px, 2vw, 32px);
}

body.service-flow-page .service-flow-step.is-bottom {
  grid-row: 2;
  align-self: start;
  padding-top: clamp(22px, 2vw, 32px);
}

body.service-flow-page .service-flow-step::after {
  content: "";
  position: absolute;
  left: 50%;
  width: clamp(18px, 1.2vw, 26px);
  height: var(--connector-h);
  background: #9ba395;
  transform: translateX(-50%);
}

body.service-flow-page .service-flow-step.is-top::after {
  bottom: calc(-1 * var(--step-gap-y) / 2);
  clip-path: polygon(50% 0, 100% 26%, 100% 100%, 0 100%, 0 26%);
}

body.service-flow-page .service-flow-step.is-bottom::after {
  top: calc(-1 * var(--step-gap-y) / 2);
  clip-path: polygon(0 0, 100% 0, 100% 74%, 50% 100%, 0 74%);
}

body.service-flow-page .service-flow-step h2 {
  margin: 0 0 10px;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(26px, 1.8vw, 46px);
  line-height: 1.08;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  color: #2f2f2f;
}

body.service-flow-page .service-flow-step p {
  margin: 0;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(17px, 1.25vw, 33px);
  line-height: 1.12;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: #2b2b2b;
}

@media (max-width: 1200px) {
  body.service-flow-page .service-flow-track {
    --step-gap-x: 16px;
  }
}

@media (max-width: 980px) {
  body.service-flow-page .service-flow-main {
    min-height: auto;
    padding: 28px 0 48px;
  }

  body.service-flow-page .service-flow-wrap {
    width: min(100%, 96vw);
    padding: 0;
  }

  body.service-flow-page .service-flow-title {
    font-size: clamp(44px, 8.6vw, 70px);
  }

  body.service-flow-page .service-flow-track {
    --step-gap-x: clamp(6px, 1.2vw, 10px);
    --step-gap-y: clamp(26px, 3.8vw, 42px);
    --connector-h: clamp(20px, 2.6vw, 30px);
    margin-top: clamp(16px, 2.8vw, 28px);
    width: 100%;
    min-width: 0;
    padding: 0;
    grid-template-columns: repeat(var(--steps), minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(clamp(120px, 16vw, 170px), 1fr));
    column-gap: var(--step-gap-x);
    row-gap: var(--step-gap-y);
  }

  body.service-flow-page .service-flow-track::before {
    display: block;
  }

  body.service-flow-page .service-flow-step,
  body.service-flow-page .service-flow-step.is-top,
  body.service-flow-page .service-flow-step.is-bottom {
    max-width: none;
    min-height: clamp(120px, 16vw, 170px);
    padding-left: 0;
  }

  body.service-flow-page .service-flow-step.is-top {
    padding-top: 0;
    padding-bottom: 14px;
  }

  body.service-flow-page .service-flow-step.is-bottom {
    padding-top: 14px;
    padding-bottom: 0;
  }

  body.service-flow-page .service-flow-step::after {
    width: clamp(10px, 1.5vw, 14px);
  }

  body.service-flow-page .service-flow-step h2 {
    margin-bottom: 6px;
    font-size: clamp(13px, 1.45vw, 18px);
  }

  body.service-flow-page .service-flow-step p {
    font-size: clamp(10px, 1.1vw, 14px);
    line-height: 1.1;
  }
}

@media (max-width: 600px) {
  body.service-flow-page .service-flow-main {
    padding: 22px 0 40px;
  }

  body.service-flow-page .service-flow-wrap {
    width: min(100%, 95vw);
  }

  body.service-flow-page .service-flow-title {
    font-size: clamp(34px, 9.8vw, 46px);
  }

  body.service-flow-page .service-flow-track {
    --step-gap-x: 4px;
    --step-gap-y: 22px;
    --connector-h: 18px;
    grid-template-columns: repeat(var(--steps), minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(104px, 1fr));
    padding: 0;
  }

  body.service-flow-page .service-flow-step,
  body.service-flow-page .service-flow-step.is-top,
  body.service-flow-page .service-flow-step.is-bottom {
    max-width: none;
    min-height: 104px;
    padding-left: 0;
  }

  body.service-flow-page .service-flow-step.is-top {
    padding-top: 0;
    padding-bottom: 10px;
  }

  body.service-flow-page .service-flow-step.is-bottom {
    padding-top: 10px;
    padding-bottom: 0;
  }

  body.service-flow-page .service-flow-step h2 {
    font-size: clamp(10px, 2.5vw, 13px);
    margin-bottom: 4px;
  }

  body.service-flow-page .service-flow-step p {
    font-size: clamp(8px, 1.9vw, 10px);
    line-height: 1.08;
  }
}

body.inquire-form-page {
  background: var(--logo-green);
  color: #1f1f1f;
  text-transform: none;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
}

body.inquire-form-page #page {
  background: var(--logo-green);
}

body.inquire-form-page .inquire-main {
  background: #d5d3cd;
}

body.inquire-form-page .inquire-layout {
  min-height: calc(100svh - 108px);
  display: grid;
  grid-template-columns: minmax(360px, 43%) minmax(420px, 57%);
}

body.inquire-form-page .inquire-photo-panel {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: #8e877d;
}

body.inquire-form-page .inquire-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

body.inquire-form-page .inquire-photo-title {
  position: relative;
  z-index: 1;
  margin: clamp(34px, 4.2vw, 62px) 0 0 clamp(24px, 4vw, 52px);
  color: rgba(246, 244, 239, 0.98);
  font-family: var(--font-carefree-extra-light);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(54px, 6.1vw, 110px);
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: none;
}

body.inquire-form-page .inquire-form-panel {
  background: #d5d3cd;
  display: block;
}

body.inquire-form-page .inquire-form-wrap {
  width: min(100%, 910px);
  margin: 0 auto;
  padding: clamp(34px, 4vw, 62px) clamp(32px, 4vw, 58px) clamp(24px, 3vw, 44px);
}

body.inquire-form-page .inquire-form-wrap h2 {
  margin: 0 0 clamp(18px, 2.2vw, 30px);
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  font-size: clamp(44px, 4.8vw, 72px);
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(48, 48, 46, 0.92);
}

body.inquire-form-page .inquire-form {
  display: grid;
  gap: clamp(10px, 1.2vw, 16px);
}

body.inquire-form-page .inquire-field {
  display: grid;
  gap: 6px;
}

body.inquire-form-page .inquire-field span,
body.inquire-form-page .inquire-fieldset legend {
  margin: 0;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 1.28vw, 28px);
  letter-spacing: 0;
  text-transform: none;
  color: rgba(30, 30, 30, 0.94);
}

body.inquire-form-page .inquire-field input,
body.inquire-form-page .inquire-field textarea {
  width: 100%;
  background: #f8f8f8;
  border: 0;
  border-radius: 0;
  color: #1d1d1d;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(15px, 1.1vw, 22px);
  letter-spacing: 0;
  text-transform: none;
}

body.inquire-form-page .inquire-field input {
  height: clamp(30px, 2.35vw, 46px);
  padding: 0 10px;
}

body.inquire-form-page .inquire-field textarea {
  min-height: clamp(128px, 15vw, 210px);
  resize: vertical;
  padding: 10px;
}

body.inquire-form-page .inquire-fieldset {
  margin: 0;
  border: 0;
  padding: 0;
  min-width: 0;
}

body.inquire-form-page .inquire-service {
  display: grid;
  gap: 8px;
}

body.inquire-form-page .inquire-service label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.15vw, 24px);
  color: #222220;
  text-transform: uppercase;
  letter-spacing: 0;
}

body.inquire-form-page .inquire-trip-type {
  display: grid;
  gap: 10px;
}

body.inquire-form-page .inquire-trip-type legend {
  margin-bottom: 2px;
}

body.inquire-form-page .inquire-trip-type label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.15vw, 23px);
  color: #232321;
  text-transform: none;
  letter-spacing: 0;
}

body.inquire-form-page .inquire-trip-type {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.inquire-form-page .inquire-service input[type="radio"],
body.inquire-form-page .inquire-trip-type input[type="radio"] {
  width: clamp(14px, 1.08vw, 20px);
  height: clamp(14px, 1.08vw, 20px);
  margin: 0;
  accent-color: #7a776f;
}

@media (max-width: 1200px) {
  body.inquire-form-page .inquire-form-wrap h2 {
    font-size: clamp(36px, 4.1vw, 56px);
  }
}

@media (max-width: 980px) {
  body.inquire-form-page .inquire-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  body.inquire-form-page .inquire-photo-panel {
    min-height: 56vh;
  }

  body.inquire-form-page .inquire-photo-title {
    font-size: clamp(44px, 12vw, 70px);
    margin: 26px 0 0 20px;
  }

  body.inquire-form-page .inquire-form-wrap {
    padding: 24px 20px 28px;
  }

  body.inquire-form-page .inquire-form-wrap h2 {
    font-size: clamp(30px, 8.4vw, 44px);
    margin-bottom: 14px;
  }

  body.inquire-form-page .inquire-field span,
  body.inquire-form-page .inquire-fieldset legend,
  body.inquire-form-page .inquire-service label,
  body.inquire-form-page .inquire-trip-type label {
    font-size: 20px;
  }

  body.inquire-form-page .inquire-field input {
    height: 40px;
  }

  body.inquire-form-page .inquire-trip-type {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

body.hotel-page .paper-palette-bg {
  background-color: var(--logo-green) !important;
  background-image: none;
}

.review-slide {
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
  position: absolute;
  inset: 36px;
}

.review-slide.is-active {
  opacity: 1;
  transform: translateY(0);
  position: absolute;
}

.review-slide p {
  line-height: 1.8;
  margin-top: 0;
  text-transform: none;
  letter-spacing: 0;
  font-size: clamp(18px, 1.6vw, 30px);
  text-align: center;
}

.review-slide h3 {
  font-family: "Carefree", "Georgia", serif;
  font-size: clamp(22px, 2.5vw, 42px);
  margin-bottom: 0;
  text-transform: none;
  letter-spacing: 0.02em;
  font-style: italic;
  text-align: center;
}

.gallery {
  padding: 60px 0;
  background: var(--logo-green);
}

.gallery-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
}

.gallery-item {
  height: 220px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  scroll-snap-align: center;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.gallery-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
}

.gallery-dots button.is-active {
  background: var(--cream);
}

.follow {
  padding: 60px 0 80px;
  background: var(--logo-green);
}

.follow-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
}

.follow-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.2em;
}

.follow-mark {
  width: 190px;
  height: 120px;
  background: var(--logo-green);
  display: grid;
  place-items: center;
  margin: 14px 0;
}

.follow-mark.follow-mark-plain {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.follow-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
}

.follow-mark-text {
  display: inline-block;
  width: 100%;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 0.86;
  padding: 0 10px;
}

.follow-social h3 {
  font-family: "Carefree", "Georgia", serif;
  font-size: 26px;
  margin-top: 0;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(78px, 94px));
  gap: 6px;
  justify-content: start;
}

.social-item {
  height: 78px;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  color: #4a2f1d;
  border: 1px solid rgba(74, 47, 29, 0.22);
  border-radius: 14px;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.social-item:hover,
.social-item:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.2);
}

.social-item:focus-visible {
  outline: 2px solid rgba(74, 47, 29, 0.45);
  outline-offset: 2px;
}

.social-item .bi {
  font-size: 28px;
  line-height: 1;
}

.footer {
  background: var(--logo-green);
  color: #efeee8;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.1em;
  padding: 20px 0 30px;
}

.hw-cover {
  position: relative;
  background: var(--logo-green);
  min-height: 520px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hw-cover-media {
  position: absolute;
  inset: 0;
  background: transparent;
  display: grid;
  place-items: center;
  color: rgba(74, 47, 29, 0.5);
  font-family: "Carefree", "Georgia", serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hw-cover-overlay {
  position: relative;
  text-align: center;
  color: #4a2f1d;
  z-index: 1;
}

.hw-eyebrow {
  margin: 0;
  font-style: italic;
  letter-spacing: 0.08em;
}

.hw-logo {
  margin: 10px 0 0;
  font-family: "Carefree", "Georgia", serif;
  font-size: clamp(48px, 10vw, 120px);
  font-weight: 400;
  line-height: 0.9;
}

.hw-logo-message {
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 0.95;
  font-size: clamp(42px, 7.4vw, 92px);
}

.hw-about {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 0;
  background: var(--paper);
}

.hw-about-image {
  background: rgba(0, 0, 0, 0.15);
  min-height: 420px;
  display: grid;
  place-items: center;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(74, 47, 29, 0.7);
}

.hw-about-card {
  padding: var(--about-space-md);
  color: var(--ink);
  display: grid;
  gap: 12px;
}

.hw-about-card h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: 0.12em;
}

.hw-subtitle {
  margin: 0;
  font-family: "Carefree", "Georgia", serif;
  font-size: 20px;
  color: var(--soft-ink);
}

.hw-about-card p {
  margin: 0;
  line-height: 1.8;
}

.hw-about-summary {
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  text-transform: none;
  letter-spacing: 0;
  gap: 20px;
}

.hw-about-summary p {
  font-family: inherit;
  font-size: clamp(16px, 1.4vw, 24px);
  font-weight: 400;
  line-height: 1.85;
  text-transform: none;
  letter-spacing: 0;
  color: #4a2f1d;
}

.hw-favorites {
  margin-top: 10px;
  font-style: italic;
  color: var(--soft-ink);
}

.hw-favorites span {
  display: block;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 6px;
}

.hw-why {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
}

.hw-why-panel {
  background: var(--logo-green);
  color: #4a2f1d;
  padding: var(--about-space-md);
  display: grid;
  gap: 16px;
}

.hw-why-panel h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: 0.1em;
}

.hw-why-panel p {
  margin: 0;
  line-height: 1.8;
}

.hw-quote {
  font-family: "Carefree", "Georgia", serif;
  font-size: 18px;
  opacity: 0.85;
}

.hw-why-photo {
  background: rgba(0, 0, 0, 0.2);
  min-height: 420px;
  display: grid;
  place-items: center;
  color: rgba(74, 47, 29, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.hw-invest {
  background: var(--logo-green);
  position: relative;
  text-align: center;
  padding: var(--about-space-lg) 0 var(--about-space-md);
  color: #4a2f1d;
}

.hw-invest-media {
  width: min(920px, 90vw);
  height: 320px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hw-invest h2 {
  margin: var(--about-space-sm) 0 0;
  font-family: "Carefree", "Georgia", serif;
  font-size: 36px;
}

.hw-details {
  background: var(--paper);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--about-space-sm);
  padding: var(--about-space-md) var(--about-inline);
}

.hw-details-card h3 {
  margin-top: 0;
  font-size: 20px;
  letter-spacing: 0.1em;
}

.hw-details-card p {
  line-height: 1.8;
  color: var(--ink);
}

.hw-packages {
  background: var(--paper);
  padding: 0 0 var(--about-space-md);
}

.hw-package-banner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  min-height: 240px;
  background: rgba(0, 0, 0, 0.2);
  color: rgba(74, 47, 29, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  place-items: center;
}

.hw-package-banner.split {
  grid-template-columns: 1fr 1fr;
}

.hw-package-title {
  position: absolute;
  font-family: "Carefree", "Georgia", serif;
  font-size: 48px;
  color: #4a2f1d;
  text-transform: none;
  letter-spacing: 0.02em;
}

.hw-package-title.overlay {
  grid-column: 1 / -1;
}

.hw-package-media {
  min-height: 220px;
  width: 100%;
  display: grid;
  place-items: center;
}

.hw-package-card {
  background: var(--paper);
  padding: var(--about-space-md) var(--about-inline) 0;
  color: var(--ink);
}

.hw-package-card h3 {
  font-size: 30px;
  margin-top: 0;
  letter-spacing: 0.06em;
}

.hw-package-card h3 span {
  font-family: "Carefree", "Georgia", serif;
  font-weight: 400;
}

.hw-package-card p {
  line-height: 1.8;
}

.hw-list-title {
  font-style: italic;
  color: var(--soft-ink);
}

.hw-package-card ul {
  margin: 10px 0 0 18px;
  line-height: 1.8;
}

.hw-process {
  background: var(--paper);
  padding: var(--about-space-md) var(--about-inline);
  color: var(--ink);
}

.hw-process h2 {
  text-align: center;
  font-size: 28px;
  letter-spacing: 0.12em;
  margin-top: 0;
  margin-bottom: var(--about-space-sm);
}

.hw-steps {
  display: grid;
  gap: var(--about-space-sm);
}

.hw-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  align-items: start;
}

.hw-step span {
  font-family: "Carefree", "Georgia", serif;
  font-size: 28px;
  color: var(--soft-ink);
}

.hw-step h3 {
  margin: 0 0 6px;
  font-size: 18px;
  letter-spacing: 0.08em;
}

.hw-step p {
  margin: 0;
  line-height: 1.8;
}

.hw-payments {
  background: var(--paper);
  padding-bottom: var(--about-space-md);
}

.hw-payments-media {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 240px;
  background: rgba(0, 0, 0, 0.18);
  color: rgba(74, 47, 29, 0.7);
  place-items: center;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.hw-payments-media h2 {
  position: absolute;
  color: #4a2f1d;
  font-family: "Carefree", "Georgia", serif;
  font-size: 40px;
  text-transform: none;
}

.hw-payments-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--about-space-sm);
  padding: var(--about-space-md) var(--about-inline) 0;
  color: var(--ink);
}

.hw-payments-grid h3 {
  margin-top: 0;
  font-size: 18px;
  letter-spacing: 0.08em;
}

.hw-payments-grid h3 span {
  font-style: italic;
  font-weight: 400;
}

.hw-payments-grid p {
  line-height: 1.8;
}

.hw-payments-grid ul {
  margin: 10px 0 0 18px;
  line-height: 1.8;
}

.hw-faq {
  background: var(--paper);
  padding: var(--about-space-md) var(--about-inline);
  color: var(--ink);
}

.hw-faq h2 {
  text-align: center;
  font-size: 26px;
  letter-spacing: 0.1em;
  margin-top: 0;
  margin-bottom: var(--about-space-sm);
}

.hw-faq-list {
  display: grid;
  gap: var(--about-space-sm);
}

.hw-faq-list h3 {
  margin: 0 0 8px;
  font-family: "Carefree", "Georgia", serif;
  font-size: 20px;
  color: var(--soft-ink);
}

.hw-faq-list p {
  margin: 0;
  line-height: 1.8;
}

.hw-outro {
  background: var(--logo-green);
  color: #4a2f1d;
  padding: var(--about-space-md) 0;
  text-align: center;
}

.hw-outro p {
  font-family: "Carefree", "Georgia", serif;
  font-size: 28px;
  margin: 0 0 20px;
  line-height: 1.4;
}

.hw-outro span {
  font-family: "Carefree", "Georgia", serif;
  font-size: 22px;
  opacity: 0.85;
}

.contact {
  padding: 140px 0 90px;
  background: var(--logo-green);
  color: #4a2f1d;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.1fr) minmax(220px, 0.9fr);
  gap: 40px;
  align-items: start;
}

.contact-card {
  background: rgba(131, 139, 122, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 36px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  margin-top: 75px;
}

.contact-card h1 {
  margin-top: 0;
  font-family: "Carefree", "Georgia", serif;
  font-size: 36px;
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #4a2f1d;
  font-family: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(74, 47, 29, 0.7);
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: transparent;
  color: #4a2f1d;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.contact-placeholder {
  height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  margin-top: 75px;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(131, 139, 122, 0.92);
  color: #4a2f1d;
  display: flex;
  flex-direction: column;
  padding: 40px 24px;
  gap: 20px;
  transform: translateX(100%);
  transition: var(--transition);
  z-index: 20;
  visibility: hidden;
  pointer-events: none;
}

.mobile-nav.is-open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav a {
  color: var(--cream);
  font-size: 20px;
  text-transform: none;
  letter-spacing: 0.2em;
  font-family: var(--font-carefree-extra-light);
  font-style: italic;
  font-weight: 400;
  font-synthesis: none;
}

.close-nav {
  align-self: flex-end;
  background: transparent;
  border: none;
  color: #4a2f1d;
  font-size: 32px;
  cursor: pointer;
}

@media (max-width: 900px) {
  .topnav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .topbar-inner {
    height: 64px;
    padding-left: 160px;
  }

  .brand-mark {
    width: 150px;
    max-width: 150px;
  }

  .hero {
    height: 250px;
  }

  .hero-media {
    height: 200px;
    margin-left: 0;
    width: min(86vw, 620px);
  }

  .about-hero {
    padding: 80px 0 60px;
  }

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

  .about-banner {
    height: 140px;
  }

  .about-portrait {
    height: 220px;
  }

  .advisor-kicker {
    font-size: 12px;
    letter-spacing: 0.2em;
  }

  .advisor-slider {
    padding: 24px;
    min-height: 260px;
  }

  .advisor-slide {
    inset: 24px;
  }

  .process {
    padding: 80px 0 60px;
  }

  .process-title {
    font-size: 36px;
  }

  .process-timeline {
    padding-left: 32px;
  }

  .process-step .dot {
    left: -30px;
  }

  .service-card {
    padding: 36px;
  }

  .service-kicker {
    letter-spacing: 0.2em;
  }

  .faq-header span {
    font-size: 26px;
  }

  .faq-item {
    font-size: 18px;
  }

  .faq-panel.is-open {
    max-height: 320px;
  }

  .portal-hero {
    padding: 80px 0 60px;
  }

  .portal-hero-card {
    padding: 32px;
  }

  .portal-hero-banner {
    height: 140px;
  }

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

  .about-collage {
    min-height: 320px;
    grid-auto-rows: 140px;
  }

  .photo-2 {
    grid-row: 1 / span 2;
  }

  .services-list {
    gap: 0;
  }

  .service-item {
    font-size: 20px;
  }

  .reviews-header h2 {
    font-size: 32px;
  }

  .reviews-header p {
    font-size: 18px;
  }

  .gallery-item {
    height: 160px;
  }

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

  .social-item {
    height: 70px;
  }

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

  .hw-about,
  .hw-why,
  .hw-details,
  .hw-payments-grid {
    grid-template-columns: 1fr;
  }

  .hw-why-panel {
    padding: 40px 24px;
  }

  .hw-about-card,
  .hw-details,
  .hw-process,
  .hw-payments-grid,
  .hw-faq,
  .hw-package-card {
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .hw-invest {
    padding: 90px 0 40px;
  }

  .hw-invest-media {
    height: 220px;
  }

  .hw-package-title {
    font-size: 34px;
  }

  .hw-payments-media {
    grid-template-columns: 1fr;
    min-height: 200px;
  }

  .hw-payments-media h2 {
    font-size: 30px;
  }
}

@media (max-width: 600px) {
  .topbar-inner {
    height: 56px;
    padding-left: 120px;
    padding-right: 16px;
  }

  .brand-mark {
    width: 140px;
    max-width: 140px;
  }

  .hero-media {
    width: min(90vw, 520px);
    margin-left: 0;
  }

  .hw-cover {
    min-height: 360px;
  }

  .hw-logo {
    font-size: clamp(40px, 12vw, 90px);
  }

  .hw-about-card,
  .hw-why-panel,
  .hw-details,
  .hw-process,
  .hw-payments-grid,
  .hw-faq,
  .hw-package-card {
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .hw-invest-media {
    height: 200px;
  }

  .hw-package-title {
    font-size: 28px;
  }

  .contact {
    padding: 120px 0 80px;
  }

  .contact-card,
  .contact-placeholder {
    margin-top: 0;
  }

  .contact-grid {
    gap: 24px;
  }
}

/* Home hero (reference match) */
body.home-hero .topbar,
body.home-hero #page {
  background: var(--logo-green);
}

body.home-hero .topbar {
  position: relative;
  z-index: 5;
  overflow: hidden;
}

body.home-hero .topbar-inner {
  height: 108px;
}

body.home-hero .brand {
  top: calc(50% - 5px);
  left: clamp(14px, 1.7vw, 24px);
  width: calc(clamp(200px, 12.8vw, 236px) - 35px);
  height: auto;
  transform: translateY(-50%);
  line-height: 0;
  z-index: 6;
}

body.home-hero .brand-mark {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  transform: none;
}

body.home-hero .topnav {
  color: var(--cream);
  font-size: clamp(21px, 1.7vw, 27px);
  margin-top: 0;
  position: relative;
  z-index: 9;
}

body.home-hero .topnav a {
  text-transform: lowercase;
}

body.home-hero .menu-toggle {
  color: var(--cream);
  position: relative;
  z-index: 9;
}

body.home-hero .hero {
  height: auto;
  display: block;
  background: var(--logo-green);
  position: relative;
  z-index: 8;
}

body.home-hero .hero-media {
  width: 100vw;
  max-width: 100vw;
  aspect-ratio: 2.2 / 1;
  height: auto;
  max-height: none;
  margin: 0 auto;
  border: 0;
  position: relative;
  overflow: hidden;
  background: transparent;
}

body.home-hero .hero-photo {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center center;
  image-rendering: auto;
}

body.home-hero .media-placeholder {
  display: none;
}

body.home-hero .hero-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  color: #f4f3ef;
  font-family: "Carefree", "Georgia", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(37px, 4.2vw, 82px);
  letter-spacing: 0.02em;
  text-transform: none;
  text-align: center;
  white-space: nowrap;
  z-index: 2;
  pointer-events: none;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

body.home-hero .about {
  padding: clamp(120px, 9vw, 170px) 0 clamp(84px, 7vw, 124px);
  background: #dddcd8;
  color: #4b4945;
}

body.home-hero .about.paper-texture {
  background-image: none;
  box-shadow: none;
}

body.home-hero .about.paper-texture::before {
  display: none;
}

body.home-hero .about .container {
  width: min(1660px, 99vw);
}

body.home-hero .about-grid {
  grid-template-columns: minmax(520px, 0.92fr) minmax(300px, 0.6fr);
  gap: clamp(0px, 0.8vw, 16px);
  align-items: center;
}

body.home-hero .about-collage {
  position: relative;
  min-height: clamp(620px, 52vw, 920px);
}

body.home-hero .about-photo {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.home-hero .about-photo-top {
  width: clamp(190px, 14vw, 290px);
  height: clamp(290px, 21vw, 430px);
  left: 0;
  top: clamp(8px, 0.8vw, 20px);
  z-index: 1;
}

body.home-hero .about-photo-main {
  width: clamp(360px, 29vw, 640px);
  height: clamp(520px, 43vw, 860px);
  left: clamp(270px, 14.8vw, 390px);
  top: 0;
  z-index: 2;
}

body.home-hero .about-photo-bottom {
  width: clamp(240px, 19vw, 420px);
  height: clamp(320px, 25vw, 500px);
  left: clamp(90px, 7vw, 160px);
  top: clamp(330px, 27vw, 560px);
  z-index: 3;
}

body.home-hero .about-copy {
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--font-sabon);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(15px, 1.05vw, 21px);
  line-height: 1.36;
  display: flex;
  flex-direction: column;
  color: #4f4d48;
}

@media (min-width: 901px) {
  body.home-hero .about-copy {
    justify-self: start;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: clamp(280px, 21vw, 320px);
    margin-left: 0;
    padding-right: 0;
  }
}

body.home-hero .about-copy p {
  margin: 0 0 clamp(26px, 2.3vw, 44px);
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
}

body.home-hero .about-copy p:last-of-type {
  margin-bottom: clamp(28px, 2.8vw, 50px);
}

body.home-hero .about-cta {
  margin-top: 0;
  align-self: center;
  min-width: clamp(180px, 14vw, 310px);
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: #54574b;
  color: #eceae3;
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--font-sabon);
  font-size: clamp(24px, 1.75vw, 36px);
  line-height: 1;
  padding: clamp(11px, 1vw, 18px) clamp(28px, 2.4vw, 44px);
}

body.home-hero .services {
  padding: 0;
  background: var(--logo-green);
}

body.home-hero .services.paper-texture {
  background-image: none;
  box-shadow: none;
}

body.home-hero .services.paper-texture::before {
  display: none;
}

body.home-hero .services .container {
  width: min(1660px, 100vw);
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0;
}

body.home-hero .services-heading {
  margin: 0;
  border-right: 0;
  color: #ecebe4;
  font-family: var(--font-carefree);
  font-style: italic;
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(58px, 5.1vw, 104px);
  letter-spacing: 0.02em;
  font-synthesis: none;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  display: grid;
  place-items: center;
  min-height: clamp(280px, 20.5vw, 423px);
}

body.home-hero .services .section-line {
  display: none;
}

body.home-hero .services-list {
  border-top: 0;
  border-bottom: 0;
  border-left: 1px solid rgba(235, 237, 229, 0.6);
}

body.home-hero .service-item {
  min-height: clamp(86px, 6.3vw, 134px);
  padding: 0 clamp(34px, 4vw, 66px);
  border-bottom: 1px solid rgba(235, 237, 229, 0.58);
  color: #ecebe4;
  font-family: var(--font-carefree);
  font-style: italic;
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(27px, 2.8vw, 53px);
  letter-spacing: 0.02em;
  line-height: 1;
  font-synthesis: none;
}

body.home-hero .service-item:last-child {
  border-bottom: 0;
}

body.home-hero .service-item:hover,
body.home-hero .service-item:focus-visible {
  background: transparent;
  transform: none;
  padding-left: clamp(34px, 4vw, 66px);
}

body.home-hero .service-icon {
  display: none;
}

body.home-hero .reviews {
  position: relative;
  padding: clamp(44px, 4vw, 72px) 0 clamp(64px, 6vw, 98px);
  background: url("assets/imagen4.jpg") center center / cover no-repeat;
  color: #f4f3ef;
}

body.home-hero .reviews::before {
  display: none;
}

body.home-hero .reviews .container {
  width: min(1660px, 99vw);
}

body.home-hero .reviews-header {
  width: 100%;
  margin: 0 0 clamp(28px, 2.3vw, 40px);
  padding: 0 clamp(24px, 4vw, 78px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
}

body.home-hero .reviews-title-main {
  margin: 0;
  color: #f4f3ef;
  font-family: var(--font-carefree-extra-light);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(62px, 4.8vw, 104px);
  letter-spacing: 0;
  text-transform: none;
  font-synthesis: none;
}

body.home-hero .reviews-title-accent {
  margin: 0;
  color: #f4f3ef;
  font-family: var(--font-carefree-extra-light);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(62px, 4.8vw, 104px);
  text-transform: none;
  letter-spacing: 0;
  font-synthesis: none;
}

body.home-hero .reviews-slider {
  width: min(960px, 78vw);
  min-height: 0;
  margin: 0 auto;
  padding: clamp(44px, 3.6vw, 64px) clamp(46px, 4vw, 72px) clamp(36px, 3.2vw, 50px);
  background: rgba(240, 238, 232, 0.9);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: #222328;
  overflow: hidden;
}

body.home-hero .review-slide {
  display: none;
  position: static;
  inset: auto;
  opacity: 0;
  transform: translateY(8px);
}

body.home-hero .review-slide.is-active {
  display: block;
  opacity: 1;
  transform: translateY(0);
  animation: review-card-enter 560ms ease;
}

body.home-hero .review-slide p {
  margin: 0;
  color: #1f2025;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  text-align: center;
  font-size: clamp(17px, 1.2vw, 25px);
  line-height: 1.38;
  font-synthesis: none;
}

body.home-hero .review-slide h3 {
  margin-top: clamp(26px, 2.6vw, 42px);
  margin-bottom: 0;
  color: #18191d;
  text-align: center;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(17px, 1.2vw, 25px);
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.38;
  font-synthesis: none;
}

@keyframes review-card-enter {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body.home-hero .reviews-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border: 1px solid rgba(31, 32, 37, 0.24);
  border-radius: 999px;
  background: rgba(240, 238, 232, 0.64);
  color: #1f2025;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 3;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

body.home-hero .reviews-arrow span {
  font-size: 24px;
  line-height: 1;
}

body.home-hero .reviews-arrow-prev {
  left: clamp(10px, 1vw, 18px);
}

body.home-hero .reviews-arrow-next {
  right: clamp(10px, 1vw, 18px);
}

body.home-hero .reviews-arrow:hover,
body.home-hero .reviews-arrow:focus-visible {
  background: rgba(240, 238, 232, 0.86);
  border-color: rgba(31, 32, 37, 0.44);
  transform: translateY(-50%) scale(1.04);
}

body.home-hero .gallery {
  padding: 0;
  background: var(--logo-green);
  position: relative;
  z-index: 1;
  margin-bottom: -1px;
}

body.home-hero .gallery.paper-texture {
  background-image: none;
  box-shadow: none;
}

body.home-hero .gallery.paper-texture::before {
  display: none;
}

body.home-hero .gallery .container {
  width: min(1660px, 99vw);
}

body.home-hero .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

body.home-hero .gallery-photo {
  margin: 0;
  height: clamp(420px, 33vw, 700px);
}

body.home-hero .gallery-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

body.home-hero .follow {
  padding: clamp(14px, 1.2vw, 22px) 0 clamp(6px, 0.9vw, 16px);
  background: var(--logo-green);
  position: relative;
  z-index: 2;
  overflow: visible;
}

body.home-hero .follow.paper-texture {
  background-image: none;
  box-shadow: none;
}

body.home-hero .follow.paper-texture::before {
  display: none;
}

body.home-hero .follow .container {
  width: min(1660px, 99vw);
}

body.home-hero .follow-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
}

body.home-hero .follow-brand-row {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(20px, 2vw, 36px);
  margin-top: clamp(20px, 1.8vw, 30px);
}

body.home-hero .follow-rule {
  display: block;
  height: 1px;
  background: rgba(242, 241, 235, 0.8);
}

body.home-hero .follow-mark {
  width: auto;
  height: auto;
  margin: 0;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(16px, 1.6vw, 30px);
  background: var(--logo-green);
  color: #efeee8;
  text-transform: none;
  letter-spacing: 0;
  position: relative;
  z-index: 3;
  transform: translateY(clamp(-41px, -2.9vw, -19px));
}

body.home-hero .follow-mark-wordmark {
  line-height: 0;
}

body.home-hero .follow-mark-image {
  display: block;
  width: clamp(166px, 11.4vw, 236px);
  height: auto;
}

body.home-hero .follow-word-top {
  display: block;
  font-family: var(--font-carefree);
  font-style: italic;
  font-size: clamp(62px, 4.8vw, 102px);
  line-height: 0.72;
}

body.home-hero .follow-word-bottom {
  display: block;
  font-family: var(--font-carefree);
  font-style: italic;
  font-size: clamp(52px, 4vw, 86px);
  line-height: 0.74;
}

body.home-hero .follow-content {
  width: min(1480px, 94vw);
  margin-top: clamp(8px, 1vw, 16px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
}

body.home-hero .follow-links {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: start;
  margin-left: clamp(170px, 11.5vw, 280px);
  gap: clamp(8px, 0.8vw, 16px);
  text-align: center;
}

body.home-hero .follow-links a {
  color: rgba(239, 238, 232, 0.94);
  font-family: var(--font-carefree-extra-light);
  font-style: italic;
  font-weight: 400;
  font-synthesis: none;
  font-size: var(--home-footer-text-size);
  line-height: 0.9;
  text-transform: lowercase;
  letter-spacing: 0;
}

body.home-hero .follow-center-info {
  align-self: start;
  justify-self: center;
  text-align: center;
  color: #efeee8;
  font-family: var(--font-carefree-extra-light);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  font-size: var(--home-footer-text-size);
  line-height: 0.96;
  letter-spacing: 0;
  font-synthesis: none;
  margin-top: clamp(18px, 1.6vw, 28px);
}

body.home-hero .follow-center-info p {
  margin: 0;
}

body.home-hero .follow-center-info p + p {
  margin-top: clamp(8px, 0.7vw, 14px);
}

body.home-hero .follow-instagram {
  justify-self: end;
  margin-right: clamp(58px, 5.8vw, 140px);
  margin-top: clamp(22px, 2vw, 44px);
  text-align: right;
  color: #efeee8;
  text-transform: none;
}

body.home-hero .follow-instagram p {
  margin: 0;
  font-family: var(--font-carefree-extra-light);
  font-style: italic;
  font-weight: 400;
  font-size: var(--home-footer-text-size);
  line-height: 0.96;
  letter-spacing: 0;
  font-synthesis: none;
  color: inherit;
}

body.home-hero .follow-instagram a {
  display: block;
  margin-top: clamp(6px, 0.6vw, 12px);
  font-family: var(--font-carefree-extra-light);
  font-style: italic;
  font-weight: 400;
  font-size: var(--home-footer-text-size);
  line-height: 0.96;
  letter-spacing: 0;
  font-synthesis: none;
  color: inherit;
}

body.home-hero .footer {
  font-size: var(--home-footer-text-size);
}

@media (max-width: 900px) {
  body.home-hero {
    --home-footer-text-size: clamp(23px, 4.4vw, 31px);
  }

  body.home-hero .topbar-inner {
    height: 88px;
    padding-left: 0;
    padding-right: 18px;
  }

  body.home-hero .brand {
    left: 12px;
    width: 149px;
  }

  body.home-hero .hero {
    height: auto;
  }

  body.home-hero .hero-media {
    width: 100vw;
    max-width: 100vw;
    aspect-ratio: 2.15 / 1;
    height: auto;
    margin: 0 auto;
  }

  body.home-hero .about {
    padding-top: 80px;
    padding-bottom: 68px;
  }

  body.home-hero .about .container {
    width: min(960px, 95vw);
  }

  body.home-hero .about-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  body.home-hero .about-collage {
    width: min(640px, 92vw);
    min-height: 640px;
    margin: 0 auto;
  }

  body.home-hero .about-photo-top {
    width: clamp(160px, 28vw, 230px);
    height: clamp(245px, 40vw, 340px);
    top: 0;
    left: 0;
  }

  body.home-hero .about-photo-main {
    width: clamp(300px, 55vw, 430px);
    height: clamp(430px, 72vw, 620px);
    left: clamp(120px, 22vw, 210px);
    top: 0;
  }

  body.home-hero .about-photo-bottom {
    width: clamp(220px, 38vw, 320px);
    height: clamp(280px, 48vw, 400px);
    left: clamp(52px, 11vw, 120px);
    top: clamp(290px, 47vw, 420px);
  }

  body.home-hero .about-copy {
    font-size: clamp(17px, 2.3vw, 22px);
  }

  body.home-hero .about-copy p:last-of-type {
    margin-bottom: 30px;
  }

  body.home-hero .about-cta {
    font-size: clamp(22px, 3.2vw, 30px);
    min-width: 200px;
  }

  body.home-hero .services .container {
    grid-template-columns: 88px 1fr;
  }

  body.home-hero .services-heading {
    font-size: clamp(42px, 7vw, 68px);
    min-height: 299px;
  }

  body.home-hero .service-item {
    min-height: 81px;
    font-size: clamp(21px, 3.6vw, 33px);
    padding-left: 24px;
    padding-right: 24px;
  }

  body.home-hero .service-item:hover,
  body.home-hero .service-item:focus-visible {
    padding-left: 24px;
  }

  body.home-hero .reviews {
    padding-top: 34px;
    padding-bottom: 50px;
  }

  body.home-hero .reviews-header {
    padding-left: 18px;
    padding-right: 18px;
    margin-bottom: 22px;
  }

  body.home-hero .reviews-title-main {
    font-size: clamp(40px, 6.8vw, 62px);
  }

  body.home-hero .reviews-title-accent {
    font-size: clamp(44px, 7.4vw, 68px);
  }

  body.home-hero .reviews-slider {
    width: min(840px, 92vw);
    padding: 34px 28px 28px;
  }

  body.home-hero .review-slide p {
    font-size: clamp(17px, 2.3vw, 22px);
  }

  body.home-hero .review-slide h3 {
    font-size: clamp(17px, 2.3vw, 22px);
  }

  body.home-hero .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.home-hero .gallery-photo {
    height: clamp(320px, 42vw, 440px);
  }

  body.home-hero .follow {
    padding-top: 28px;
    padding-bottom: 78px;
  }

  body.home-hero .follow-brand-row {
    gap: 18px;
  }

  body.home-hero .follow-mark {
    padding-inline: 18px;
  }

  body.home-hero .follow-word-top {
    font-size: clamp(62px, 9vw, 96px);
  }

  body.home-hero .follow-word-bottom {
    font-size: clamp(50px, 7.2vw, 80px);
  }

  body.home-hero .follow-content {
    width: min(760px, 92vw);
    margin-top: 34px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  body.home-hero .follow-links {
    margin-top: 0;
    margin-left: 0;
    justify-self: center;
    align-items: center;
    gap: 8px;
  }

  body.home-hero .follow-links a {
    font-size: var(--home-footer-text-size);
  }

  body.home-hero .follow-center-info {
    margin-top: 0;
    font-size: var(--home-footer-text-size);
  }

  body.home-hero .follow-instagram {
    justify-self: center;
    margin-right: 0;
    margin-top: 0;
    text-align: center;
  }

  body.home-hero .follow-instagram p {
    font-size: var(--home-footer-text-size);
  }

  body.home-hero .follow-instagram a {
    font-size: var(--home-footer-text-size);
  }
}

@media (max-width: 600px) {
  body.home-hero {
    --home-footer-text-size: clamp(17px, 4.8vw, 20px);
  }

  body.home-hero .topbar-inner {
    height: 74px;
    padding-left: 0;
    padding-right: 16px;
  }

  body.home-hero .brand {
    left: 10px;
    width: 111px;
  }

  body.home-hero .hero-media {
    width: 100vw;
    max-width: 100vw;
    aspect-ratio: 2.05 / 1;
    height: auto;
    margin: 0 auto;
  }

  body.home-hero .about {
    padding-top: 62px;
    padding-bottom: 56px;
  }

  body.home-hero .about-collage {
    width: min(95vw, 460px);
    min-height: 510px;
  }

  body.home-hero .about-photo-top {
    width: 136px;
    height: 198px;
  }

  body.home-hero .about-photo-main {
    width: 258px;
    height: 378px;
    left: 95px;
  }

  body.home-hero .about-photo-bottom {
    width: 188px;
    height: 250px;
    left: 40px;
    top: 236px;
  }

  body.home-hero .about-copy {
    font-size: clamp(14px, 4vw, 17px);
    line-height: 1.42;
  }

  body.home-hero .about-copy p {
    margin-bottom: 16px;
  }

  body.home-hero .about-cta {
    width: 150px;
    min-width: 150px;
    font-size: 16px;
  }

  body.home-hero .services .container {
    grid-template-columns: 1fr;
  }

  body.home-hero .services-heading {
    writing-mode: horizontal-tb;
    transform: none;
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(235, 237, 229, 0.58);
    padding: 12px 0;
    font-size: 36px;
  }

  body.home-hero .services-list {
    border-left: 0;
  }

  body.home-hero .service-item {
    min-height: 58px;
    font-size: 17px;
    padding-left: 16px;
    padding-right: 16px;
  }

  body.home-hero .service-item:hover,
  body.home-hero .service-item:focus-visible {
    padding-left: 16px;
  }

  body.home-hero .reviews {
    padding-top: 18px;
    padding-bottom: 24px;
  }

  body.home-hero .reviews-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding-left: 14px;
    padding-right: 14px;
  }

  body.home-hero .reviews-title-main {
    font-size: 30px;
  }

  body.home-hero .reviews-title-accent {
    font-size: 34px;
  }

  body.home-hero .reviews-slider {
    width: min(94vw, 620px);
    padding: 22px 18px 18px;
  }

  body.home-hero .review-slide p {
    font-size: clamp(14px, 4vw, 17px);
    line-height: 1.42;
  }

  body.home-hero .review-slide h3 {
    margin-top: 14px;
    font-size: clamp(14px, 4vw, 17px);
    line-height: 1.42;
  }

  body.home-hero .reviews-arrow {
    width: 28px;
    height: 28px;
  }

  body.home-hero .reviews-arrow span {
    font-size: 16px;
  }

  body.home-hero .gallery-grid {
    grid-template-columns: 1fr;
  }

  body.home-hero .gallery-photo {
    height: clamp(210px, 66vw, 280px);
  }

  body.home-hero .follow {
    padding-top: 12px;
    padding-bottom: 24px;
  }

  body.home-hero .follow-brand-row {
    gap: 8px;
    margin-top: 8px;
  }

  body.home-hero .follow-mark {
    padding-inline: 8px;
    transform: translateY(-16px);
  }

  body.home-hero .follow-mark-image {
    width: 92px;
  }

  body.home-hero .follow-content {
    margin-top: 0;
    gap: 12px;
  }

  body.home-hero .follow-links {
    margin-top: 0;
    margin-left: 0;
  }

  body.home-hero .follow-links a {
    font-size: var(--home-footer-text-size);
    line-height: 1.08;
  }

  body.home-hero .follow-center-info {
    font-size: var(--home-footer-text-size);
    line-height: 1.28;
  }

  body.home-hero .follow-instagram p {
    font-size: var(--home-footer-text-size);
    line-height: 1.08;
  }

  body.home-hero .follow-instagram a {
    font-size: var(--home-footer-text-size);
    line-height: 1.08;
  }

  body.home-hero .footer {
    padding: 12px 0 18px;
  }

  body.home-hero .footer p {
    font-size: var(--home-footer-text-size);
    letter-spacing: 0.08em;
  }

}
/* Mobile: keep desktop composition/order, scaled down */
@media (max-width: 600px) {
  body.home-hero {
    --home-footer-text-size: clamp(13px, 3.4vw, 15px);
  }

  body.home-hero .topbar-inner {
    height: 64px;
    padding-right: 8px;
    justify-content: flex-end;
    gap: 10px;
  }

  body.home-hero .brand {
    left: 6px;
    width: 88px;
    top: calc(50% - 3px);
  }

  body.home-hero .topnav {
    display: none;
  }

  body.home-hero .menu-toggle {
    display: block;
  }

  body.home-hero .hero-media {
    aspect-ratio: 2.2 / 1;
  }

  body.home-hero .hero-title {
    font-size: clamp(21px, 4.8vw, 29px);
  }

  body.home-hero .about {
    padding-top: 52px;
    padding-bottom: 42px;
  }

  body.home-hero .about .container {
    width: min(98vw, 900px);
  }

  body.home-hero .about-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: clamp(12px, 3vw, 20px);
    align-items: center;
  }

  body.home-hero .about-collage {
    width: 100%;
    min-height: 290px;
  }

  body.home-hero .about-photo-top {
    width: 26%;
    height: auto;
    left: 0;
    top: 4px;
  }

  body.home-hero .about-photo-main {
    width: 58%;
    height: auto;
    left: 35%;
    top: 0;
  }

  body.home-hero .about-photo-bottom {
    width: 38%;
    height: auto;
    left: 11%;
    top: 48%;
  }

  body.home-hero .about-copy {
    font-size: clamp(10px, 1.9vw, 13px);
    line-height: 1.32;
  }

  body.home-hero .about-copy p {
    margin-bottom: 10px;
  }

  body.home-hero .about-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(170px, 46vw, 220px);
    min-width: 0;
    height: clamp(44px, 11vw, 52px);
    font-size: clamp(14px, 3.4vw, 18px);
    line-height: 1;
    padding: 0 clamp(18px, 5vw, 26px);
    white-space: nowrap;
    margin-inline: auto;
  }

  body.home-hero .services .container {
    grid-template-columns: 56px 1fr;
  }

  body.home-hero .services-heading {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    min-height: 180px;
    border-bottom: 0;
    padding: 0;
    font-size: clamp(26px, 5.2vw, 34px);
  }

  body.home-hero .services-list {
    border-left: 1px solid rgba(235, 237, 229, 0.6);
  }

  body.home-hero .service-item {
    min-height: 48px;
    font-size: clamp(12px, 2.3vw, 16px);
    padding-left: 12px;
    padding-right: 12px;
  }

  body.home-hero .service-item:hover,
  body.home-hero .service-item:focus-visible {
    padding-left: 12px;
  }

  body.home-hero .reviews {
    padding-top: 20px;
    padding-bottom: 26px;
  }

  body.home-hero .reviews-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 14px;
  }

  body.home-hero .reviews-title-main,
  body.home-hero .reviews-title-accent {
    font-size: clamp(24px, 5vw, 32px);
  }

  body.home-hero .reviews-slider {
    width: min(95vw, 560px);
    padding: 20px 16px 16px;
  }

  body.home-hero .review-slide p,
  body.home-hero .review-slide h3 {
    font-size: clamp(11px, 2.2vw, 13px);
    line-height: 1.35;
  }

  body.home-hero .review-slide h3 {
    margin-top: 10px;
  }

  body.home-hero .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.home-hero .gallery-photo {
    height: clamp(150px, 35vw, 220px);
  }

  body.home-hero .follow {
    padding-top: 20px;
    padding-bottom: 26px;
  }

  body.home-hero .follow-brand-row {
    gap: 10px;
    margin-top: 10px;
  }

  body.home-hero .follow-mark {
    transform: translateY(-10px);
    padding-inline: 6px;
  }

  body.home-hero .follow-mark-image {
    width: 90px;
  }

  body.home-hero .follow-content {
    width: min(96vw, 680px);
    margin-top: 8px;
    grid-template-columns: 1fr auto 1fr;
    align-items: start;
    gap: 8px;
  }

  body.home-hero .follow-links {
    margin-top: 0;
    margin-left: 6px;
    justify-self: start;
    align-items: flex-start;
    text-align: left;
    gap: 4px;
  }

  body.home-hero .follow-links a {
    font-size: var(--home-footer-text-size);
    line-height: 1.05;
  }

  body.home-hero .follow-center-info {
    margin-top: 0;
    font-size: var(--home-footer-text-size);
    line-height: 1.05;
  }

  body.home-hero .follow-instagram {
    justify-self: end;
    text-align: right;
    margin-right: 6px;
    margin-top: 0;
  }

  body.home-hero .follow-instagram p,
  body.home-hero .follow-instagram a {
    font-size: var(--home-footer-text-size);
    line-height: 1.05;
  }

  body.home-hero .footer {
    padding: 12px 0 18px;
  }

  body.home-hero .footer p {
    font-size: var(--home-footer-text-size);
    letter-spacing: 0.05em;
  }
}

/* Web app pages */
body.app-login #page,
body.app-user #page {
  background: var(--logo-green);
}

body.app-login .app-shell,
body.app-user .app-shell {
  position: relative;
  padding: clamp(48px, 5vw, 76px) 0 clamp(58px, 6vw, 92px);
  background:
    linear-gradient(rgba(152, 158, 144, 0.8), rgba(152, 158, 144, 0.8)),
    url("assets/imagen4.jpg") center center / cover no-repeat;
}

body.app-login .app-container,
body.app-user .app-container {
  width: min(1220px, 92vw);
  margin: 0 auto;
}

body.app-login .app-login-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: clamp(18px, 2.3vw, 34px);
  align-items: stretch;
}

body.app-login .app-login-wrap {
  width: min(620px, 92vw);
  margin: 0 auto;
}

body.app-user .app-user-stack {
  display: grid;
  gap: clamp(16px, 2vw, 24px);
}

.app-card {
  background: rgba(245, 243, 237, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.52);
  box-shadow: 0 18px 32px rgba(38, 31, 22, 0.14);
  padding: clamp(18px, 2.4vw, 30px);
  color: #262523;
}

.app-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  color: rgba(38, 37, 35, 0.72);
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
}

.app-card h1,
.app-card h2 {
  margin: 6px 0 0;
  font-family: var(--font-carefree-extra-light);
  font-style: italic;
  font-weight: 400;
  line-height: 0.92;
  text-transform: none;
  letter-spacing: 0;
  color: #262523;
}

.app-card h1 {
  font-size: clamp(44px, 4.6vw, 68px);
}

.app-card h2 {
  font-size: clamp(34px, 3.2vw, 46px);
  margin-bottom: 12px;
}

.app-intro {
  margin: 14px 0 0;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(14px, 1.08vw, 18px);
  line-height: 1.5;
  text-transform: none;
  letter-spacing: 0;
}

.app-form {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

.app-inline-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  margin-bottom: 12px;
}

.app-field {
  display: grid;
  gap: 6px;
}

.app-field span {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
}

.app-field input,
.app-field textarea,
.app-inline-form input {
  width: 100%;
  border: 1px solid rgba(38, 37, 35, 0.18);
  border-radius: 10px;
  padding: 11px 12px;
  background: rgba(255, 255, 255, 0.7);
  color: #262523;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
}

.app-feedback {
  margin: 0;
  min-height: 20px;
  color: #52584b;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0;
}

.app-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 10px 18px;
  min-height: 42px;
  background: #666d60;
  color: #f4f2ec;
  cursor: pointer;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: none;
}

.app-button:hover,
.app-button:focus-visible {
  filter: brightness(0.94);
}

.app-button-secondary {
  background: transparent;
  color: #2c2b29;
  border: 1px solid rgba(38, 37, 35, 0.28);
}

.app-google-button {
  width: 100%;
}

.app-side-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.app-side-card a {
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
}

.app-side-card p {
  margin-top: 6px;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  text-transform: none;
  letter-spacing: 0;
  font-size: 13px;
  line-height: 1.45;
}

body.app-user .app-user-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

body.app-user .app-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 22px);
}

body.app-user .app-user-placeholder {
  width: min(760px, 100%);
}

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

.app-link-tile {
  display: block;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(38, 37, 35, 0.16);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
}

.app-list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.app-list-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid rgba(38, 37, 35, 0.14);
  border-radius: 10px;
  padding: 9px 10px;
  background: rgba(255, 255, 255, 0.72);
}

.app-list-content {
  min-width: 0;
}

.app-list-content strong {
  display: block;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.35;
  text-transform: none;
  letter-spacing: 0;
}

.app-list-content strong.is-done {
  text-decoration: line-through;
  opacity: 0.65;
}

.app-list-content p {
  margin: 3px 0 0;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(38, 37, 35, 0.75);
}

.app-item-actions {
  display: flex;
  gap: 6px;
}

.app-list-action,
.app-list-delete {
  border: 1px solid rgba(38, 37, 35, 0.24);
  border-radius: 999px;
  background: transparent;
  color: #2a2927;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  padding: 5px 10px;
  cursor: pointer;
  text-transform: none;
}

.app-list-empty {
  border: 1px dashed rgba(38, 37, 35, 0.26);
  border-radius: 10px;
  padding: 12px;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  color: rgba(38, 37, 35, 0.72);
  text-transform: none;
  letter-spacing: 0;
}

.app-user-placeholder .app-button {
  margin-top: 8px;
  width: fit-content;
}

.app-review-admin-list {
  margin-top: 10px;
  display: grid;
  gap: 12px;
  max-height: 52vh;
  overflow: auto;
  padding-right: 4px;
}

.app-review-admin-item {
  border: 1px solid rgba(38, 37, 35, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  padding: 12px;
  display: grid;
  gap: 10px;
}

.app-shop-admin-list {
  margin-top: 10px;
  display: grid;
  gap: 12px;
  max-height: 52vh;
  overflow: auto;
  padding-right: 4px;
}

.app-shop-admin-item {
  border: 1px solid rgba(38, 37, 35, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  padding: 12px;
  display: grid;
  gap: 10px;
}

.app-shop-admin-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.app-shop-admin-item-header strong {
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
}

.app-shop-admin-meta {
  margin: -2px 0 0;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  color: rgba(38, 37, 35, 0.72);
  text-transform: none;
  letter-spacing: 0;
}

.app-shop-admin-delete {
  border: 1px solid rgba(38, 37, 35, 0.24);
  border-radius: 999px;
  background: transparent;
  color: #2a2927;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  padding: 5px 10px;
  cursor: pointer;
  text-transform: none;
}

.app-shop-admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.app-shop-admin-field {
  display: grid;
  gap: 6px;
}

.app-shop-admin-field span {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
}

.app-shop-admin-field input,
.app-shop-admin-field textarea {
  width: 100%;
  border: 1px solid rgba(38, 37, 35, 0.18);
  border-radius: 10px;
  padding: 11px 12px;
  background: rgba(255, 255, 255, 0.84);
  color: #262523;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
}

.app-shop-admin-field textarea {
  resize: vertical;
  min-height: 88px;
}

.app-shop-admin-gallery {
  border: 1px solid rgba(38, 37, 35, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.62);
  padding: 10px;
  display: grid;
  gap: 8px;
}

.app-shop-admin-gallery-title {
  margin: 0;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(38, 37, 35, 0.8);
}

.app-shop-admin-gallery-list {
  display: grid;
  gap: 8px;
}

.app-shop-admin-image-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid rgba(38, 37, 35, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  padding: 6px 8px;
}

.app-shop-admin-image-cover {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.app-shop-admin-image-name {
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0;
  word-break: break-all;
}

.app-shop-admin-image-remove {
  border: 1px solid rgba(38, 37, 35, 0.24);
  border-radius: 999px;
  background: transparent;
  color: #2a2927;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  padding: 4px 9px;
  cursor: pointer;
  text-transform: none;
}

.app-review-admin-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.app-review-admin-item-header strong {
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
}

.app-review-admin-delete {
  border: 1px solid rgba(38, 37, 35, 0.24);
  border-radius: 999px;
  background: transparent;
  color: #2a2927;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  padding: 5px 10px;
  cursor: pointer;
  text-transform: none;
}

.app-review-admin-field {
  display: grid;
  gap: 6px;
}

.app-review-admin-field span {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
}

.app-review-admin-field textarea {
  width: 100%;
  border: 1px solid rgba(38, 37, 35, 0.18);
  border-radius: 10px;
  padding: 11px 12px;
  background: rgba(255, 255, 255, 0.84);
  color: #262523;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  resize: vertical;
  min-height: 90px;
}

.app-review-admin-field textarea[data-field="caption"] {
  min-height: 62px;
}

.app-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.app-modal[hidden] {
  display: none;
}

.app-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 23, 21, 0.56);
}

.app-modal-panel {
  position: relative;
  z-index: 1;
  width: min(920px, 96vw);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  background: rgba(245, 243, 237, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.56);
  box-shadow: 0 20px 40px rgba(24, 19, 15, 0.3);
}

.app-modal-header,
.app-modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(38, 37, 35, 0.14);
}

.app-modal-footer {
  border-bottom: 0;
  border-top: 1px solid rgba(38, 37, 35, 0.14);
}

.app-modal-header h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
}

.app-modal-close {
  border: 1px solid rgba(38, 37, 35, 0.22);
  border-radius: 999px;
  background: transparent;
  color: #2b2927;
  width: 34px;
  height: 34px;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.app-modal-body {
  padding: 14px 16px;
  overflow: auto;
}

.app-modal-inline-actions {
  margin-top: 10px;
}

body.app-modal-open {
  overflow: hidden;
}

body.shop-page {
  background: #ececeb;
  text-transform: none;
}

body.shop-page #page {
  min-height: 100svh;
  background: #ececeb;
}

body.shop-page .shop-catalog {
  padding: clamp(40px, 5vw, 72px) 0 clamp(48px, 6.5vw, 86px);
}

body.shop-page .shop-header {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(24px, 3.6vw, 46px);
}

body.shop-page .shop-title {
  margin: 0;
  font-family: var(--font-carefree-extra-light);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  font-size: clamp(64px, 8.1vw, 112px);
  line-height: 0.84;
  color: #242321;
}

body.shop-page .shop-slider-wrap {
  position: relative;
}

body.shop-page .shop-products-track {
  display: flex;
  gap: clamp(28px, 3vw, 46px);
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 6px clamp(54px, 6vw, 84px) 14px;
}

body.shop-page .shop-products-track::-webkit-scrollbar {
  display: none;
}

body.shop-page .shop-product-card {
  flex: 0 0 min(320px, 74vw);
  min-width: min(320px, 74vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  scroll-snap-align: center;
  scroll-snap-stop: always;
}

body.shop-page .shop-product-image-frame {
  margin: 0;
  width: 100%;
  aspect-ratio: 0.84 / 1;
  border: 14px solid #f4f3ee;
  background: #f4f3ee;
  box-shadow: 0 8px 24px rgba(45, 42, 38, 0.08);
  overflow: hidden;
}

body.shop-page .shop-product-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.shop-page .shop-product-title {
  margin: 18px 0 0;
  font-family: "Sabon", Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2.2vw, 44px);
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: 1.06;
  color: #262523;
}

body.shop-page .shop-product-price {
  margin: 2px 0 0;
  font-family: "Sabon", Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 1.7vw, 34px);
  text-transform: none;
  color: #262523;
}

body.shop-page .shop-product-button {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(250px, 76vw);
  min-height: 56px;
  border-radius: 999px;
  background: #666d60;
  color: #f5f4ee;
  border: 1px solid rgba(17, 16, 14, 0.18);
  padding: 10px 22px;
  font-family: "Sabon", Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 1.8vw, 33px);
  letter-spacing: 0;
  text-transform: none;
}

body.shop-page .shop-product-button:hover,
body.shop-page .shop-product-button:focus-visible {
  filter: brightness(0.95);
}

body.shop-page .shop-arrow {
  position: absolute;
  top: 36%;
  transform: translateY(-50%);
  width: clamp(48px, 4vw, 62px);
  height: clamp(48px, 4vw, 62px);
  border-radius: 999px;
  border: 0;
  background: rgba(108, 110, 102, 0.54);
  color: #ffffff;
  font-size: clamp(36px, 2.8vw, 48px);
  line-height: 1;
  cursor: pointer;
  z-index: 3;
}

body.shop-page .shop-arrow-prev {
  left: clamp(8px, 1.4vw, 26px);
}

body.shop-page .shop-arrow-next {
  right: clamp(8px, 1.4vw, 26px);
}

body.shop-page .shop-arrow:hover,
body.shop-page .shop-arrow:focus-visible {
  background: rgba(86, 89, 82, 0.84);
}

body.shop-page .shop-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

body.shop-product-page .shop-product-detail {
  padding: clamp(36px, 5vw, 72px) 0 clamp(52px, 7vw, 94px);
}

body.shop-product-page .shop-product-status {
  margin: 0 0 12px;
  min-height: 22px;
  color: rgba(46, 42, 38, 0.82);
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
}

body.shop-product-page .shop-product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  align-items: start;
  gap: clamp(24px, 3vw, 44px);
  padding: clamp(20px, 2.6vw, 34px);
  background: rgba(247, 246, 241, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 36px rgba(40, 35, 29, 0.09);
}

body.shop-product-page .shop-product-kicker {
  margin: 0 0 10px;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(39, 36, 32, 0.84);
}

body.shop-product-page .shop-product-detail-title {
  margin: 0;
  font-family: var(--font-carefree-extra-light);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  line-height: 0.88;
  font-size: clamp(52px, 7vw, 94px);
  color: #232220;
}

body.shop-product-page .shop-product-detail-price {
  margin: 12px 0 0;
  font-family: "Sabon", Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1;
  text-transform: none;
  letter-spacing: 0;
  color: #252422;
}

body.shop-product-page .shop-product-detail-description {
  margin: 16px 0 0;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.7;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(31, 29, 26, 0.9);
  white-space: pre-line;
}

body.shop-product-page .shop-product-detail-cta {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(270px, 76vw);
  min-height: 56px;
  border-radius: 999px;
  background: #666d60;
  border: 1px solid rgba(17, 16, 14, 0.18);
  color: #f5f4ee;
  padding: 10px 22px;
  font-family: "Sabon", Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 1.8vw, 34px);
  text-transform: none;
  letter-spacing: 0;
}

body.shop-product-page .shop-product-detail-cta:hover,
body.shop-product-page .shop-product-detail-cta:focus-visible {
  filter: brightness(0.95);
}

body.shop-product-page .shop-product-cover-frame {
  margin: 0;
  width: 100%;
  aspect-ratio: 0.82 / 1;
  border: 14px solid #f4f3ee;
  background: #f4f3ee;
  box-shadow: 0 8px 24px rgba(45, 42, 38, 0.08);
  overflow: hidden;
}

body.shop-product-page .shop-product-cover-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.shop-product-page .shop-product-gallery {
  margin-top: clamp(16px, 2.3vw, 26px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 18px);
}

body.shop-product-page .shop-product-gallery-item {
  margin: 0;
  border: 8px solid #f4f3ee;
  background: #f4f3ee;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

body.shop-product-page .shop-product-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.paypal-page {
  background: #ececeb;
  text-transform: none;
}

body.paypal-page #page {
  min-height: 100svh;
  background: #ececeb;
}

body.paypal-page .paypal-main {
  padding: clamp(36px, 5vw, 72px) 0 clamp(52px, 7vw, 90px);
}

body.paypal-page .paypal-card {
  width: min(760px, 92vw);
  margin: 0 auto;
  padding: clamp(24px, 3vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(247, 246, 241, 0.88);
  box-shadow: 0 18px 36px rgba(40, 35, 29, 0.09);
  text-align: center;
}

body.paypal-page .paypal-kicker {
  margin: 0;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(39, 36, 32, 0.84);
}

body.paypal-page .paypal-card h1 {
  margin: 8px 0 10px;
  font-family: var(--font-carefree-extra-light);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(52px, 6.8vw, 86px);
  line-height: 0.88;
  color: #242321;
}

body.paypal-page .paypal-status {
  margin: 0;
  min-height: 24px;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  color: rgba(39, 36, 32, 0.78);
}

body.paypal-page .paypal-product-summary {
  margin-top: 16px;
}

body.paypal-page .paypal-product-title {
  margin: 0;
  font-family: "Sabon", Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.2vw, 42px);
  text-transform: uppercase;
  color: #242321;
}

body.paypal-page .paypal-product-price {
  margin: 6px 0 0;
  font-family: "Sabon", Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.4vw, 34px);
  color: #242321;
}

body.paypal-page .paypal-cta {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(300px, 78vw);
  min-height: 56px;
  border-radius: 999px;
  background: #666d60;
  border: 1px solid rgba(17, 16, 14, 0.18);
  color: #f5f4ee;
  padding: 10px 24px;
  font-family: "Sabon", Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 1.9vw, 34px);
  letter-spacing: 0;
}

body.paypal-page .paypal-cta:hover,
body.paypal-page .paypal-cta:focus-visible {
  filter: brightness(0.95);
}

body.paypal-page .paypal-back {
  margin-top: 12px;
  display: inline-block;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  color: rgba(39, 36, 32, 0.82);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 900px) {
  body.paypal-page .paypal-card {
    width: min(94vw, 720px);
  }
}

@media (max-width: 600px) {
  body.paypal-page .paypal-main {
    padding: 26px 0 44px;
  }

  body.paypal-page .paypal-card {
    padding: 16px 14px 20px;
  }

  body.paypal-page .paypal-card h1 {
    font-size: clamp(38px, 11vw, 54px);
  }

  body.paypal-page .paypal-product-title {
    font-size: clamp(22px, 7.2vw, 28px);
  }

  body.paypal-page .paypal-product-price {
    font-size: clamp(20px, 6.4vw, 26px);
  }

  body.paypal-page .paypal-cta {
    min-width: min(240px, 84vw);
    min-height: 48px;
    font-size: clamp(20px, 6vw, 26px);
  }
}

@media (max-width: 900px) {
  body.app-login .app-login-grid,
  body.app-user .app-dashboard-grid {
    grid-template-columns: 1fr;
  }

  body.app-user .app-user-header {
    flex-direction: column;
  }

  body.shop-product-page .shop-product-layout {
    grid-template-columns: 1fr;
  }

  body.shop-product-page .shop-product-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  body.app-login .app-shell,
  body.app-user .app-shell {
    padding: 22px 0 32px;
  }

  body.app-login .app-container,
  body.app-user .app-container {
    width: min(94vw, 520px);
  }

  body.app-login .app-login-wrap {
    width: min(94vw, 520px);
  }

  .app-card {
    padding: 14px;
  }

  .app-card h1 {
    font-size: clamp(36px, 10vw, 46px);
  }

  .app-card h2 {
    font-size: clamp(28px, 8vw, 36px);
  }

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

  .app-item-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .app-list-item {
    flex-direction: column;
    align-items: stretch;
  }

  .app-shop-admin-grid {
    grid-template-columns: 1fr;
  }

  .app-modal {
    padding: 10px;
  }

  .app-modal-panel {
    width: min(98vw, 98vw);
    max-height: 96vh;
  }

  .app-modal-header,
  .app-modal-footer,
  .app-modal-body {
    padding: 12px;
  }

  .app-modal-footer {
    flex-wrap: wrap;
  }

  body.shop-page .shop-products-track {
    padding-inline: 12px;
    gap: 20px;
  }

  body.shop-page .shop-product-card {
    flex: 0 0 min(272px, 80vw);
    min-width: min(272px, 80vw);
  }

  body.shop-page .shop-product-image-frame {
    border-width: 10px;
  }

  body.shop-page .shop-product-title {
    font-size: clamp(20px, 5.2vw, 30px);
  }

  body.shop-page .shop-product-price {
    font-size: clamp(16px, 4.7vw, 24px);
  }

  body.shop-page .shop-product-button {
    min-height: 48px;
    min-width: min(220px, 76vw);
    font-size: clamp(17px, 4.8vw, 24px);
  }

  body.shop-page .shop-arrow {
    width: 44px;
    height: 44px;
    font-size: 34px;
    top: 33%;
  }

  body.shop-page .shop-arrow-prev {
    left: -6px;
  }

  body.shop-page .shop-arrow-next {
    right: -6px;
  }

  body.shop-product-page .shop-product-detail {
    padding-top: 28px;
  }

  body.shop-product-page .shop-product-layout {
    padding: 14px;
  }

  body.shop-product-page .shop-product-kicker {
    font-size: 11px;
  }

  body.shop-product-page .shop-product-detail-title {
    font-size: clamp(40px, 12vw, 58px);
  }

  body.shop-product-page .shop-product-detail-price {
    font-size: clamp(24px, 7vw, 34px);
  }

  body.shop-product-page .shop-product-detail-description {
    font-size: 15px;
    line-height: 1.62;
  }

  body.shop-product-page .shop-product-detail-cta {
    min-width: min(220px, 82vw);
    min-height: 48px;
    font-size: clamp(19px, 5.4vw, 28px);
  }

  body.shop-product-page .shop-product-cover-frame {
    border-width: 10px;
  }

  body.shop-product-page .shop-product-gallery {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  body.shop-product-page .shop-product-gallery-item {
    border-width: 6px;
    aspect-ratio: 0.92 / 1;
  }
}

/* About page redesign */
body.about-single {
  background: var(--logo-green);
  text-transform: none;
}

body.about-single #page {
  background: #efede8;
  min-height: auto;
}

body.about-single .about-single-hero {
  position: relative;
  min-height: calc(100vh - clamp(130px, 9.4vw, 170px));
  padding: clamp(34px, 4.4vw, 72px) 0 clamp(42px, 5vw, 86px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  background: #d2d0cb;
}

body.about-single .about-single-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(239, 237, 232, 0.58), rgba(239, 237, 232, 0.58)),
    url("assets/imagen4.jpg") center center / cover no-repeat;
}

body.about-single .about-single-panel {
  position: relative;
  z-index: 1;
  width: min(1330px, 91vw);
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(290px, 0.75fr);
  align-items: stretch;
  gap: clamp(24px, 2.6vw, 48px);
  padding: clamp(28px, 3vw, 52px);
  background: rgba(248, 247, 244, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.52);
  box-shadow: 0 22px 42px rgba(41, 33, 22, 0.12);
}

body.about-single .about-single-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #1f1e1d;
}

body.about-single .about-single-copy h1 {
  margin: 0 0 clamp(16px, 1.6vw, 24px);
  font-family: var(--font-carefree-extra-light);
  font-size: clamp(56px, 4.2vw, 78px);
  line-height: 0.95;
  font-style: normal;
  font-weight: 400;
  color: #2a2928;
  letter-spacing: 0;
}

body.about-single .about-single-copy h1 span {
  font-family: var(--font-carefree);
  font-style: italic;
}

body.about-single .about-single-copy p {
  margin: 0;
  max-width: 58ch;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(17px, 1.18vw, 22px);
  line-height: 1.48;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: #242321;
}

body.about-single .about-single-copy p + p {
  margin-top: clamp(14px, 1.5vw, 20px);
}

body.about-single .about-single-favorites {
  margin-top: clamp(6px, 1vw, 12px);
  max-width: 60ch;
}

body.about-single .about-single-cta {
  margin-top: clamp(24px, 2vw, 34px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(184px, 17vw, 270px);
  padding: clamp(10px, 0.85vw, 15px) clamp(26px, 2vw, 36px);
  border-radius: 999px;
  background: #666c60;
  color: #f7f4ed;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(18px, 1.2vw, 24px);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  transition: filter var(--transition);
}

body.about-single .about-single-cta:hover,
body.about-single .about-single-cta:focus-visible {
  filter: brightness(0.95);
}

body.about-single .about-single-photo {
  margin: 0;
  min-height: 100%;
  overflow: hidden;
}

body.about-single .about-single-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1100px) {
  body.about-single .about-single-panel {
    width: min(95vw, 1080px);
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.64fr);
    gap: clamp(18px, 2vw, 30px);
  }

  body.about-single .about-single-copy p {
    font-size: clamp(16px, 1.72vw, 20px);
  }
}

@media (max-width: 900px) {
  body.about-single .about-single-hero {
    min-height: 0;
    padding: 14px 0 18px;
  }

  body.about-single .about-single-panel {
    width: min(95.5vw, 1040px);
    max-width: 95.5vw;
    grid-template-columns: minmax(0, 1.52fr) minmax(126px, 0.72fr);
    gap: clamp(8px, 1.6vw, 14px);
    padding: clamp(10px, 2vw, 16px);
  }

  body.about-single .about-single-photo {
    order: 0;
    max-height: none;
  }

  body.about-single .about-single-copy h1 {
    font-size: clamp(31px, 5.4vw, 46px);
    margin-bottom: 9px;
  }

  body.about-single .about-single-copy p {
    max-width: 52ch;
    font-size: clamp(11.5px, 1.85vw, 15px);
    line-height: 1.34;
  }

  body.about-single .about-single-copy p + p {
    margin-top: 9px;
  }

  body.about-single .about-single-cta {
    min-width: clamp(122px, 28vw, 170px);
    font-size: clamp(12px, 1.8vw, 16px);
    padding: 8px 14px;
    margin-top: 10px;
  }
}

@media (max-width: 600px) {
  body.about-single .about-single-hero {
    padding: 10px 0 12px;
  }

  body.about-single .about-single-panel {
    grid-template-columns: minmax(0, 1.58fr) minmax(100px, 0.7fr);
    width: min(96vw, 740px);
    max-width: 96vw;
    gap: 6px;
    padding: 8px;
  }

  body.about-single .about-single-copy h1 {
    font-size: clamp(24px, 6.6vw, 34px);
    margin-bottom: 7px;
  }

  body.about-single .about-single-copy p {
    max-width: 54ch;
    font-size: clamp(9.9px, 2.35vw, 12.4px);
    line-height: 1.28;
  }

  body.about-single .about-single-copy p + p {
    margin-top: 7px;
  }

  body.about-single .about-single-cta {
    min-width: 110px;
    font-size: clamp(10px, 2.5vw, 12.6px);
    padding: 7px 12px;
  }

  body.services-page .services-single-hero {
    min-height: clamp(116px, 29vw, 154px);
  }

  body.services-page .services-single-hero h1 {
    font-size: clamp(38px, 10.4vw, 60px);
  }

  body.services-page .services-single-card {
    min-height: clamp(280px, 84vw, 380px);
    padding: 12px 6px 14px;
  }

  body.services-page .services-single-card h2 {
    font-size: clamp(22px, 6.4vw, 34px);
    margin-bottom: 8px;
  }

  body.services-page .services-single-card p,
  body.services-page .services-single-card h3,
  body.services-page .services-single-card li {
    font-size: clamp(7.9px, 2.05vw, 10.1px);
    line-height: 1.24;
  }

  body.services-page .services-single-card p {
    max-width: 17.8ch;
  }
}
