/* ============================================================
   Section-specific styles
   ============================================================ */

/* ----------------------------------------------------------
   NAV
   ---------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 22px 0;
  transition: all 0.5s var(--ease);
  background: rgba(250, 246, 239, 0);
  backdrop-filter: blur(0px);
}
.nav.scrolled {
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  padding: 14px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-logo img {
  height: 44px;
  width: auto;
  transition: height 0.5s var(--ease);
}
.nav.scrolled .nav-logo img { height: 36px; }
.nav-logo-text {
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 0.18em;
  line-height: 1;
  color: var(--ink);
}
.nav-logo-text small {
  display: block;
  font-family: var(--sans);
  font-size: 8px;
  letter-spacing: 0.4em;
  margin-top: 4px;
  color: var(--taupe);
}
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  transition: color 0.3s var(--ease);
}
.nav-links a:hover { color: var(--taupe); }
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--taupe);
  transition: width 0.4s var(--ease);
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--ink);
  color: var(--ivory);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-family: var(--sans);
  transition: all 0.4s var(--ease);
}
.nav-cta:hover { background: var(--taupe); }

@media (max-width: 880px) {
  .nav-links { display: none; }
}

/* ----------------------------------------------------------
   HERO
   ---------------------------------------------------------- */
.hero {
  min-height: 100vh;
  padding-top: 140px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

/* Hero layout: EDITORIAL (left text, right image, monogram watermark) */
.hero-editorial {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-editorial .hero-content { position: relative; z-index: 2; }
.hero-editorial .hero-eyebrow {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 28px;
}
.hero-editorial .hero-eyebrow::before {
  content: ""; width: 48px; height: 1px; background: var(--taupe);
}
.hero-editorial h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(54px, 7vw, 108px);
  line-height: 0.96;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.hero-editorial h1 em {
  font-style: italic;
  color: var(--taupe);
  font-weight: 300;
}
.hero-editorial .hero-sub {
  margin-top: 32px;
  font-family: var(--sans);
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 300;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 480px;
}
.hero-editorial .hero-actions {
  margin-top: 44px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-editorial .hero-meta {
  margin-top: 72px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-editorial .hero-meta-item {
  border-left: 1px solid var(--taupe);
  padding-left: 16px;
}
.hero-editorial .hero-meta-item strong {
  display: block;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
}
.hero-editorial .hero-meta-item span {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
  display: block;
}
.hero-editorial .hero-visual {
  position: relative;
  aspect-ratio: 3 / 4;
  background: var(--cream);
}
.hero-editorial .hero-photo {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.hero-editorial .hero-pattern-decor {
  position: absolute;
  inset: -32px -32px auto auto;
  width: 60%;
  aspect-ratio: 3 / 4;
  z-index: 1;
  opacity: 0.7;
}
.hero-editorial .hero-mono-watermark {
  position: absolute;
  bottom: -60px;
  left: -40px;
  width: 220px;
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
}

/* Hero layout: FULL-BLEED (pattern background, centered text) */
.hero-fullbleed {
  background: var(--cream) url("assets/pattern-cream.png") center/780px repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}
.hero-fullbleed::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(247, 242, 233, 0.85) 0%, rgba(247, 242, 233, 0) 70%);
}
.hero-fullbleed .hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  padding: 60px 40px;
}
.hero-fullbleed .hero-monogram {
  width: 96px;
  margin: 0 auto 36px;
  opacity: 0.95;
}
.hero-fullbleed h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(56px, 8vw, 132px);
  line-height: 0.96;
  letter-spacing: -0.018em;
  color: var(--ink);
}
.hero-fullbleed h1 em { font-style: italic; color: var(--taupe); }
.hero-fullbleed .hero-sub {
  margin: 40px auto 0;
  max-width: 560px;
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink-soft);
}
.hero-fullbleed .hero-actions {
  margin-top: 48px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-fullbleed .hero-divider {
  margin: 56px auto 0;
  width: 1px;
  height: 80px;
  background: var(--taupe);
  position: relative;
}
.hero-fullbleed .hero-divider::after {
  content: "Curitiba · São Paulo · Litoral";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 16px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--taupe);
  white-space: nowrap;
}

