:root {
  --bg-dark: #32201b;
  --bg-deep: #2b1b17;
  --bg-brown: #3b2620;
  --bg-brown-soft: #4a3028;
  --bg-card: rgba(54, 32, 27, 0.72);
  --bg-card-strong: rgba(42, 24, 20, 0.9);
  --text-light: #fff7f1;
  --text-muted: #d8beb2;
  --rose: #c97974;
  --rose-soft: #e7b8ad;
  --champagne: #f4ded4;
  --border-soft: rgba(255, 230, 220, 0.18);
  --border-bright: rgba(255, 230, 220, 0.32);
  --shadow-deep: 0 30px 80px rgba(5, 2, 2, 0.42);
  --shadow-soft: 0 18px 48px rgba(5, 2, 2, 0.24);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 124px;
  background: var(--bg-dark);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text-light);
  background:
    radial-gradient(circle at 8% 18%, rgba(201, 121, 116, 0.11), transparent 23rem),
    radial-gradient(circle at 92% 46%, rgba(231, 184, 173, 0.08), transparent 30rem),
    var(--bg-dark);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

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

::selection {
  color: var(--bg-dark);
  background: var(--rose-soft);
}

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

button {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--champagne);
  outline-offset: 4px;
}

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

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

h1,
h2 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.94;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(3.4rem, 7vw, 6.8rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(3rem, 5.6vw, 5.4rem);
}

h3 {
  color: var(--text-light);
  font-size: 1.15rem;
  line-height: 1.3;
}

section {
  position: relative;
  scroll-margin-top: 118px;
}

.eyebrow,
.pricing-eyebrow {
  margin: 0 0 14px;
  color: var(--rose-soft);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow::before,
.pricing-eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  margin: 0 10px 3px 0;
  background: currentColor;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  width: min(var(--content), calc(100% - 36px));
  min-height: 78px;
  padding: 8px 10px 8px 16px;
  transform: translateX(-50%);
  align-items: center;
  gap: 22px;
  border: 1px solid var(--border-soft);
  border-radius: 22px;
  background: rgba(24, 14, 12, 0.7);
  box-shadow: 0 18px 52px rgba(6, 3, 2, 0.27);
  backdrop-filter: blur(22px) saturate(130%);
  -webkit-backdrop-filter: blur(22px) saturate(130%);
  transition: top 240ms ease, width 240ms ease, background 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled {
  top: 10px;
  width: min(920px, calc(100% - 28px));
  background: rgba(18, 11, 9, 0.92);
  box-shadow: 0 20px 60px rgba(3, 1, 1, 0.42);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: 154px;
  height: 58px;
  object-fit: contain;
  filter: brightness(0) invert(1) sepia(0.15);
  opacity: 0.92;
  transition: width 240ms ease, opacity 180ms ease;
}

.site-header.is-scrolled .brand-logo {
  width: 118px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 3px;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  padding: 10px 12px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--text-light);
  background: rgba(201, 121, 116, 0.14);
}

.main-nav a.is-active::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 5px;
  left: 14px;
  height: 1px;
  background: var(--rose);
}

