:root {
  --color-primary: #1F3D3D;
  --color-primary-light: #2E5959;
  --color-primary-dark: #142A2A;
  --color-secondary: #D97757;
  --color-secondary-light: #E89A7D;
  --color-accent: #C9A66B;
  --color-bg: #FAF6F0;
  --color-bg-alt: #F1EAE0;
  --color-bg-card: #FFFDFA;
  --color-text: #262421;
  --color-text-light: #5A564F;
  --color-border: #E4DCCE;

  --fs-display: clamp(2.6rem, 5vw + 1.4rem, 5.2rem);
  --fs-h1: clamp(2.2rem, 3.4vw + 1.2rem, 3.6rem);
  --fs-h2: clamp(1.7rem, 2vw + 1rem, 2.5rem);
  --fs-h3: clamp(1.2rem, 1vw + 0.9rem, 1.6rem);
  --fs-body: 1rem;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --radius-full: 999px;

  --shadow-sm: 0 1px 2px rgba(20,20,15,0.06);
  --shadow-md: 0 6px 16px -4px rgba(20,20,15,0.10), 0 2px 6px rgba(20,20,15,0.06);
  --shadow-lg: 0 24px 48px -12px rgba(20,25,20,0.18), 0 8px 20px -8px rgba(20,25,20,0.10);
  --shadow-glow: 0 0 0 1px rgba(201,166,107,0.18), 0 16px 36px -10px rgba(31,61,61,0.28);

  --ease: cubic-bezier(.4,0,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Gabarito', sans-serif; color: var(--color-primary-dark); line-height: 1.15; font-weight: 700; }
a { color: inherit; text-decoration: none; transition: color .3s var(--ease), opacity .3s var(--ease); }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.home-section-title { font-size: var(--fs-h2); margin-bottom: 1rem; letter-spacing: -0.01em; }
.home-section-lead { color: var(--color-text-light); max-width: 640px; font-size: 1.05rem; }


.global-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .9rem 1.9rem; border-radius: var(--radius-full);
  font-weight: 600; font-size: .95rem; min-height: 48px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), color .35s var(--ease);
  white-space: nowrap;
}
.global-btn--primary {
  background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
  color: #fff; box-shadow: var(--shadow-md);
}
.global-btn--primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-glow); }
.global-btn--ghost {
  background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(6px);
}
.global-btn--ghost:hover { background: rgba(255,255,255,0.22); transform: translateY(-3px); }
.global-btn--outline {
  background: transparent; color: var(--color-primary); border: 1.5px solid var(--color-primary);
}
.global-btn--outline:hover { background: var(--color-primary); color: #fff; transform: translateY(-3px); }


.global-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  background: rgba(250,246,240,0.92); backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .4s var(--ease);
}
.global-header.global-header--scrolled { box-shadow: var(--shadow-lg); }
.global-nav-inner {
  max-width: 1280px; margin: 0 auto; padding: .9rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.global-logo img { height: 32px; width: auto; }
.global-nav-links { display: flex; gap: 2.2rem; }
.global-nav-links a {
  font-size: .95rem; font-weight: 500; color: var(--color-text); position: relative; padding: .3rem 0;
}
.global-nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
  background: var(--color-secondary); transition: width .35s var(--ease);
}
.global-nav-links a:hover::after, .global-nav-links a.active::after { width: 100%; }
.global-nav-links a.active { color: var(--color-secondary); }