/* Hero layout: SPLIT (huge image left, copy block right) */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding: 0;
}
.hero-split .hero-image-side {
  position: relative;
  background: var(--cream);
  overflow: hidden;
}
.hero-split .hero-image-side .placeholder {
  position: absolute;
  inset: 0;
  border: none;
}
.hero-split .hero-image-side::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.18));
  pointer-events: none;
}
.hero-split .hero-content-side {
  padding: clamp(60px, 8vw, 120px) clamp(40px, 6vw, 96px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ivory-warm);
  position: relative;
}
.hero-split .hero-content-side::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/pattern-cream.png") right top/360px no-repeat;
  opacity: 0.18;
  pointer-events: none;
}
.hero-split .hero-content-side > * { position: relative; z-index: 1; }
.hero-split h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 5.6vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.015em;
}
.hero-split h1 em { font-style: italic; color: var(--taupe); }
.hero-split .hero-sub {
  margin-top: 28px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 480px;
}
.hero-split .hero-actions {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-split .hero-signature {
  margin-top: 64px;
  font-family: var(--italic-serif), var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--taupe);
}

@media (max-width: 880px) {
  .hero-editorial,
  .hero-split { grid-template-columns: 1fr; gap: 56px; }
  .hero-split { min-height: auto; }
  .hero-split .hero-image-side { aspect-ratio: 4/3; }
}

/* ----------------------------------------------------------
   MARQUEE strip under hero
   ---------------------------------------------------------- */
.marquee {
  background: var(--ink);
  color: var(--ivory);
  padding: 22px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 64px;
  animation: marquee 38s linear infinite;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  font-weight: 300;
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 64px;
}
.marquee-track .dot {
  width: 6px;
  height: 6px;
  background: var(--taupe);
  border-radius: 50%;
  display: inline-block;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ----------------------------------------------------------
   SERVICES
   ---------------------------------------------------------- */
.services { background: var(--ivory-warm); }
.services-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
  align-items: end;
}
.services-head .lead { max-width: 460px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  background: var(--bone);
  border: 1px solid var(--line);
  padding: 36px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.5s var(--ease);
  overflow: hidden;
  cursor: pointer;
}
.service-card:hover {
  border-color: var(--taupe);
  transform: translateY(-4px);
}
.service-card:hover .service-arrow { transform: translate(6px, -6px); color: var(--taupe); }

/* mudança is featured — spans wider; solid taupe with monogram watermark for depth */
.service-card.featured {
  grid-column: span 7;
  background: var(--taupe);
  color: var(--ivory);
  border-color: var(--taupe);
  min-height: 460px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.service-card.featured::before {
  content: "";
  position: absolute;
  top: -8%;
  right: -12%;
  width: 70%;
  height: 130%;
  background: url("assets/monogram.png") center/contain no-repeat;
  filter: brightness(0) invert(1);
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}
.service-card.featured > * { position: relative; z-index: 1; }
.service-card.regular { grid-column: span 5; }

@media (max-width: 880px) {
  .service-card.featured,
  .service-card.regular { grid-column: span 12; min-height: 320px; }
}

.service-card .service-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--taupe);
  letter-spacing: 0.04em;
}
.service-card.featured .service-num { color: var(--ivory); opacity: 0.7; }
.service-card .service-badge {
  display: inline-block;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ivory);
  background: rgba(255, 253, 248, 0.18);
  padding: 6px 12px;
  border: 1px solid rgba(255, 253, 248, 0.3);
  margin-top: 6px;
}
.service-card h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
  margin-top: 16px;
  letter-spacing: -0.01em;
}
.service-card h3 em { font-style: italic; color: var(--taupe); }
.service-card.featured h3 em { color: var(--ivory); opacity: 0.92; }
.service-card p {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 300;
  color: var(--ink-soft);
  margin-top: 14px;
  max-width: 380px;
}
.service-card.featured p { color: rgba(255, 253, 248, 0.85); }