.header-cta,
.btn,
.pricing-cta-button,
.review-write {
  display: inline-flex;
  min-height: 46px;
  padding: 12px 19px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.header-cta,
.btn-primary,
.pricing-cta-button {
  color: #1c100e;
  background: linear-gradient(135deg, var(--champagne), var(--rose-soft));
  box-shadow: 0 10px 30px rgba(201, 121, 116, 0.19);
}

.header-cta:hover,
.btn:hover,
.pricing-cta-button:hover,
.review-write:hover {
  transform: translateY(-2px);
}

.header-cta:hover,
.btn-primary:hover,
.pricing-cta-button:hover {
  box-shadow: 0 14px 38px rgba(201, 121, 116, 0.32);
}

.btn-secondary,
.review-write {
  border-color: var(--border-bright);
  color: var(--text-light);
  background: rgba(255, 247, 241, 0.06);
}

.btn-secondary:hover,
.review-write:hover {
  border-color: rgba(231, 184, 173, 0.64);
  background: rgba(231, 184, 173, 0.12);
}

.contact-whatsapp {
  border-color: rgba(37, 211, 102, 0.7);
  color: #062d18;
  background: linear-gradient(135deg, #25d366, #7af0a6);
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.2);
}

.contact-whatsapp:hover {
  border-color: rgba(122, 240, 166, 0.9);
  background: linear-gradient(135deg, #20bf5a, #66e897);
  box-shadow: 0 18px 42px rgba(37, 211, 102, 0.3);
}

.hero {
  display: grid;
  min-height: 92svh;
  padding: 156px max(28px, calc((100vw - var(--content)) / 2)) 86px;
  place-items: end start;
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  right: -6vw;
  bottom: -38%;
  z-index: -1;
  width: 50vw;
  height: 50vw;
  border: 1px solid rgba(231, 184, 173, 0.15);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(231, 184, 173, 0.025), 0 0 0 120px rgba(231, 184, 173, 0.018);
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
}

.hero-image {
  object-position: center 20%;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(18, 11, 9, 0.92) 0%, rgba(18, 11, 9, 0.69) 46%, rgba(18, 11, 9, 0.18) 84%),
    linear-gradient(0deg, var(--bg-dark) 0%, rgba(18, 11, 9, 0.18) 35%, rgba(18, 11, 9, 0.3) 100%);
}

.hero-content {
  width: min(790px, 100%);
  animation: lift-in 900ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.hero-content h1 {
  text-wrap: balance;
  text-shadow: 0 8px 34px rgba(0, 0, 0, 0.28);
}

.hero .eyebrow {
  color: var(--rose-soft);
}

.hero-availability {
  display: inline-flex;
  margin: 0 0 22px;
  padding: 9px 14px;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  color: var(--champagne);
  background: rgba(24, 14, 12, 0.52);
  backdrop-filter: blur(14px);
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-availability::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rose-soft);
  box-shadow: 0 0 0 0 rgba(231, 184, 173, 0.38);
  animation: pulse 2.2s infinite;
}

.hero-mobile-availability {
  display: none;
}

.hero-lede {
  max-width: 620px;
  margin-bottom: 20px;
  color: rgba(255, 247, 241, 0.82);
  font-size: clamp(1.04rem, 1.7vw, 1.28rem);
}

.hero-note {
  display: inline-flex;
  margin: 0;
  padding: 8px 12px;
  border-left: 2px solid var(--rose);
  color: var(--text-muted);
  background: linear-gradient(90deg, rgba(201, 121, 116, 0.1), transparent);
  font-size: 0.82rem;
  font-weight: 600;
}

.founder-section {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  min-height: 720px;
  align-items: stretch;
  overflow: hidden;
  background:
    radial-gradient(circle at 83% 16%, rgba(201, 121, 116, 0.14), transparent 25rem),
    radial-gradient(circle at 18% 82%, rgba(241, 199, 166, 0.07), transparent 28rem),
    linear-gradient(135deg, #2d1d19, #3b2620 58%, #2b1b17);
}

.founder-photo {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: #241512;
}

.founder-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 28% 26%, transparent 0 24%, rgba(22, 13, 11, 0.18) 58%, rgba(22, 13, 11, 0.34) 100%),
    linear-gradient(180deg, rgba(22, 13, 11, 0.1), transparent 32%, rgba(22, 13, 11, 0.18));
}

.founder-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(36, 21, 18, 0) 48%, rgba(36, 21, 18, 0.58) 78%, #241512 100%),
    linear-gradient(0deg, #160d0b 0%, rgba(22, 13, 11, 0.55) 16%, transparent 42%),
    linear-gradient(180deg, rgba(22, 13, 11, 0.22), transparent 26%);
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  filter: saturate(0.9) contrast(1.03) brightness(0.9);
  transform: scale(1.01);
}

.founder-text {
  display: flex;
  max-width: 680px;
  padding: clamp(72px, 9vw, 140px) clamp(32px, 8vw, 124px);
  flex-direction: column;
  justify-content: center;
}

.founder-text h2 {
  color: var(--text-light);
}

.founder-text p:not(.eyebrow) {
  max-width: 610px;
  color: var(--text-muted);
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
}

.founder-text p:last-child {
  margin: 22px 0 0;
  padding: 24px 0 0 26px;
  border-top: 1px solid var(--border-soft);
  border-left: 2px solid var(--rose);
  color: var(--champagne);
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.35;
}