.global-menu-toggle {
  display: none; position: relative; width: 44px; height: 44px; z-index: 700;
  align-items: center; justify-content: center; flex-direction: column; gap: 5px;
}
.global-menu-toggle span {
  width: 22px; height: 2px; background: var(--color-primary-dark); border-radius: 2px;
  transition: transform .4s var(--ease), opacity .3s var(--ease);
}
.global-menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.global-menu-toggle.active span:nth-child(2) { opacity: 0; }
.global-menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.global-mobile-menu {
  position: fixed; inset: 0; z-index: 600;
  background: var(--color-primary-dark);
  clip-path: circle(28px at calc(100% - 40px) 40px);
  transition: clip-path .65s var(--ease);
  pointer-events: none;
  display: none;
}
.global-mobile-menu.active { clip-path: circle(150% at calc(100% - 40px) 40px); pointer-events: auto; }
.global-mobile-menu-links {
  height: 100%; display: none; flex-direction: column; align-items: center; justify-content: center; gap: 1.8rem;
}
.global-mobile-menu-links a {
  color: #fff; font-family: 'Gabarito', sans-serif; font-size: 1.6rem; font-weight: 600;
  opacity: 0; transform: translateY(14px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.global-mobile-menu.active .global-mobile-menu-links a { opacity: 1; transform: translateY(0); }
.global-mobile-menu.active .global-mobile-menu-links a:nth-child(1) { transition-delay: .25s; }
.global-mobile-menu.active .global-mobile-menu-links a:nth-child(2) { transition-delay: .32s; }
.global-mobile-menu.active .global-mobile-menu-links a:nth-child(3) { transition-delay: .39s; }
.global-mobile-menu.active .global-mobile-menu-links a:nth-child(4) { transition-delay: .46s; }
.global-mobile-menu.active .global-mobile-menu-links a:nth-child(5) { transition-delay: .53s; }


.global-sticky-contact {
  position: fixed; right: 26px; top: 50%; transform: translateY(-50%); z-index: 400;
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; box-shadow: var(--shadow-glow);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.global-sticky-contact:hover { transform: translateY(-50%) scale(1.1); }
@media (max-width: 991px) { .global-sticky-contact { display: none; } }


.home-hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 9rem 1.5rem 5rem;
  background:
    radial-gradient(circle at 15% 20%, rgba(217,119,87,0.14), transparent 55%),
    radial-gradient(circle at 85% 80%, rgba(201,166,107,0.16), transparent 55%),
    linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
  text-align: center; position: relative; overflow: hidden;
}
.home-hero-inner { max-width: 920px; margin: 0 auto; }
.home-hero-eyebrow {
  text-transform: uppercase; letter-spacing: .18em; font-size: .8rem; font-weight: 600;
  color: var(--color-secondary); margin-bottom: 1.5rem;
}
.home-hero-title {
  font-size: var(--fs-display); font-weight: 800; letter-spacing: -0.02em;
  display: flex; flex-wrap: wrap; gap: .5rem .6rem; justify-content: center; margin-bottom: 1.8rem;
}
.home-kinetic-word { display: inline-block; animation: homeWeightBreathe 6s ease-in-out infinite; }
.home-kinetic-word--1 { animation-delay: 0s; }
.home-kinetic-word--2 { animation-delay: .6s; color: var(--color-primary-light); }
.home-kinetic-word--3 { animation-delay: 1.2s; }
@keyframes homeWeightBreathe {
  0%, 100% { letter-spacing: -0.02em; transform: translateY(0); }
  50% { letter-spacing: 0.01em; transform: translateY(-4px); }
}
.home-kinetic-gradient {
  display: inline-block;
  background: linear-gradient(100deg, var(--color-secondary), var(--color-accent), var(--color-primary-light), var(--color-secondary));
  background-size: 300% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: homeGradientFlow 8s linear infinite;
}
@keyframes homeGradientFlow {
  0% { background-position: 0% center; }
  100% { background-position: 300% center; }
}
.home-hero-subtitle {
  font-size: 1.1rem; color: var(--color-text-light); max-width: 640px; margin: 0 auto 2.2rem;
}
.home-hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3.5rem; }
.home-hero-actions .global-btn--ghost { color: var(--color-primary-dark); border-color: var(--color-primary-dark); background: rgba(31,61,61,0.06); }
.home-hero-actions .global-btn--ghost:hover { background: rgba(31,61,61,0.12); }

.home-breadcrumb {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: .5rem; max-width: 780px; margin: 0 auto;
}
.home-breadcrumb-step { display: flex; flex-direction: column; align-items: center; gap: .55rem; min-width: 90px; }
.home-breadcrumb-dot {
  width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: var(--color-bg-card); border: 2px solid var(--color-accent); color: var(--color-primary-dark);
  font-weight: 700; font-family: 'Gabarito', sans-serif; box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.home-breadcrumb-step:hover .home-breadcrumb-dot { transform: scale(1.12); box-shadow: var(--shadow-md); background: var(--color-secondary); color: #fff; }
.home-breadcrumb-label { font-size: .8rem; color: var(--color-text-light); font-weight: 500; text-align: center; }
.home-breadcrumb-line { width: 40px; height: 2px; background: var(--color-border); margin-bottom: 1.6rem; }
@media (max-width: 640px) { .home-breadcrumb-line { display: none; } }


main section { padding: 6rem 1.5rem; }
.home-intro-grid, .team-values-grid, .gift-how-grid, .trial-what-grid, .home-goals-grid, .home-quote-grid {
  max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center;
}
.home-intro-image img, .team-values-image img, .gift-how-image img, .trial-what-image img, .home-goals-image img, .home-quote-image img {
  border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4/3.1; object-fit: cover;
}
.home-intro-text p, .team-values-text p, .gift-how-text p { color: var(--color-text-light); margin-bottom: 1.1rem; }


.home-services { max-width: 1280px; margin: 0 auto; }
.home-services-header { text-align: center; max-width: 700px; margin: 0 auto 3.5rem; }
.home-services-header .home-section-lead { margin: 0 auto; }
.home-services-grid {
  container-type: inline-size; container-name: homeservices;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem;
}
.home-service-card {
  background: var(--color-bg-card); border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  padding: 2rem; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: box-shadow .4s var(--ease), transform .4s var(--ease), border-color .4s var(--ease);
  cursor: pointer;
}
.home-service-card:hover, .home-service-card:focus-within {
  box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: var(--color-accent);
}
.home-service-card--featured { grid-column: span 2; background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light)); border: none; }
.home-service-card--featured h3, .home-service-card--featured .home-service-short, .home-service-card--featured .home-service-number { color: #fff; }
.home-service-card--featured .home-service-card-detail p { color: rgba(255,255,255,0.85); }
.home-service-number { font-family: 'Gabarito', sans-serif; font-weight: 800; font-size: 1.6rem; color: var(--color-accent); opacity: .8; }
.home-service-card h3 { font-size: var(--fs-h3); margin: .6rem 0 .5rem; }
.home-service-short { color: var(--color-text-light); font-size: .95rem; }
.home-service-card-detail {
  max-height: 0; overflow: hidden; opacity: 0; transition: max-height .5s var(--ease), opacity .4s var(--ease), margin-top .4s var(--ease);
}
.home-service-card:hover .home-service-card-detail, .home-service-card:focus-within .home-service-card-detail {
  max-height: 220px; opacity: 1; margin-top: 1rem;
}
.home-service-card-detail p { color: var(--color-text-light); font-size: .92rem; border-top: 1px solid var(--color-border); padding-top: 1rem; }
.home-service-card--featured .home-service-card-detail p { border-color: rgba(255,255,255,0.25); }

@container homeservices (max-width: 640px) {
  .home-services-grid { grid-template-columns: 1fr; }
  .home-service-card--featured { grid-column: span 1; }
}


.home-process { max-width: 1280px; margin: 0 auto; }
.home-process-header { text-align: center; max-width: 700px; margin: 0 auto 3.5rem; }
.home-process-header .home-section-lead { margin: 0 auto; }
.home-process-grid {
  container-type: inline-size; container-name: homeprocess;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem;
}
.home-process-item {
  background: var(--color-bg-card); border-radius: var(--radius-md); padding: 1.8rem; box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--color-secondary); transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.home-process-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.home-process-mark { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--color-secondary); font-weight: 700; }
.home-process-item h3 { font-size: 1.15rem; margin: .5rem 0 .55rem; }
.home-process-item p { color: var(--color-text-light); font-size: .92rem; }
@container homeprocess (max-width: 760px) { .home-process-grid { grid-template-columns: 1fr 1fr; } }
@container homeprocess (max-width: 420px) { .home-process-grid { grid-template-columns: 1fr; } }


.home-goals { background: var(--color-bg-alt); }
.home-goals-grid { grid-template-columns: 0.9fr 1.1fr; }
.home-goals-list li { display: flex; gap: .7rem; align-items: flex-start; margin-bottom: .9rem; color: var(--color-text-light); }
.home-goals-list i { color: var(--color-secondary); margin-top: .2rem; }


.home-forwhom-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.home-forwhom-card {
  background: var(--color-bg-card); border-radius: var(--radius-lg); padding: 2.2rem; border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm); transition: box-shadow .35s var(--ease);
}
.home-forwhom-card:hover { box-shadow: var(--shadow-md); }
.home-forwhom-card h3 { font-size: 1.2rem; margin-bottom: .7rem; display: flex; align-items: center; gap: .6rem; }
.home-forwhom-card h3 i { color: var(--color-accent); }
.home-forwhom-card p { color: var(--color-text-light); }