.service-card .service-foot {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.service-tag-row {
  display: flex; gap: 6px; flex-wrap: wrap;
}
.service-tag-row span {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 5px 10px;
}
.service-card.featured .service-tag-row span {
  color: var(--ivory);
  border-color: rgba(255, 253, 248, 0.3);
}
.service-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: all 0.4s var(--ease);
  flex-shrink: 0;
}
.service-card.featured .service-arrow { color: var(--ivory); border-color: rgba(255, 253, 248, 0.6); }

/* ----------------------------------------------------------
   PROCESS — Como funciona
   ---------------------------------------------------------- */
.process {
  background: var(--sage-deep);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
.process::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(139, 144, 120, 0) 0%, rgba(80, 84, 68, 0.4) 80%),
    linear-gradient(180deg, var(--sage-deep) 0%, #707564 100%);
  z-index: 0;
}
.process::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 880px;
  height: 880px;
  transform: translate(-50%, -50%);
  background: url("assets/monogram.png") center/contain no-repeat;
  filter: brightness(0) invert(1);
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}
.process > .container { position: relative; z-index: 1; }

.process-head { max-width: 760px; margin-bottom: 80px; }
.process-head .eyebrow { color: var(--ivory); opacity: 0.85; }
.process-head h2 { color: var(--ivory); }
.process-head h2 em { color: var(--cream); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 880px) {
  .process-steps { grid-template-columns: 1fr 1fr; }
}
.process-step {
  position: relative;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 253, 248, 0.3);
}
.process-step .step-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 56px;
  color: var(--cream);
  line-height: 1;
}
.process-step h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  margin-top: 24px;
  color: var(--ivory);
}
.process-step p {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 253, 248, 0.85);
}

/* ----------------------------------------------------------
   ABOUT
   ---------------------------------------------------------- */
.about { background: var(--ivory-warm); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
}
.about-visual {
  aspect-ratio: 4/5;
  position: relative;
}
.about-visual .placeholder {
  position: absolute;
  inset: 0;
}
.about-visual .about-stamp {
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 140px;
  height: 140px;
  background: var(--taupe);
  color: var(--ivory);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: var(--serif);
  font-style: italic;
  text-align: center;
  z-index: 3;
  animation: spin 22s linear infinite;
  transform-origin: center;
}
.about-stamp strong { font-size: 32px; font-weight: 300; }
.about-stamp small {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-style: normal;
  margin-top: 2px;
}
@keyframes spin { to { transform: rotate(360deg); } }

.about-content .eyebrow { margin-bottom: 20px; }
.about-content h2 { margin-bottom: 28px; }
.about-content p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 18px;
  max-width: 540px;
}
.about-content .signature {
  margin-top: 32px;
  font-family: var(--italic-serif), var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--taupe);
}
.about-credentials {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}
.about-credentials .cred strong {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 36px;
  display: block;
  color: var(--ink);
  line-height: 1;
}
.about-credentials .cred span {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
  display: block;
}

/* ----------------------------------------------------------
   TESTIMONIALS
   ---------------------------------------------------------- */
.testimonials {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 980px;
  height: 980px;
  transform: translate(-50%, -50%);
  background: url("assets/monogram.png") center/contain no-repeat;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}
.testimonials > .container { position: relative; z-index: 1; }

.test-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 64px;
}
.test-rating {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.test-stars {
  display: inline-flex;
  gap: 2px;
  color: var(--taupe);
}
.test-rating span {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.test-nav {
  display: flex; gap: 12px;
}
.test-nav button {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--ease);
}
.test-nav button:hover { background: var(--ink); color: var(--ivory); }
.test-nav button:disabled { opacity: 0.3; pointer-events: none; }

.test-track-wrap { overflow: hidden; }
.test-track {
  display: flex;
  gap: 32px;
  transition: transform 0.7s var(--ease);
}
.test-card {
  flex: 0 0 calc((100% - 64px) / 3);
  background: var(--bone);
  padding: 40px 36px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 420px;
}
@media (max-width: 1100px) {
  .test-card { flex: 0 0 calc((100% - 32px) / 2); }
}
@media (max-width: 700px) {
  .test-card { flex: 0 0 100%; }
}
.test-card .quote-mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 64px;
  line-height: 0.6;
  color: var(--taupe);
}
.test-card blockquote {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 20px;
  line-height: 1.45;
  color: var(--ink);
  font-style: italic;
  flex: 1;
}
.test-card .test-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.test-card .test-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--taupe-soft) url("assets/pattern-taupe.png") center/120px;
  flex-shrink: 0;
}
.test-card .test-author-info strong {
  display: block;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
}
.test-card .test-author-info span {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
  display: block;
}