.portfolio-section,
.reviews-section,
.policy-section {
  padding: clamp(88px, 10vw, 148px) max(24px, calc((100vw - var(--content)) / 2));
}

.portfolio-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(201, 121, 116, 0.15), transparent 25rem),
    radial-gradient(circle at 90% 82%, rgba(244, 222, 212, 0.08), transparent 29rem),
    linear-gradient(155deg, #32201b, #452c25 55%, #2b1b17);
}

.portfolio-section::before,
.reviews-section::before,
.policy-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 80%, transparent);
}

.portfolio-heading {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 780px;
  margin-bottom: 50px;
}

.portfolio-heading h2 {
  color: var(--text-light);
}

.portfolio-heading p {
  max-width: 690px;
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.style-menu {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.style-choice,
.portfolio-card {
  position: relative;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  isolation: isolate;
  transform: translateY(16px);
  opacity: 0;
  transition: opacity 520ms ease, transform 520ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.style-choice {
  aspect-ratio: 4 / 5;
}

.style-choice.is-visible,
.portfolio-card.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.style-choice:hover,
.portfolio-card:hover {
  border-color: rgba(231, 184, 173, 0.48);
  box-shadow: 0 30px 68px rgba(5, 2, 2, 0.4);
  transform: translateY(-6px);
}

.style-choice img,
.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 300ms ease;
}

.style-choice:hover img,
.portfolio-card:hover img {
  transform: scale(1.055);
  filter: saturate(1.08);
}

.style-choice::after,
.portfolio-card::after {
  content: "";
  position: absolute;
  inset: 40% 0 0;
  z-index: 1;
  background: linear-gradient(transparent, rgba(18, 11, 9, 0.9));
}

.style-copy {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
}

.style-copy strong {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 600;
  line-height: 1;
}

.style-copy em {
  padding: 7px 10px;
  border: 1px solid var(--border-bright);
  border-radius: 999px;
  color: var(--champagne);
  background: rgba(18, 11, 9, 0.46);
  backdrop-filter: blur(10px);
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 700;
  white-space: nowrap;
}

.portfolio-cta {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  margin-top: 44px;
  padding: 26px 28px;
  align-items: center;
  gap: 28px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  background: linear-gradient(120deg, rgba(255, 247, 241, 0.065), rgba(201, 121, 116, 0.08));
  backdrop-filter: blur(16px);
}

.portfolio-cta p {
  max-width: 640px;
  margin: 0;
  color: var(--text-muted);
}

.portfolio-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pricing-section {
  overflow: hidden;
  background: var(--bg-dark);
}

.pricing-stage {
  position: relative;
  min-height: 1000px;
  padding: clamp(96px, 11vw, 160px) max(24px, calc((100vw - var(--content)) / 2));
  isolation: isolate;
}

.pricing-backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.pricing-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(43, 27, 23, 0.96) 0%, rgba(43, 27, 23, 0.84) 52%, rgba(43, 27, 23, 0.54) 100%),
    linear-gradient(0deg, var(--bg-dark) 0%, transparent 30%, var(--bg-dark) 100%);
}

.pricing-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% center;
  filter: saturate(0.7) contrast(1.08);
}

.pricing-intro {
  max-width: 700px;
  margin-bottom: 50px;
}

.pricing-intro h2 {
  color: var(--text-light);
}

.pricing-intro > p:last-child {
  max-width: 610px;
  color: var(--text-muted);
  font-size: 1.03rem;
}

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

.price-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  color: var(--text-light);
  background: rgba(44, 25, 21, 0.76);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.price-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 84% 8%, rgba(241, 199, 166, 0.14), transparent 34%);
  content: "";
  opacity: 0;
  transition: opacity 220ms ease;
}

.price-card:hover {
  border-color: rgba(231, 184, 173, 0.44);
  background: rgba(57, 32, 27, 0.86);
  transform: translateY(-5px);
}

.price-card:hover::before {
  opacity: 1;
}

.price-card-large {
  grid-column: span 2;
  padding: 32px;
}

.price-card-dark {
  background: linear-gradient(145deg, rgba(81, 43, 36, 0.84), rgba(37, 21, 18, 0.9));
}