.home-quote { background: var(--color-primary); color: #fff; border-radius: var(--radius-xl); margin: 0 1.5rem 0; }
.home-quote-grid { grid-template-columns: 0.9fr 1.1fr; }
.home-quote-mark { text-transform: uppercase; letter-spacing: .15em; font-size: .8rem; color: var(--color-accent); font-weight: 700; margin-bottom: .8rem; }
.home-quote-body { font-family: 'Gabarito', sans-serif; font-size: var(--fs-h3); font-weight: 600; line-height: 1.4; }


.home-faq, .gift-faq { max-width: 900px; margin: 0 auto; }
.home-faq-header, .gift-faq-header { text-align: center; margin-bottom: 2.5rem; }
.home-faq-item {
  background: var(--color-bg-card); border: 1px solid var(--color-border); border-radius: var(--radius-md);
  padding: 1.3rem 1.6rem; margin-bottom: 1rem; transition: box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.home-faq-item:hover { box-shadow: var(--shadow-sm); border-color: var(--color-accent); }
.home-faq-item summary {
  cursor: pointer; font-weight: 600; font-family: 'Gabarito', sans-serif; font-size: 1.02rem;
  display: flex; justify-content: space-between; align-items: center; list-style: none;
}
.home-faq-item summary::-webkit-details-marker { display: none; }
.home-faq-item summary::after { content: '+'; font-size: 1.4rem; color: var(--color-secondary); transition: transform .35s var(--ease); }
.home-faq-item[open] summary::after { transform: rotate(45deg); }
.home-faq-item p { color: var(--color-text-light); margin-top: .9rem; }


.global-cta {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  border-radius: var(--radius-xl); margin: 0 1.5rem; padding: 4.5rem 2rem; text-align: center; color: #fff;
}
.global-cta-inner { max-width: 620px; margin: 0 auto; }
.global-cta-inner h2 { color: #fff; font-size: var(--fs-h2); margin-bottom: .9rem; }
.global-cta-inner p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; }
.global-cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.global-cta-actions .global-btn--outline { color: #fff; border-color: rgba(255,255,255,0.6); }
.global-cta-actions .global-btn--outline:hover { background: #fff; color: var(--color-primary-dark); }


.global-footer { background: var(--color-primary-dark); color: rgba(255,255,255,0.82); padding: 4.5rem 1.5rem 1.5rem; margin-top: 4rem; }
.global-footer-grid {
  max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr 1.2fr; gap: 2.4rem; padding-bottom: 3rem;
}
.global-footer-col img { margin-bottom: 1rem; filter: brightness(0) invert(1); }
.global-footer-col p { font-size: .9rem; line-height: 1.6; color: rgba(255,255,255,0.65); }
.global-footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 1.1rem; }
.global-footer-col a { display: block; margin-bottom: .65rem; font-size: .9rem; color: rgba(255,255,255,0.72); transition: color .3s var(--ease); }
.global-footer-col a:hover { color: var(--color-accent); }
.global-footer-news { margin-bottom: 1.1rem; padding: 1rem; background: rgba(255,255,255,0.06); border-radius: var(--radius-sm); }
.global-footer-news-tag {
  display: inline-block; font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 700;
  color: var(--color-accent); margin-bottom: .4rem;
}
.global-footer-news p { font-size: .85rem; color: rgba(255,255,255,0.75); }
.global-footer-bottom {
  max-width: 1280px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.14); padding-top: 1.5rem; font-size: .82rem; color: rgba(255,255,255,0.55);
}


.global-cookie-consent { position: fixed; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 900; width: auto; }
.global-cookie-pill {
  display: flex; align-items: center; gap: 1rem; background: var(--color-bg-card);
  border: 1px solid var(--color-border); border-radius: var(--radius-full); box-shadow: var(--shadow-lg);
  padding: .7rem .7rem .7rem 1.4rem; max-width: 92vw; transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.global-cookie-pill p { font-size: .84rem; color: var(--color-text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.global-cookie-pill-actions { display: flex; gap: .5rem; flex-shrink: 0; flex-direction: column; }
.global-cookie-link {
  font-size: .8rem; font-weight: 600; color: var(--color-primary); padding: .55rem .9rem; border-radius: var(--radius-full);
  transition: background .3s var(--ease);
}
.global-cookie-link:hover { background: var(--color-bg-alt); }
.global-cookie-accept {
  font-size: .8rem; font-weight: 700; color: #fff; background: var(--color-secondary); padding: .55rem 1.1rem;
  border-radius: var(--radius-full); transition: background .3s var(--ease), transform .3s var(--ease);
}
.global-cookie-accept:hover { background: var(--color-primary); transform: translateY(-2px); }

.global-cookie-modal {
  display: none; background: var(--color-bg-card); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border); padding: 1.8rem; width: min(92vw, 460px); max-height: 80vh; overflow-y: auto;
}
.global-cookie-modal h3 { font-size: 1.2rem; margin-bottom: .7rem; }
.global-cookie-modal > p { font-size: .85rem; color: var(--color-text-light); margin-bottom: 1.2rem; }
.global-cookie-category { padding: .9rem 0; border-top: 1px solid var(--color-border); }
.global-cookie-category-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: .35rem; }
.global-cookie-category p { font-size: .82rem; color: var(--color-text-light); }
.global-cookie-category input[type="checkbox"] { width: 20px; height: 20px; accent-color: var(--color-secondary); }
.global-cookie-modal-actions { display: flex; gap: .8rem; margin-top: 1.4rem; flex-wrap: wrap; }
.global-cookie-modal-actions .global-btn { flex: 1; min-width: 140px; padding: .8rem 1rem; }

.global-cookie-consent.open .global-cookie-pill { display: none; }
.global-cookie-consent.open .global-cookie-modal { display: block; animation: cookieModalIn .4s var(--ease); }
@keyframes cookieModalIn { from { opacity: 0; transform: translateY(16px) scale(.96); } to { opacity: 1; transform: translateY(0) scale(1); } }


.team-hero, .trial-hero, .gift-hero, .contact-hero {
  padding: 10rem 1.5rem 4rem; text-align: center;
  background: radial-gradient(circle at 20% 20%, rgba(217,119,87,0.12), transparent 55%), linear-gradient(180deg, var(--color-bg), var(--color-bg-alt));
}
.team-hero-inner, .trial-hero-inner, .gift-hero-inner, .contact-hero-inner { max-width: 780px; margin: 0 auto; }
.team-hero-eyebrow, .trial-hero-eyebrow, .gift-hero-eyebrow, .contact-hero-eyebrow {
  text-transform: uppercase; letter-spacing: .16em; font-size: .8rem; font-weight: 600; color: var(--color-secondary); margin-bottom: 1.3rem;
}
.team-hero-title, .trial-hero-title, .gift-hero-title, .contact-hero-title { font-size: var(--fs-h1); margin-bottom: 1.3rem; }
.team-hero-subtitle, .trial-hero-subtitle, .gift-hero-subtitle, .contact-hero-subtitle { color: var(--color-text-light); font-size: 1.05rem; margin-bottom: 1.6rem; }
.trial-hero-actions, .gift-hero-actions { display: flex; justify-content: center; }

.team-grid-section { max-width: 1100px; margin: 0 auto; }
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.team-card {
  background: var(--color-bg-card); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease); border: 1px solid var(--color-border);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-card-photo img { width: 100%; aspect-ratio: 4/3.4; object-fit: cover; }
.team-card-body { padding: 1.8rem; }
.team-card-role { color: var(--color-secondary); font-weight: 600; font-size: .88rem; margin-bottom: .8rem; }
.team-card-body p:last-child { color: var(--color-text-light); }

.team-values-list { margin-top: 1.3rem; }
.team-values-list li { display: flex; gap: .7rem; align-items: flex-start; margin-bottom: .8rem; color: var(--color-text-light); }
.team-values-list i { color: var(--color-secondary); margin-top: .2rem; }

.team-disclaimer { background: var(--color-bg-alt); }
.team-disclaimer-inner { max-width: 820px; margin: 0 auto; }
.team-disclaimer-inner p { color: var(--color-text-light); }


.trial-steps { max-width: 1200px; margin: 0 auto; }
.trial-steps-header { text-align: center; margin-bottom: 3rem; }
.trial-steps-grid {
  container-type: inline-size; container-name: trialsteps;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem;
}
.trial-step { background: var(--color-bg-card); border-radius: var(--radius-md); padding: 1.8rem; box-shadow: var(--shadow-sm); border-left: 3px solid var(--color-accent); }
.trial-step-num { font-family: 'Gabarito', sans-serif; font-size: 1.6rem; font-weight: 800; color: var(--color-secondary); }
.trial-step h3 { font-size: 1.1rem; margin: .5rem 0; }
.trial-step p { color: var(--color-text-light); font-size: .9rem; }
@container trialsteps (max-width: 760px) { .trial-steps-grid { grid-template-columns: 1fr 1fr; } }
@container trialsteps (max-width: 420px) { .trial-steps-grid { grid-template-columns: 1fr; } }
.trial-note { background: var(--color-bg-alt); }
.trial-note-inner { max-width: 780px; margin: 0 auto; }
.trial-note-inner p { color: var(--color-text-light); }


.gift-occasions { max-width: 1200px; margin: 0 auto; }
.gift-occasions-header { text-align: center; margin-bottom: 3rem; }
.gift-occasions-header .home-section-lead { margin: 0 auto; }
.gift-occasions-grid {
  container-type: inline-size; container-name: giftoccasions;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem;
}
.gift-occasion-card {
  background: var(--color-bg-card); border-radius: var(--radius-md); padding: 1.8rem; text-align: center;
  box-shadow: var(--shadow-sm); border: 1px solid var(--color-border); transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.gift-occasion-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.gift-occasion-card i { font-size: 1.8rem; color: var(--color-secondary); margin-bottom: 1rem; }
.gift-occasion-card h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.gift-occasion-card p { color: var(--color-text-light); font-size: .88rem; }
@container giftoccasions (max-width: 760px) { .gift-occasions-grid { grid-template-columns: 1fr 1fr; } }
@container giftoccasions (max-width: 420px) { .gift-occasions-grid { grid-template-columns: 1fr; } }


.contact-form-section { max-width: 1200px; margin: 0 auto; }
.contact-form-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 3rem; align-items: start; }
.contact-chat {
  background: var(--color-bg-card); border-radius: var(--radius-xl); padding: 2.4rem; box-shadow: var(--shadow-lg); border: 1px solid var(--color-border);
}
.contact-bubble { max-width: 85%; margin-bottom: 1.1rem; animation: contactBubbleIn .5s var(--ease); }
@keyframes contactBubbleIn { from { opacity: 0; transform: translateY(10px);} to { opacity: 1; transform: translateY(0);} }
.contact-bubble--company {
  background: var(--color-bg-alt); border-radius: var(--radius-md) var(--radius-md) var(--radius-md) 4px;
  padding: 1rem 1.3rem; color: var(--color-text);
}
.contact-bubble--user { margin-left: auto; }
.contact-bubble--user input, .contact-bubble--user textarea {
  width: 100%; border: 1.5px solid var(--color-border); border-radius: var(--radius-md) var(--radius-md) 4px var(--radius-md);
  padding: .9rem 1.1rem; font-family: 'Inter', sans-serif; font-size: .95rem; background: var(--color-secondary); color: #fff;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-light));
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.contact-bubble--user input::placeholder, .contact-bubble--user textarea::placeholder { color: rgba(255,255,255,0.8); }
.contact-bubble--user input:focus, .contact-bubble--user textarea:focus { outline: none; box-shadow: var(--shadow-glow); transform: scale(1.01); }
.contact-bubble--checkbox { max-width: 100%; }
.contact-checkbox-label { display: flex; gap: .7rem; align-items: flex-start; background: var(--color-bg-alt); padding: 1rem 1.2rem; border-radius: var(--radius-md); font-size: .85rem; color: var(--color-text-light); }
.contact-checkbox-label input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--color-secondary); flex-shrink: 0; }
.contact-checkbox-label a { color: var(--color-secondary); font-weight: 600; }
.contact-visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.contact-send-btn {
  display: inline-flex; align-items: center; gap: .6rem; margin-top: .5rem; padding: .95rem 2rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light)); color: #fff;
  border-radius: var(--radius-full); font-weight: 700; box-shadow: var(--shadow-md);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.contact-send-btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-glow); }