/* ----------------------------------------------------------
   FAQ
   ---------------------------------------------------------- */
.faq { background: var(--ivory-warm); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
}
@media (max-width: 880px) {
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
}
.faq-head h2 { margin-bottom: 20px; }
.faq-head p {
  color: var(--ink-soft);
  margin-bottom: 28px;
  font-size: 15px;
  line-height: 1.7;
  max-width: 380px;
}
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-top: 1px solid var(--line);
  padding: 24px 0;
  cursor: pointer;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.faq-item-q h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  color: var(--ink);
  transition: color 0.4s var(--ease);
}
.faq-item:hover .faq-item-q h4,
.faq-item.open .faq-item-q h4 { color: var(--taupe); }
.faq-toggle {
  width: 36px; height: 36px;
  flex-shrink: 0;
  border: 1px solid var(--ink);
  border-radius: 50%;
  position: relative;
  transition: all 0.4s var(--ease);
}
.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  background: currentColor;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq-toggle::before { width: 12px; height: 1px; }
.faq-toggle::after { width: 1px; height: 12px; transition: transform 0.4s var(--ease); }
.faq-item.open .faq-toggle { background: var(--ink); color: var(--ivory); }
.faq-item.open .faq-toggle::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s var(--ease), padding 0.4s var(--ease), opacity 0.4s var(--ease);
  opacity: 0;
}
.faq-item.open .faq-item-a {
  max-height: 900px;
  padding-top: 16px;
  opacity: 1;
}
.faq-item-a p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 640px;
}

/* ----------------------------------------------------------
   INSTAGRAM
   ---------------------------------------------------------- */
.instagram { background: var(--bone); }
.ig-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
@media (max-width: 880px) {
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
}
.ig-tile {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.ig-tile .placeholder { position: absolute; inset: 0; }
.ig-tile .ig-overlay {
  position: absolute;
  inset: 0;
  background: rgba(166, 133, 111, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s var(--ease);
  z-index: 2;
}
.ig-tile:hover .ig-overlay { background: rgba(166, 133, 111, 0.85); }
.ig-tile .ig-icon {
  color: var(--ivory);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.ig-tile:hover .ig-icon { opacity: 1; }

/* ----------------------------------------------------------
   CTA FINAL
   ---------------------------------------------------------- */
.final-cta {
  background: var(--ink);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 120px;
}
.final-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 900px;
  height: 900px;
  transform: translate(-50%, -50%);
  background: url("assets/monogram.png") center/contain no-repeat;
  filter: brightness(0) invert(1);
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}
.final-cta > .container {
  position: relative;
  z-index: 1;
  text-align: center;
}
.final-cta .eyebrow { color: var(--taupe); }
.final-cta h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.02;
  margin: 20px auto 36px;
  max-width: 900px;
}
.final-cta h2 em { font-style: italic; color: var(--taupe-soft); }
.final-cta p {
  max-width: 540px;
  margin: 0 auto 48px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 253, 248, 0.75);
}
.final-cta .btn-primary {
  background: var(--ivory);
  color: var(--ink);
}
.final-cta .btn-primary:hover { background: var(--taupe); color: var(--ivory); }

/* ----------------------------------------------------------
   FOOTER
   ---------------------------------------------------------- */
.footer { background: var(--ink); color: var(--ivory); padding: 64px 0 32px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 253, 248, 0.14);
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
.footer-brand .footer-logo img { height: 60px; filter: brightness(0) invert(0.94); }
.footer-brand p {
  margin-top: 20px;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 253, 248, 0.65);
  max-width: 280px;
}
.footer-col h5 {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--taupe-soft);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 13px;
  color: rgba(255, 253, 248, 0.7);
  transition: color 0.3s var(--ease);
}
.footer-col a:hover { color: var(--taupe-soft); }
.footer-bottom {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 253, 248, 0.4);
  flex-wrap: wrap;
  gap: 16px;
}