.price-card-featured {
  border-color: rgba(241, 199, 166, 0.48);
  background:
    radial-gradient(circle at 92% 10%, rgba(241, 199, 166, 0.18), transparent 36%),
    linear-gradient(145deg, rgba(105, 55, 45, 0.94), rgba(43, 23, 19, 0.96));
  box-shadow: 0 28px 80px rgba(42, 15, 11, 0.42), 0 0 0 1px rgba(241, 199, 166, 0.12) inset;
}

.price-card-featured .price-icon {
  border-color: rgba(241, 199, 166, 0.58);
  color: var(--champagne);
  background: rgba(241, 199, 166, 0.14);
  box-shadow: 0 18px 46px rgba(201, 121, 116, 0.2);
}

.price-card-cream {
  background: linear-gradient(145deg, rgba(62, 36, 30, 0.87), rgba(32, 18, 16, 0.91));
}

.price-icon,
.condition-icon,
.pricing-cta-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  place-items: center;
  border: 1px solid rgba(231, 184, 173, 0.32);
  border-radius: 50%;
  color: var(--rose-soft);
  background: rgba(201, 121, 116, 0.12);
}

.price-icon svg,
.condition-icon svg,
.pricing-cta-icon svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.price-category {
  margin: 0 0 17px;
  color: var(--rose-soft);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.price-card-heading .price-category {
  margin: 0;
}

.choice-label {
  display: inline-flex;
  min-height: 30px;
  padding: 8px 12px 7px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(241, 199, 166, 0.46);
  border-radius: 999px;
  color: #fff6ec;
  background: linear-gradient(135deg, rgba(201, 121, 116, 0.56), rgba(241, 199, 166, 0.18));
  box-shadow: 0 14px 30px rgba(30, 12, 9, 0.22);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.price-note {
  max-width: 360px;
  margin: -2px 0 18px;
  color: rgba(255, 246, 236, 0.78);
  font-size: 0.88rem;
  line-height: 1.55;
}

.price-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 18px 0;
  align-items: start;
  gap: 22px;
  border-top: 1px solid var(--border-soft);
}

.price-row h3 {
  margin: 0;
  overflow-wrap: anywhere;
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 1.7vw, 1.48rem);
  font-weight: 600;
}

.price-row p {
  margin: 4px 0 0;
  color: var(--text-muted);
  font-size: 0.76rem;
}

.price-row strong {
  color: var(--champagne);
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 1.65vw, 1.46rem);
  font-weight: 600;
  white-space: nowrap;
}

.pricing-cta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  margin-top: 20px;
  padding: 26px 28px;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-md);
  background: linear-gradient(110deg, rgba(95, 49, 42, 0.56), rgba(43, 24, 20, 0.78));
  backdrop-filter: blur(18px);
}

.pricing-cta-icon {
  margin: 0;
}

.pricing-cta h3 {
  margin: 0 0 4px;
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 600;
}

.pricing-cta p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.pricing-trust {
  display: flex;
  margin-top: 32px;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 28px;
  color: var(--text-muted);
  font-size: 0.76rem;
  font-weight: 650;
}

.pricing-trust span::before {
  content: "✦";
  margin-right: 9px;
  color: var(--rose-soft);
}

.reviews-section {
  overflow: hidden;
  background:
    radial-gradient(ellipse at 90% 20%, rgba(201, 121, 116, 0.2), transparent 28rem),
    linear-gradient(145deg, #432a24, #30201b 64%);
}

.reviews-section::after {
  content: "";
  position: absolute;
  top: 70px;
  right: -130px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(231, 184, 173, 0.13);
  border-radius: 48% 52% 57% 43%;
  transform: rotate(24deg);
}

.reviews-top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-bottom: 58px;
  align-items: center;
  gap: 60px;
}

.reviews-top > div:first-child {
  max-width: 720px;
}

.reviews-top h2 {
  color: var(--text-light);
}

.reviews-top p:not(.eyebrow) {
  margin-bottom: 24px;
  color: var(--text-muted);
}

.trust-score {
  position: relative;
  display: grid;
  width: 184px;
  height: 184px;
  place-items: center;
}

.trust-score svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.trust-score circle {
  fill: rgba(255, 247, 241, 0.025);
  stroke: rgba(244, 222, 212, 0.14);
  stroke-width: 4;
}