.contact-form-note { margin-top: .8rem; font-size: .85rem; color: var(--color-secondary); font-weight: 600; }

.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-details-card {
  background: var(--color-bg-card); border-radius: var(--radius-lg); padding: 1.8rem; box-shadow: var(--shadow-sm); border: 1px solid var(--color-border);
}
.contact-details-card h3 { font-size: 1.1rem; margin-bottom: .9rem; }
.contact-details-card p { color: var(--color-text-light); margin-bottom: .6rem; font-size: .92rem; }
.contact-details-card p i { color: var(--color-secondary); margin-right: .5rem; width: 16px; }
.contact-details-card a { color: var(--color-text); font-weight: 500; }
.contact-office-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.contact-office-image img { aspect-ratio: 16/11; object-fit: cover; }

.contact-map-section { max-width: 1200px; margin: 0 auto; }
.contact-map-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); height: 420px; }


.thanks-section {
  min-height: 70vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 6rem 1.5rem;
}
.thanks-dot {
  width: 20px; height: 20px; border-radius: 50%; background: var(--color-secondary);
  transform: scale(0); animation: thanksDotIn .6s var(--ease) forwards; margin-bottom: 2rem;
  box-shadow: var(--shadow-glow);
}
@keyframes thanksDotIn { to { transform: scale(1); } }
.thanks-heading {
  font-size: var(--fs-h1); opacity: 0; animation: thanksFadeIn .8s var(--ease) forwards; animation-delay: .6s;
}
@keyframes thanksFadeIn { to { opacity: 1; } }
.thanks-link {
  margin-top: 1.8rem; font-weight: 600; color: var(--color-secondary); opacity: 0;
  animation: thanksFadeIn .8s var(--ease) forwards; animation-delay: 1.4s; border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease);
}
.thanks-link:hover { border-color: var(--color-secondary); }