/* ----------------------------------------------------------
   WHATSAPP floating
   ---------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--ink);
  color: var(--ivory);
  padding: 14px 22px 14px 14px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 0 12px 40px rgba(46, 38, 32, 0.25);
  transition: all 0.4s var(--ease);
}
.whatsapp-float:hover {
  background: var(--taupe);
  transform: translateY(-2px);
}
.whatsapp-float .wa-icon {
  width: 36px;
  height: 36px;
  background: var(--taupe);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.whatsapp-float:hover .wa-icon { background: var(--ivory); color: var(--ink); }

@media (max-width: 600px) {
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 8px; }
}

/* ============================================================
   MOBILE — clean diagramming for small screens
   ============================================================ */
@media (max-width: 600px) {
  /* spacing: tighter sections, less padding */
  :root {
    --pad-section: 64px;
    --pad-x: 22px;
  }

  /* type: pull display sizes down so headlines never wrap awkwardly */
  .title { font-size: clamp(30px, 8vw, 40px); line-height: 1.08; }
  .body-lead { font-size: 15px; line-height: 1.6; }

  /* NAV — drop the "Personal Organizer" small caption, keep just the mark */
  .nav { padding: 14px 0; }
  .nav.scrolled { padding: 10px 0; }
  .nav-logo img { height: 36px; }
  .nav.scrolled .nav-logo img { height: 32px; }
  .nav-logo-text { font-size: 14px; letter-spacing: 0.14em; }
  .nav-logo-text small { display: none; }
  .nav-cta { padding: 10px 14px; font-size: 10px; letter-spacing: 0.18em; }

  /* HERO — tighter top, smaller meta tiles, single-col image */
  .hero { padding-top: 110px; padding-bottom: 56px; min-height: 0; }
  .hero-editorial h1,
  .hero-fullbleed h1,
  .hero-split h1 { font-size: clamp(44px, 11vw, 60px); }
  .hero-editorial .hero-sub,
  .hero-fullbleed .hero-sub,
  .hero-split .hero-sub { font-size: 15px; margin-top: 22px; max-width: none; }
  .hero-editorial .hero-eyebrow::before { display: none; }
  .hero-editorial .hero-actions,
  .hero-fullbleed .hero-actions,
  .hero-split .hero-actions { margin-top: 28px; gap: 12px; }
  .hero-editorial .hero-actions .btn,
  .hero-fullbleed .hero-actions .btn,
  .hero-split .hero-actions .btn { padding: 14px 22px; font-size: 11px; letter-spacing: 0.18em; }
  .hero-editorial .hero-meta {
    margin-top: 44px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
  .hero-editorial .hero-meta-item { padding-left: 10px; }
  .hero-editorial .hero-meta-item strong { font-size: 22px; }
  .hero-editorial .hero-meta-item span { font-size: 8px; letter-spacing: 0.18em; margin-top: 4px; }
  .hero-editorial .hero-mono-watermark { display: none; }
  .hero-fullbleed .hero-content { padding: 32px 8px; }
  .hero-fullbleed .hero-monogram { width: 64px; margin-bottom: 24px; }
  .hero-fullbleed .hero-divider { height: 48px; margin-top: 36px; }
  .hero-fullbleed .hero-divider::after { font-size: 9px; letter-spacing: 0.22em; }
  .hero-split .hero-content-side { padding: 40px 22px; }
  .hero-split .hero-signature { margin-top: 40px; font-size: 18px; }

  /* MARQUEE — smaller type so it reads cleanly without overflow shouting */
  .marquee { padding: 14px 0; }
  .marquee-track { font-size: 15px; gap: 36px; }
  .marquee-track span { gap: 36px; }

  /* SERVICES — single column, stacked head, tighter cards */
  .services-head {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 44px;
  }
  .services-grid { gap: 14px; }
  .service-card { padding: 26px; min-height: 0; }
  .service-card.featured { padding: 30px; min-height: 0; }
  .service-card h3 { font-size: 28px; margin-top: 12px; }
  .service-card p { font-size: 14px; margin-top: 12px; }
  .service-card .service-foot { margin-top: 24px; }
  .service-card .service-num { font-size: 12px; }
  .service-card .service-badge { font-size: 8px; letter-spacing: 0.22em; padding: 5px 10px; }
  .service-tag-row span { font-size: 9px; padding: 4px 8px; letter-spacing: 0.12em; }
  .service-arrow { width: 36px; height: 36px; }

  /* PROCESS — one column for clean rhythm */
  .process-steps { grid-template-columns: 1fr; gap: 28px; }
  .process-head { margin-bottom: 44px; }
  .process-step { padding-top: 22px; }
  .process-step .step-num { font-size: 40px; }
  .process-step h4 { font-size: 20px; margin-top: 16px; }
  .process-step p { margin-top: 10px; }

  /* ABOUT — image first, stamp pulled in, smaller credentials */
  .about-grid { gap: 36px; }
  .about-content h2 { margin-bottom: 20px; }
  .about-content p { font-size: 15px; line-height: 1.7; margin-bottom: 14px; }
  .about-content .signature { font-size: 24px; margin-top: 22px; }
  .about-visual .about-stamp { width: 96px; height: 96px; right: 8px; bottom: -16px; }
  .about-stamp strong { font-size: 22px; }
  .about-stamp small { font-size: 8px; letter-spacing: 0.18em; }
  .about-credentials { grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; padding-top: 22px; }
  .about-credentials .cred strong { font-size: 26px; }

  /* TESTIMONIALS — stacked head + smaller card, hide quote ornament */
  .test-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 36px;
  }
  .test-rating span { font-size: 9px; letter-spacing: 0.14em; }
  .test-nav button { width: 44px; height: 44px; }
  .test-card { padding: 28px 22px; min-height: 0; gap: 18px; }
  .test-card .quote-mark { font-size: 44px; }
  .test-card blockquote { font-size: 17px; line-height: 1.5; }
  .test-card .test-author { padding-top: 16px; }

  /* FAQ — tighter rhythm, smaller question type */
  .faq-grid { gap: 28px; }
  .faq-head h2 { margin-bottom: 14px; }
  .faq-head p { font-size: 14px; margin-bottom: 22px; }
  .faq-item { padding: 18px 0; }
  .faq-item-q { gap: 16px; }
  .faq-item-q h4 { font-size: 17px; line-height: 1.3; }
  .faq-toggle { width: 30px; height: 30px; }
  .faq-toggle::before, .faq-toggle::after { width: 10px; }
  .faq-toggle::after { height: 10px; }
  .faq-item-a p { font-size: 14px; }

  /* INSTAGRAM — 2 col grid, head stacked */
  .ig-head { flex-direction: column; align-items: flex-start; gap: 18px; margin-bottom: 32px; }
  .ig-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }

  /* FINAL CTA — softer padding */
  .final-cta { padding-top: 80px; padding-bottom: 80px; }
  .final-cta h2 { font-size: clamp(36px, 10vw, 56px); margin: 16px auto 24px; }
  .final-cta p { font-size: 15px; margin-bottom: 32px; }

  /* FOOTER — single column, cleaner separation */
  .footer { padding: 48px 0 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
  .footer-brand .footer-logo img { height: 48px; }
  .footer-brand p { max-width: none; }
  .footer-col h5 { margin-bottom: 14px; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-size: 10px;
    letter-spacing: 0.12em;
    margin-top: 24px;
  }

  /* WhatsApp float — already collapses, just lift it a touch */
  .whatsapp-float { bottom: 18px; right: 18px; }
}

/* ----------------------------------------------------------
   Palette variants (driven by Tweaks)
   ---------------------------------------------------------- */
body.palette-sage {
  --taupe: #8B9078;
  --taupe-deep: #6F745D;
  --taupe-soft: #A3A88E;
}
body.palette-deep {
  --taupe: #6E5240;
  --taupe-deep: #4F3A2C;
  --taupe-soft: #8C6E5A;
}