.trust-score .meter {
  stroke: var(--rose-soft);
  stroke-dasharray: 301 314;
  stroke-linecap: round;
  filter: drop-shadow(0 0 8px rgba(231, 184, 173, 0.36));
}

.trust-score > div {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.trust-score strong {
  color: var(--champagne);
  font-family: var(--font-heading);
  font-size: 3rem;
  line-height: 0.9;
}

.trust-score span,
.trust-score small {
  color: var(--text-muted);
  font-size: 0.68rem;
}

.review-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
}

.review-viewport {
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
}

.review-viewport.dragging {
  cursor: grabbing;
}

.review-track {
  display: flex;
  gap: 18px;
  transition: transform 520ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.review-card {
  min-width: calc((100% - 18px) / 2);
  min-height: 300px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(255, 247, 241, 0.075), rgba(255, 247, 241, 0.025));
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.review-source {
  display: flex;
  margin-bottom: 32px;
  justify-content: space-between;
  gap: 14px;
  color: var(--text-muted);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stars {
  display: inline-flex;
  color: var(--rose-soft);
  letter-spacing: 0.06em;
}

.review-card blockquote {
  margin: 0 0 28px;
  color: var(--text-light);
  font-family: var(--font-heading);
  font-size: clamp(1.32rem, 2.4vw, 1.9rem);
  line-height: 1.28;
}

.review-card footer {
  color: var(--rose-soft);
  font-size: 0.78rem;
  font-weight: 750;
}

.carousel-btn {
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--border-bright);
  border-radius: 50%;
  color: var(--champagne);
  background: rgba(255, 247, 241, 0.05);
  cursor: pointer;
  font-size: 1.8rem;
  transition: background 180ms ease, transform 180ms ease;
}

.carousel-btn:hover {
  background: rgba(201, 121, 116, 0.18);
  transform: scale(1.05);
}

.review-dots {
  position: relative;
  z-index: 1;
  display: flex;
  margin-top: 24px;
  justify-content: center;
  gap: 8px;
}

.review-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(244, 222, 212, 0.28);
  cursor: pointer;
  transition: width 180ms ease, border-radius 180ms ease, background 180ms ease;
}

.review-dots button.is-active {
  width: 26px;
  border-radius: 999px;
  background: var(--rose-soft);
}

.review-controls {
  position: relative;
  z-index: 1;
  display: flex;
  margin-top: 18px;
  justify-content: center;
}

.review-autoplay-toggle {
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--border-bright);
  border-radius: 999px;
  color: var(--text-light);
  background: rgba(255, 247, 241, 0.06);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 750;
  transition: border-color 180ms ease, background 180ms ease;
}

.review-autoplay-toggle:hover,
.review-autoplay-toggle[aria-pressed="true"] {
  border-color: rgba(231, 184, 173, 0.64);
  background: rgba(201, 121, 116, 0.16);
}

.policy-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 75%, rgba(201, 121, 116, 0.12), transparent 25rem),
    linear-gradient(155deg, #30201b, #432a23 55%, #2c1c18);
}

.policy-heading {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.policy-heading h2 {
  color: var(--text-light);
}

.policy-heading p {
  color: var(--text-muted);
}

.condition-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.condition-card {
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(62, 35, 30, 0.7), rgba(38, 21, 18, 0.72));
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  transition: transform 220ms ease, border-color 220ms ease;
}

.condition-card:hover {
  border-color: rgba(231, 184, 173, 0.42);
  transform: translateY(-5px);
}

.condition-card h3 {
  margin: 0 0 24px;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
}

.condition-card ul {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 14px;
  list-style: none;
}

.condition-card li {
  position: relative;
  padding-left: 19px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.condition-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 10px rgba(201, 121, 116, 0.45);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  min-height: 760px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 22%, rgba(201, 121, 116, 0.16), transparent 28rem),
    linear-gradient(125deg, #432a24, #2d1d19 58%, #3b251f);
}

.contact-section::after {
  content: "";
  position: absolute;
  right: 34%;
  bottom: -230px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(231, 184, 173, 0.09);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(231, 184, 173, 0.02);
}

.contact-panel,
.contact-side {
  position: relative;
  z-index: 1;
  display: flex;
  padding: clamp(86px, 10vw, 150px) max(32px, calc((100vw - var(--content)) / 2));
  flex-direction: column;
  justify-content: center;
}