.privacy-page, .terms-page, .cookies-page { padding: 10rem 1.5rem 6rem; }
.privacy-page-inner, .terms-page-inner, .cookies-page-inner { max-width: 780px; margin: 0 auto; }
.privacy-page h1, .terms-page h1, .cookies-page h1 { font-size: var(--fs-h1); margin-bottom: 1.3rem; }
.privacy-page h2, .terms-page h2, .cookies-page h2 { font-size: 1.35rem; margin: 2.2rem 0 .9rem; }
.privacy-page p, .terms-page p, .cookies-page p { color: var(--color-text-light); margin-bottom: 1.1rem; }
.privacy-updated, .terms-updated, .cookies-updated {
  display: inline-block; font-size: .82rem; font-weight: 600; color: var(--color-secondary);
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1rem;
}


@media (max-width: 991px) {
  .global-nav-links { display: none; }
  .global-menu-toggle { display: flex; }
  .home-intro-grid, .team-values-grid, .gift-how-grid, .trial-what-grid, .home-goals-grid, .home-quote-grid,
  .team-grid, .contact-form-grid { grid-template-columns: 1fr; }
  .home-intro-image, .team-values-image, .gift-how-image, .trial-what-image, .home-goals-image, .home-quote-image { order: -1; }
  .home-services-grid { grid-template-columns: 1fr; }
  .home-service-card--featured { grid-column: span 1; }
  .home-process-grid { grid-template-columns: 1fr 1fr; }
  .home-forwhom-grid { grid-template-columns: 1fr; }
  .trial-steps-grid, .gift-occasions-grid { grid-template-columns: 1fr 1fr; }
  .global-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  main section { padding: 4rem 1.2rem; }
  .home-process-grid { grid-template-columns: 1fr; }
  .trial-steps-grid, .gift-occasions-grid { grid-template-columns: 1fr; }
  .global-footer-grid { grid-template-columns: 1fr; }
  .global-cookie-pill p { max-width: 160px; white-space: normal; }
  .home-breadcrumb-label { font-size: .72rem; }
  .contact-form-grid { gap: 2rem; }
}