.contact-panel {
  padding-right: clamp(40px, 8vw, 120px);
}

.contact-panel h2 {
  max-width: 720px;
  color: var(--text-light);
}

.contact-panel > p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 34px;
  color: var(--text-muted);
  font-size: 1.03rem;
}

.contact-side {
  padding-left: clamp(38px, 6vw, 88px);
  border-left: 1px solid var(--border-soft);
  background: linear-gradient(155deg, rgba(255, 247, 241, 0.035), rgba(201, 121, 116, 0.055));
}

.contact-btn {
  min-height: 52px;
  gap: 10px;
}

.btn-icon,
.whatsapp-icon {
  display: inline-grid;
  width: 21px;
  height: 21px;
  place-items: center;
}

.mail-pop {
  filter: grayscale(1) sepia(0.2);
  font-size: 1rem;
}

.whatsapp-icon {
  fill: currentColor;
}

.sms-bubble {
  border: 1px solid currentColor;
  border-radius: 6px;
  font-size: 0.48rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.social-panel h3 {
  margin: 0 0 16px;
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  font-weight: 600;
}

.social-panel > p:not(.eyebrow, .social-note) {
  max-width: 480px;
  color: var(--text-muted);
}

.social-cards {
  display: grid;
  margin-top: 28px;
  gap: 14px;
}

.social-card {
  display: grid;
  grid-template-columns: auto 1fr;
  padding: 20px;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 247, 241, 0.07), rgba(201, 121, 116, 0.08));
  box-shadow: var(--shadow-soft);
  transform: translateX(16px);
  opacity: 0;
  transition: transform 460ms ease, opacity 460ms ease, border-color 200ms ease, background 200ms ease;
}

.social-card.is-visible {
  transform: translateX(0);
  opacity: 1;
}

.social-card:hover {
  border-color: rgba(231, 184, 173, 0.48);
  background: linear-gradient(135deg, rgba(255, 247, 241, 0.1), rgba(201, 121, 116, 0.14));
  transform: translateY(-3px);
}

.social-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(231, 184, 173, 0.3);
  border-radius: 50%;
  color: var(--rose-soft);
  background: rgba(201, 121, 116, 0.1);
}

.social-icon svg {
  width: 23px;
  fill: currentColor;
}

.social-copy {
  display: grid;
}

.social-copy strong {
  color: var(--text-light);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
}

.social-copy em,
.social-copy small {
  color: var(--text-muted);
  font-size: 0.72rem;
  font-style: normal;
}

.social-copy small {
  margin-top: 6px;
  color: var(--rose-soft);
  font-weight: 750;
}

.social-note {
  margin: 22px 0 0;
  color: var(--rose-soft);
  font-family: var(--font-heading);
  font-size: 1.12rem;
}

.site-footer {
  display: flex;
  min-height: 110px;
  padding: 28px max(24px, calc((100vw - var(--content)) / 2));
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--border-soft);
  color: var(--text-muted);
  background: #201411;
  font-size: 0.78rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--rose-soft);
  font-weight: 750;
}

.reveal-up {
  transform: translateY(22px);
  opacity: 0;
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

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

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  padding: 28px;
  place-items: center;
  background: rgba(10, 5, 4, 0.92);
  backdrop-filter: blur(18px);
}

.lightbox.is-open {
  display: grid;
}

.lightbox-inner {
  position: relative;
  display: grid;
  width: min(900px, 100%);
  max-height: calc(100svh - 56px);
  place-items: center;
}

.lightbox img {
  width: auto;
  max-width: 100%;
  max-height: calc(100svh - 125px);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-deep);
  object-fit: contain;
}

.lightbox-caption {
  position: absolute;
  bottom: 14px;
  left: 50%;
  margin: 0;
  padding: 8px 13px;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  color: var(--text-light);
  background: rgba(18, 11, 9, 0.74);
  backdrop-filter: blur(12px);
  font-size: 0.77rem;
  transform: translateX(-50%);
  white-space: nowrap;
}

.lightbox-btn {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--border-bright);
  border-radius: 50%;
  color: var(--text-light);
  background: rgba(18, 11, 9, 0.7);
  backdrop-filter: blur(12px);
  cursor: pointer;
  font-size: 1.8rem;
}

.lightbox-close {
  top: 12px;
  right: 12px;
}

.lightbox-prev {
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
}

.lightbox-next {
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}

/* Volledige portfolio */
.portfolio-page {
  min-height: 100vh;
  background: var(--bg-dark);
}

.portfolio-hero {
  display: flex;
  min-height: 600px;
  padding: 180px max(24px, calc((100vw - var(--content)) / 2)) 100px;
  justify-content: end;
  flex-direction: column;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(18, 11, 9, 0.9), rgba(18, 11, 9, 0.52)),
    url("public/images/werk-tineke/close-up-parelmoer-nagels-14.jpg") center 58% / cover;
}

.portfolio-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, var(--bg-dark), transparent 55%);
}

.portfolio-hero > * {
  position: relative;
  z-index: 1;
}

.portfolio-hero h1 {
  max-width: 850px;
}

.portfolio-hero > p:last-child {
  max-width: 650px;
  margin: 0;
  color: var(--text-muted);
}

.portfolio-full {
  padding-top: 64px;
}

.portfolio-filters {
  position: relative;
  z-index: 2;
  display: flex;
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-btn {
  padding: 10px 16px;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  color: var(--text-muted);
  background: rgba(255, 247, 241, 0.04);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 700;
}

.filter-btn:hover,
.filter-btn.is-active {
  border-color: var(--rose);
  color: var(--text-light);
  background: rgba(201, 121, 116, 0.14);
}

.portfolio-hint {
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
  color: var(--text-muted);
  font-size: 0.78rem;
}

.portfolio-grid-full {
  position: relative;
  z-index: 1;
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.portfolio-card {
  aspect-ratio: 4 / 5;
}

.portfolio-card.wide {
  grid-column: span 2;
  aspect-ratio: 8.35 / 5;
}

.portfolio-card.tall {
  grid-row: span 2;
  aspect-ratio: auto;
  min-height: 100%;
}

.portfolio-card span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  color: var(--text-light);
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 600;
}

.portfolio-card.is-filtered-out {
  display: none;
}

@keyframes lift-in {
  from {
    transform: translateY(24px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 9px rgba(231, 184, 173, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(231, 184, 173, 0);
  }
}

@media (max-width: 1040px) {
  .site-header {
    gap: 12px;
  }

  .brand-logo {
    width: 118px;
  }

  .main-nav a {
    padding-inline: 9px;
    font-size: 0.76rem;
  }

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

  .price-card-large {
    grid-column: span 1;
  }

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

  .contact-panel,
  .contact-side {
    padding-right: 40px;
    padding-left: 40px;
  }
}

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

  .site-header,
  .site-header.is-scrolled {
    top: 10px;
    grid-template-columns: 1fr auto;
    width: calc(100% - 20px);
    padding: 8px 8px 7px 12px;
    gap: 7px 10px;
    border-radius: 20px;
  }

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

  .brand-logo,
  .site-header.is-scrolled .brand-logo {
    width: 112px;
    height: 42px;
  }

  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    width: 100%;
    gap: 0;
  }

  .main-nav a {
    min-width: 0;
    min-height: 44px;
    padding: 6px 2px;
    text-align: center;
    font-size: 0.66rem;
  }

  .main-nav a.is-active::after {
    bottom: 3px;
  }

  .header-cta {
    grid-column: 2;
    grid-row: 1;
    min-height: 44px;
    padding: 10px 14px;
    font-size: 0.75rem;
  }

  .hero-mobile-availability {
    position: absolute;
    top: 132px;
    left: 20px;
    z-index: 2;
    display: inline-flex;
    width: max-content;
    margin: 0;
    padding: 7px 11px;
    font-size: 0.67rem;
  }

  .hero-content-availability {
    display: none;
  }

  .hero {
    min-height: 860px;
    padding-top: 188px;
    padding-bottom: 70px;
  }

  .founder-section {
    grid-template-columns: 1fr;
  }

  .founder-photo {
    min-height: 560px;
  }

  .founder-photo img {
    object-position: center 24%;
  }

  .founder-photo::after {
    background:
      linear-gradient(0deg, #241512 0%, rgba(36, 21, 18, 0.78) 18%, transparent 48%),
      linear-gradient(90deg, rgba(22, 13, 11, 0.16), transparent 38%, rgba(22, 13, 11, 0.18));
  }

  .founder-text {
    max-width: none;
    padding: 70px 32px 94px;
  }

  .style-menu,
  .condition-grid,
  .portfolio-grid-full {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-cta {
    grid-template-columns: 1fr;
  }

  .pricing-stage {
    min-height: auto;
  }

  .pricing-backdrop::after {
    background:
      linear-gradient(90deg, rgba(43, 27, 23, 0.94), rgba(43, 27, 23, 0.7)),
      linear-gradient(0deg, var(--bg-dark), transparent 40%, var(--bg-dark));
  }

  .reviews-top {
    grid-template-columns: 1fr auto;
    gap: 24px;
  }

  .trust-score {
    width: 148px;
    height: 148px;
  }

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

  .contact-panel,
  .contact-side {
    padding: 92px 40px;
  }

  .contact-side {
    border-top: 1px solid var(--border-soft);
    border-left: 0;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: clamp(2.9rem, 12vw, 3.65rem);
  }

  h2 {
    font-size: clamp(2.8rem, 13vw, 4.2rem);
  }

  .hero {
    min-height: 810px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(18, 11, 9, 0.84), rgba(18, 11, 9, 0.39)),
      linear-gradient(0deg, var(--bg-dark), rgba(18, 11, 9, 0.1) 50%, rgba(18, 11, 9, 0.36));
  }

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

  .founder-photo {
    min-height: 460px;
  }

  .founder-photo img {
    object-position: center 20%;
  }

  .founder-text {
    padding-right: 22px;
    padding-left: 22px;
  }

  .portfolio-section,
  .reviews-section,
  .policy-section {
    padding: 82px 18px;
  }

  .style-menu {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .style-choice {
    border-radius: 17px;
  }

  .style-copy {
    right: 11px;
    bottom: 11px;
    left: 11px;
    display: grid;
    gap: 7px;
  }

  .style-copy strong {
    font-size: 1.16rem;
  }

  .style-copy em {
    width: max-content;
    padding: 5px 8px;
    font-size: 0.58rem;
  }

  .portfolio-cta,
  .pricing-cta {
    padding: 22px;
  }

  .portfolio-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn,
  .contact-btn {
    width: 100%;
  }

  .pricing-stage {
    padding: 88px 18px;
  }

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

  .price-card {
    padding: 25px 22px;
  }

  .price-card-large {
    padding: 27px 22px;
  }

  .price-card-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .price-note {
    max-width: none;
  }

  .price-row {
    gap: 16px;
  }

  .price-row strong {
    font-size: 1.12rem;
  }

  .pricing-cta {
    grid-template-columns: auto 1fr;
  }

  .pricing-cta-button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .pricing-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: start;
    gap: 12px;
  }

  .reviews-top {
    grid-template-columns: 1fr;
  }

  .trust-score {
    width: 138px;
    height: 138px;
  }

  .review-shell {
    grid-template-columns: 1fr;
  }

  .review-card {
    min-width: 100%;
    min-height: 330px;
  }

  .carousel-btn {
    position: absolute;
    bottom: 18px;
    z-index: 3;
  }

  .carousel-btn.prev {
    left: 18px;
  }

  .carousel-btn.next {
    right: 18px;
  }

  .review-dots {
    margin-top: 28px;
  }

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

  .contact-panel,
  .contact-side {
    padding: 82px 22px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .portfolio-hero {
    min-height: 660px;
    padding: 190px 20px 82px;
  }

  .portfolio-full {
    padding-top: 48px;
  }

  .portfolio-grid-full {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .portfolio-card,
  .portfolio-card.wide,
  .portfolio-card.tall {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 0;
    aspect-ratio: 4 / 5;
    border-radius: 17px;
  }

  .portfolio-card span {
    right: 11px;
    bottom: 11px;
    left: 11px;
    font-size: 1.1rem;
  }

  .lightbox {
    padding: 12px;
  }

  .lightbox-caption {
    max-width: calc(100% - 30px);
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (max-width: 390px) {
  .main-nav a {
    padding-inline: 1px;
    font-size: 0.63rem;
  }

  .hero {
    min-height: 760px;
  }

  .hero-availability {
    font-size: 0.7rem;
  }

  .pricing-trust {
    grid-template-columns: 1fr;
  }
}

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

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