:root {
  --paper:#f4eee8;
  --paper-deep:#e9ddd3;
  --ink:#2f2526;
  --wine:#7b1e2d;
  --wine-dark:#501823;
  --blue:#1e3a57;
  --gold:#c8a145;
  --line:rgba(82,42,42,.2);
  --serif:'Libre Baskerville',Georgia,serif;
  --sans:'DM Sans',Arial,sans-serif;
}
* {
  box-sizing:border-box;
}
html {
  scroll-behavior:smooth;
}
body {
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font:16px/1.7 var(--sans);
  overflow-x:hidden;
}
.grain {
  position:fixed;
  inset:0;
  z-index:10;
  pointer-events:none;
  opacity:.075;
  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='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
}
.site-header {
  height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 5vw;
  border-bottom:1px solid var(--line);
  position:relative;
  z-index:20;
  background:rgba(244,238,232,.9);
  backdrop-filter:blur(10px);
}
.brand {
  display:flex;
  align-items:center;
  gap:11px;
  color:var(--ink);
  text-decoration:none;
}
.brand-mark {
  width:35px;
  height:35px;
  border:1px solid var(--gold);
  border-radius:50%;
  display:grid;
  place-items:center;
  font:24px/1 var(--serif);
  color:var(--wine);
}
.brand strong,.brand small {
  display:block;
  line-height:1.15;
}
.brand strong {
  font:700 14px var(--serif);
  letter-spacing:.02em;
}
.brand small {
  font-size:9px;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:#765c58;
  margin-top:5px;
  white-space:nowrap;
}
.desktop-nav {
  display:flex;
  gap:30px;
  margin-left:auto;
  margin-right:0;
}
.desktop-nav a,.footer-links a {
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--ink);
  text-decoration:none;
}
.desktop-nav a {
  white-space:nowrap;
}
.desktop-nav a:hover,.footer-links a:hover {
  color:var(--wine);
}
.header-contact {
  font-size:13px;
  color:var(--wine);
  text-decoration:none;
  font-weight:600;
  border-bottom:1px solid var(--gold);
  padding-bottom:4px;
}
.header-contact span,.button span {
  font-size:18px;
  margin-left:6px;
}
.menu-toggle,.mobile-nav {
  display:none;
}
.section-pad {
  padding:110px 10vw;
}
.hero {
  min-height:calc(100dvh - 76px);
  display:grid;
  grid-template-columns:1.1fr .9fr;
  align-items:center;
  gap:9vw;
  padding-top:70px;
  padding-bottom:75px;
}
.eyebrow,.section-kicker {
  font-size:11px;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--wine);
  font-weight:600;
  margin:0 0 22px;
}
.hero h1 {
  font:400 clamp(43px,5.3vw,78px)/1.1 var(--serif);
  letter-spacing:-.055em;
  margin:0 0 25px;
  color:var(--wine-dark);
}
h1 em {
  font-style:italic;
  color:var(--blue);
}
.hero-lede {
  max-width:510px;
  font-size:17px;
  line-height:1.65;
  color:#5f4d4b;
  margin:0 0 30px;
}
.button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:12px 20px;
  text-decoration:none;
  font-size:12px;
  letter-spacing:.06em;
  text-transform:uppercase;
  font-weight:600;
  transition:transform .25s ease,background .25s ease;
}
.button:hover {
  transform:translateY(-2px);
}
.button-dark {
  background:var(--wine-dark);
  color:#fff;
}
.button-dark:hover {
  background:var(--wine);
}
.button-light {
  background:var(--paper);
  color:var(--wine-dark);
}
.intro {
  background:#ede3da;
}
.intro-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12vw;
  align-items:start;
}
.intro h2,.moments h2,.couples h2,.approach h2,.garden h2,.about h2,.contact-panel h2,.faq h2,.final-cta h2,.sport h2 {
  font:400 clamp(30px,4vw,55px)/1.18 var(--serif);
  letter-spacing:-.04em;
  color:var(--wine-dark);
  margin:0;
}
.body-copy {
  font-size:17px;
  color:#5f4d4b;
  max-width:520px;
}
.body-copy p {
  margin:0 0 22px;
}
.moments {
  background:var(--paper);
}
.moments-heading {
  max-width:650px;
  margin:0 auto 65px;
  text-align:center;
}
.moments-heading h2 {
  margin-bottom:20px;
}
.moments-heading>p:last-child {
  max-width:520px;
  margin:0 auto;
  color:#685655;
  font-size:17px;
}
.moment-list {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:0;
  border-top:1px solid var(--line);
}
.moment-list article {
  padding:28px 30px 15px 0;
  border-right:1px solid var(--line);
  margin-right:30px;
}
.moment-list article:last-child {
  border:0;
  margin:0;
}
.moment-list article:nth-child(2n) {
  border:0;
  margin-right:0;
}
.moment-list span,.contact-notes span {
  font:12px var(--sans);
  color:var(--gold);
  letter-spacing:.12em;
}
.moment-list h3 {
  font:400 22px/1.3 var(--serif);
  color:var(--wine-dark);
  margin:22px 0 13px;
}
.moment-list p {
  font-size:15px;
  color:#685655;
}
.approach {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12vw;
  align-items:center;
  background:var(--blue);
  color:#eee7df;
}
.approach-copy h2 {
  color:#f5ede3;
  margin-bottom:25px;
}
.approach-copy .eyebrow {
  color:#dbc17a;
}
.approach-copy p:not(.eyebrow) {
  max-width:600px;
  color:#d7d5d1;
  margin:0 0 20px;
  font-size:17px;
}
.approach-portrait {
  height:calc(100% - 170px);
  min-height:520px;
  align-self:start;
  margin:0;
  overflow:hidden;
  border:1px solid rgba(235,215,170,.34);
}
.approach-portrait img {
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center top;
}
.garden {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12vw;
  align-items:center;
  background:var(--paper-deep);
}
.garden-art {
  order:1;
}
.garden-copy {
  order:2;
}
.garden-copy {
  max-width:580px;
}
.garden-copy h2 {
  margin-bottom:26px;
}
.garden-copy p:not(.eyebrow) {
  color:#685655;
  margin:0 0 20px;
  font-size:17px;
}
.garden-art {
  height:430px;
  position:relative;
  background:#e0d1c6 url('assets/garden-art.png') center/cover no-repeat;
  overflow:hidden;
}
.garden-art p {
  position:absolute;
  left:28px;
  bottom:28px;
  margin:0;
  padding:14px 18px;
  background:rgba(244,238,232,.93);
  color:var(--wine-dark);
  font:italic 22px var(--serif);
    line-height:1.15;
    border:1px solid rgba(200,161,69,.45);
}
.about-body {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12vw;
  align-items:center;
}
.about-portrait {
  margin:0;
  position:relative;
  align-self:start;
  height:calc(100% - 170px);
  min-height:520px;
  overflow:hidden;
}
.about-portrait img {
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center top;
  filter:saturate(.9) contrast(1.02);
}
.about-content {
  max-width:640px;
}
.about-content h2 {
  margin:0 0 27px;
  max-width:560px;
}
.about-content>p:not(.eyebrow) {
  margin:0 0 20px;
  font-size:17px;
  color:#655352;
}
.about-content .dropcap-first::first-letter {
  float:left;
  font:400 66px/.82 var(--serif);
  color:var(--wine);
  margin:8px 12px 0 0;
}
.hero-services {
  font-size:16px;
  font-weight:700;
  letter-spacing:.03em;
  color:var(--wine-dark);
  margin:0 0 10px;
}
.hero-note {
  max-width:520px;
  font-size:12px;
  line-height:1.55;
  color:#6d504c;
  margin:0 0 8px;
  font-style:italic;
  font-family:var(--serif);
}
.formation {
  border-top:0;
  margin:-42px auto 0;
  padding-top:0;
  max-width:920px;
  text-align:center;
}
.formation h3 {
  font:400 clamp(30px,3.2vw,42px)/1.18 var(--serif);
  letter-spacing:-.035em;
  color:var(--wine-dark);
  margin:0 0 34px;
}
.formation ul {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px 22px;
  list-style:none;
  padding:0;
  margin:0 auto;
  text-align:left;
}
.formation li {
  min-height:92px;
  display:flex;
  align-items:flex-start;
  font-size:16px;
  line-height:1.5;
  color:#5f4d4b;
  padding:22px 24px 22px 42px;
  position:relative;
  border:1px solid rgba(109,80,76,.16);
  background:rgba(255,252,247,.42);
}
.formation li::before {
  content:"";
  position:absolute;
  left:22px;
  top:30px;
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--gold);
}
.first-contact {
  background:var(--wine-dark);
  color:#f4ece4;
  padding-top:90px;
  padding-bottom:75px;
}
.first-contact .eyebrow {
  color:#dfc274;
  margin-bottom:36px;
}
.first-contact-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12vw;
  align-items:start;
}
.first-contact > .button {
  margin-top:32px;
}
.contact-panel h2 {
  color:#f6ece2;
  margin-bottom:23px;
}
.contact-panel>p:not(.eyebrow) {
  color:#e2d5cf;
  max-width:500px;
  margin-bottom:29px;
  font-size:17px;
}
.contact-notes {
  border-left:1px solid rgba(245,223,180,.35);
  padding-left:42px;
}
.contact-notes>div {
  padding:0 0 25px;
  margin:0 0 25px;
  border-bottom:1px solid rgba(245,223,180,.25);
}
.contact-notes>div:last-child {
  border:0;
}
.contact-notes h3 {
  font:400 22px var(--serif);
  color:#f4e6d6;
  margin:7px 0;
}
.contact-notes p {
  font-size:15px;
  color:#d8cac1;
  margin:0;
  max-width:400px;
}
.faq {
  display:flex;
  flex-direction:column;
  align-items:center;
  background:#ede3da;
}
.faq-heading {
  text-align:center;
  max-width:650px;
  margin-bottom:52px;
}
.faq-heading h2 {
  margin-bottom:20px;
}
.faq-heading>p:last-child {
  color:#685655;
  font-size:17px;
}
.faq-list {
  width:100%;
  max-width:760px;
}
.faq-list details {
  border-top:1px solid var(--line);
  padding:18px 0;
}
.faq-list details:last-child {
  border-bottom:1px solid var(--line);
}
summary {
  list-style:none;
  cursor:pointer;
  font:400 22px var(--serif);
  color:var(--wine-dark);
  display:flex;
  justify-content:space-between;
  gap:20px;
}
summary::-webkit-details-marker {
  display:none;
}
summary:after {
  content:'+';
  color:var(--gold);
  font:25px var(--sans);
  display:inline-block;
  transition:transform .35s cubic-bezier(.16,1,.3,1);
}
details[open] summary:after {
  transform:rotate(45deg);
}
details p {
  max-width:680px;
  color:#685655;
  font-size:15px;
  margin:13px 35px 2px 0;
}
.publications-hero {
  min-height:420px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  background:var(--paper-deep);
}
.publications-hero h1 {
  max-width:820px;
  margin:0;
  font:400 clamp(38px,5vw,68px)/1.12 var(--serif);
  letter-spacing:-.055em;
  color:var(--wine-dark);
}
.publications-hero>p:not(.eyebrow) {
  max-width:680px;
  margin:28px auto 0;
  color:#685655;
  font-size:18px;
}
.publications-list {
  background:var(--paper);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:26px;
}
.publication-card {
  width:100%;
  max-width:880px;
  padding:48px 52px;
  border:1px solid rgba(109,80,76,.16);
  background:rgba(255,252,247,.46);
}
.publication-meta {
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:0 0 20px;
  color:var(--wine);
  font-size:12px;
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.publication-meta span {
  padding:6px 10px;
  border:1px solid rgba(123,30,45,.16);
}
.publication-card h2 {
  max-width:720px;
  margin:0 0 20px;
  font:400 clamp(28px,3.4vw,44px)/1.18 var(--serif);
  letter-spacing:-.04em;
  color:var(--wine-dark);
}
.publication-card>p:not(.publication-meta) {
  max-width:720px;
  margin:0 0 30px;
  color:#685655;
  font-size:17px;
}
.final-cta {
  text-align:center;
  display:flex;
  align-items:center;
  flex-direction:column;
  background:var(--paper);
}
.final-ornament {
  width:70px;
  height:70px;
  border:1px solid var(--gold);
  border-radius:50%;
  display:grid;
  place-items:center;
  color:var(--wine);
  font:42px var(--serif);
  margin-bottom:30px;
}
.final-cta h2 {
  max-width:730px;
}
.final-cta>p:not(.eyebrow) {
  max-width:540px;
  color:#685655;
  margin:25px 0 30px;
  font-size:17px;
}
.site-footer {
  background:#e5d8cf;
  padding:60px 10vw 35px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:35px;
  position:relative;
}
.site-footer .brand {
  gap:16px;
}
.site-footer .brand-mark {
  width:58px;
  height:58px;
}
.site-footer .brand strong {
  font-size:22px;
}
.site-footer .brand small {
  font-size:10.5px;
  letter-spacing:.095em;
}
.footer-links {
  display:flex;
  flex-direction:column;
  gap:10px;
  align-items:flex-end;
}
.emergency {
  grid-column:1/-1;
  font-size:14px;
  font-weight:700;
  color:#765f5a;
  max-width:700px;
  margin:20px 0 0;
}
.copyright {
  grid-column:1/-1;
  color:#8a716c;
  font-size:11px;
}
.whatsapp-float {
  position:fixed;
  right:24px;
  bottom:22px;
  z-index:30;
  display:inline-flex;
  align-items:center;
  gap:12px;
  min-height:52px;
  padding:12px 16px 12px 19px;
  background:var(--wine-dark);
  color:#f8efe5;
  border:1px solid rgba(214,174,92,.8);
  box-shadow:0 14px 34px rgba(64,21,31,.28);
  text-decoration:none;
  font-size:11px;
  font-weight:600;
  letter-spacing:.09em;
  text-transform:uppercase;
  transition:transform .25s ease,background .25s ease;
}
.whatsapp-float:hover {
  background:var(--wine);
  transform:translateY(-3px);
}
.whatsapp-float:focus-visible {
  outline:3px solid var(--gold);
  outline-offset:3px;
}
.reveal {
  animation:rise .8s both;
}
.delay-1 {
  animation-delay:.15s;
}
@keyframes rise {
  from {
    opacity:0;
    transform:translateY(18px);
  }
  to {
    opacity:1;
    transform:none;
  }
}
@media (prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto;
  }
  .reveal {
    animation:none;
  }
  .button {
    transition:none;
  }
  summary:after {
    transition:none;
  }
}
@media (max-width:800px) {
  .site-header {
    height:76px;
    padding:0 6vw;
  }
  .site-header .brand {
    gap:12px;
  }
  .site-header .brand-mark {
    width:44px;
    height:44px;
  }
  .site-header .brand strong {
    font-size:17px;
  }
  .site-header .brand small {
    font-size:10px;
    letter-spacing:.085em;
  }
  .desktop-nav,.header-contact {
    display:none;
  }
  .menu-toggle {
    display:block;
    background:none;
    border:0;
    color:var(--wine);
    font-size:26px;
    cursor:pointer;
  }
  .mobile-nav {
    display:flex;
    position:fixed;
    top:76px;
    left:0;
    right:0;
    z-index:19;
    background:var(--paper);
    padding:18px 7vw;
    flex-direction:column;
    gap:13px;
    transform:translateY(-150%);
    transition:transform .3s ease;
    border-bottom:1px solid var(--line);
  }
  .mobile-nav.open {
    transform:none;
  }
  .mobile-nav a {
    color:var(--wine-dark);
    text-decoration:none;
    font:16px var(--serif);
  }
  .section-pad {
    padding:75px 7vw;
  }
  .hero,.intro-grid,.approach,.garden,.about,.first-contact-grid {
        grid-template-columns:1fr;
        gap:48px;
      }
  .hero {
    padding-top:55px;
  }
  .hero h1 {
    font-size:clamp(42px,12vw,62px);
  }
  .intro-grid {
    gap:20px;
  }
  .moment-list {
    grid-template-columns:1fr;
  }
  .moment-list article {
    border-right:0;
    border-bottom:1px solid var(--line);
    margin:0;
    padding-right:0;
    padding-bottom:25px;
    margin-bottom:25px;
  }
  .approach-portrait {
    height:300px;
    order:2;
  }
  .approach-copy {
    order:1;
  }
  .garden-art {
    height:350px;
    order:2;
  }
  .garden-copy {
    order:1;
  }
  .about {
    gap:35px;
  }
  .about-body {
    grid-template-columns:1fr;
    gap:35px;
  }
  .about-portrait {
    max-width:380px;
    min-height:480px;
    height:auto;
  }
  .about-portrait img {
    height:auto;
    aspect-ratio:2/3;
  }
  .formation {
    margin-top:34px;
  }
  .formation ul {
    grid-template-columns:1fr;
  }
  .formation li {
    min-height:0;
  }
  .first-contact-grid {
      gap:40px;
    }
  .contact-notes {
    border-left:0;
    border-top:1px solid rgba(245,223,180,.35);
    padding:36px 0 0;
  }
  .faq-heading {
      margin-bottom:40px;
    }
  .site-footer {
    grid-template-columns:1fr;
    padding:48px 7vw 28px;
  }
  .footer-links {
    align-items:flex-start;
  }
  .whatsapp-float {
    right:14px;
    bottom:max(14px,env(safe-area-inset-bottom));
    min-height:48px;
    padding:9px 10px 9px 14px;
    gap:9px;
  }
  .whatsapp-float b {
    width:26px;
    height:26px;
  }
  .emergency,.copyright {
    grid-column:auto;
  }
}
@media (max-width:1100px) and (min-width:801px) {
  .site-header {
    height:76px;
    padding:0 5vw;
  }
  .desktop-nav,.header-contact {
    display:none;
  }
  .menu-toggle {
    display:block;
    background:none;
    border:0;
    color:var(--wine);
    font-size:22px;
    cursor:pointer;
  }
  .mobile-nav {
    display:flex;
    position:fixed;
    top:76px;
    left:0;
    right:0;
    z-index:19;
    background:var(--paper);
    padding:18px 7vw;
    flex-direction:column;
    gap:13px;
    transform:translateY(-150%);
    transition:transform .3s ease;
    border-bottom:1px solid var(--line);
  }
  .mobile-nav.open {
    transform:none;
  }
  .mobile-nav a {
    color:var(--wine-dark);
    text-decoration:none;
    font:16px var(--serif);
  }
}
.brand-mark {
  border:0;
  border-radius:0;
  background:none;
  overflow:hidden;
  display:grid;
  place-items:center;
}
.brand-mark img {
  display:block;
  width:100%;
  height:100%;
  object-fit:contain;
}
.hero {
  display:block;
  position:relative;
  min-height:calc(100dvh - 76px);
  padding-top:70px;
  padding-bottom:75px;
  background:#f4eee8 url('assets/marcelo-hero.jpg') center/cover no-repeat;
}
.hero-cutout {
  display:none;
}
.hero-copy {
  max-width:min(52%,590px);
  margin-left:0;
}
.hero h1 {
  font-size:clamp(43px,5vw,74px);
}
.hero-lede {
  max-width:500px;
}
.final-ornament {
  border:0;
  border-radius:0;
  background:none;
  overflow:hidden;
}
.final-ornament img {
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
}
@media (max-width:800px) {
  .hero {
    min-height:650px;
    padding-top:65px;
    padding-bottom:55px;
    background-image:linear-gradient(90deg,rgba(244,238,232,.9),rgba(244,238,232,.62)),url('assets/marcelo-hero-mobile.png');
    background-position:center top;
    background-size:cover;
  }
  .hero-copy {
    max-width:100%;
    margin-left:0;
  }
  .hero h1 {
    font-size:clamp(42px,12vw,62px);
  }
  .brand-mark {
    width:35px;
    height:35px;
  }
  .final-ornament {
    width:70px;
    height:70px;
  }
}
.hero-actions {
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}
.hero-publications {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:12px 18px;
  border:1px solid rgba(80,24,35,.32);
  color:var(--wine-dark);
  background:rgba(244,238,232,.58);
  text-decoration:none;
  font-size:11px;
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase;
  transition:transform .25s ease,background .25s ease,border-color .25s ease;
}
.hero-publications span {
  margin-left:6px;
  font-size:16px;
}
.hero-publications:hover {
  transform:translateY(-2px);
  border-color:rgba(80,24,35,.52);
  background:rgba(255,252,247,.72);
}
.whatsapp-cta {
  display:inline-flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  min-width:230px;
  min-height:54px;
  padding:12px 16px 12px 20px;
  background:var(--wine-dark);
  border:1px solid rgba(214,174,92,.82);
  box-shadow:0 12px 24px rgba(64,21,31,.2);
  color:#f8efe5;
  font-size:12px;
  font-weight:600;
  letter-spacing:.12em;
  text-decoration:none;
  text-transform:uppercase;
  transition:transform .28s ease,background .28s ease,box-shadow .28s ease;
}
.whatsapp-cta img,.whatsapp-float img {
  width:23px;
  height:23px;
  filter:brightness(0) invert(1);
}
.whatsapp-cta:hover {
  background:var(--wine);
  box-shadow:0 16px 28px rgba(64,21,31,.28);
  transform:translateY(-2px);
}
.whatsapp-cta:active {
  transform:translateY(0);
}
.whatsapp-cta:focus-visible {
  outline:3px solid var(--gold);
  outline-offset:3px;
}
.hero-whatsapp {
  margin-top:8px;
}
.whatsapp-float {
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transform:translateY(14px);
  transition:opacity .38s cubic-bezier(.16,1,.3,1),transform .38s cubic-bezier(.16,1,.3,1),visibility 0s linear .38s;
}
.whatsapp-float.is-visible {
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:none;
  transition-delay:0s;
}
@media (max-width:800px) {
  .hero-whatsapp {
    min-width:210px;
  }
  .hero-actions {
    gap:10px;
  }
  .hero-actions .hero-whatsapp {
    min-width:0;
    width:auto;
    flex:0 0 auto;
  }
  .hero-actions .hero-publications {
    min-height:50px;
    padding-inline:14px;
  }
  .whatsapp-float {
    right:14px;
    bottom:max(14px,env(safe-area-inset-bottom));
    min-height:48px;
    padding:9px 13px 9px 15px;
    min-width:0;
    gap:13px;
  }
  .whatsapp-float img {
    width:21px;
    height:21px;
  }
}
@media (prefers-reduced-motion:reduce) {
  .whatsapp-cta,.whatsapp-float {
    transition:none;
  }
}
/* Refinos do hero: a arte aprovada permanece sem filtros ou camadas extras. */
@media (min-width:1101px) {
  .site-header {
    height:82px;
    padding-inline:5.5vw;
  }
  .brand {
    gap:14px;
  }
  .brand-mark {
    width:46px;
    height:46px;
  }
  .brand strong {
    font-size:16px;
  }
  .brand small {
    font-size:10.8px;
  }
  .desktop-nav {
    gap:26px;
  }
  .desktop-nav a {
    font-size:11px;
    letter-spacing:.075em;
  }
  .hero {
      min-height:calc(100dvh - 82px);
            display:flex;
            align-items:center;
            padding-top:36px;
            padding-bottom:40px;
            background-position:center;
          }
          .hero-copy {
            max-width:560px;
            margin-left:0;
          }
          .hero h1 {
            font-size:clamp(40px,4.2vw,62px);
            line-height:1.05;
            margin-bottom:22px;
          }
          .hero-lede {
            max-width:460px;
            font-size:15px;
            line-height:1.55;
            margin-bottom:20px;
          }
    .hero-whatsapp {
        min-width:260px;
        min-height:56px;
        padding:12px 16px 12px 20px;
        margin-top:2px;
      }
      .hero-cutout {
                          display:block;
                          position:absolute;
                          left:56vw;
                          top:50%;
                          transform:translateY(-50%);
                          height:min(80vh,640px);
                          width:auto;
                          pointer-events:none;
                          z-index:1;
                        }
  .hero-whatsapp span {
    font-size:14px;
    letter-spacing:.15em;
  }
  .hero-whatsapp img {
      width:28px;
      height:28px;
    }
  }
  /* Escala de exibição alta (150%): compacta o header em larguras intermediárias. */
@media (min-width:1101px) and (max-width:1450px) {
  .site-header {
    padding-inline:4vw;
  }
  .brand small {
    font-size:9.2px;
    letter-spacing:.055em;
  }
  .desktop-nav {
    gap:16px;
  }
  .desktop-nav a {
    font-size:10px;
    letter-spacing:.06em;
  }
}
/* Escala de exibição alta (150%+): compacta o hero em viewports baixos. */
  @media (min-width:1101px) and (max-height:780px) {
    .hero {
      padding-top:26px;
      padding-bottom:30px;
    }
    .hero h1 {
      font-size:clamp(36px,3.8vw,54px);
      margin-bottom:18px;
    }
    .hero-services {
      font-size:14px;
      margin-bottom:8px;
    }
    .hero-lede {
      font-size:14px;
      line-height:1.5;
      margin-bottom:16px;
    }
    .hero-note {
      font-size:11px;
      line-height:1.5;
      margin-bottom:6px;
    }
    .hero-cutout {
      height:min(74vh,500px);
    }
  }
  @media (max-width:1100px) and (min-width:801px) {
  .hero-copy {
    margin-left:0;
    max-width:500px;
  }
  .hero h1 {
    font-size:clamp(48px,5.8vw,62px);
  }
  .hero-whatsapp {
    min-width:245px;
    min-height:57px;
  }
}
@media (max-width:800px) {
  .hero-whatsapp {
    min-height:56px;
    margin-top:4px;
  }
  .publications-hero {
    min-height:auto;
    align-items:flex-start;
    text-align:left;
  }
  .publications-hero h1 {
    font-size:clamp(34px,10vw,52px);
  }
  .publication-card {
    padding:32px 24px;
  }
}
/* Escala de exibição alta (150%+): compacta o layout inteiro em viewports baixos. */
@media (min-width:801px) and (max-height:820px) {
  .section-pad {
    padding:70px 10vw;
  }
  .formation {
    margin-top:26px;
  }
  .intro h2,.moments h2,.couples h2,.approach h2,.garden h2,.about h2,.contact-panel h2,.faq h2,.final-cta h2,.sport h2 {
    font-size:clamp(26px,3.4vw,44px);
  }
  .moments-heading {
    margin-bottom:40px;
  }
  .moment-list article {
    padding:22px 26px 12px 0;
  }
  .approach h2 {
    font-size:clamp(24px,3vw,38px);
  }
  .approach-copy p:not(.eyebrow) {
    font-size:15px;
    line-height:1.58;
    margin-bottom:16px;
  }
  .approach-portrait {
    height:calc(100% - 170px);
    min-height:540px;
  }
  .garden-art {
    height:350px;
  }
  .about-portrait {
    height:calc(100% - 170px);
    min-height:620px;
  }
  .body-copy {
    font-size:16px;
  }
  .faq-list details {
    padding:14px 0;
  }
  .contact-notes>div {
    padding:0 0 18px;
    margin:0 0 18px;
  }
}
@media (min-width:801px) and (max-height:680px) {
  .section-pad {
    padding:48px 10vw;
  }
  .moments-heading {
    margin-bottom:28px;
  }
  .approach-portrait {
    height:calc(100% - 150px);
    min-height:480px;
  }
  .about-portrait {
    height:calc(100% - 150px);
    min-height:520px;
  }
  .garden-art {
    height:290px;
  }
  .moment-list article {
    padding:16px 20px 10px 0;
  }
}
/* Cabeçalho persistente: mantém a mesma posição visual inicial e protege âncoras. */
body {
  padding-top:76px;
}
.site-header {
  position:fixed;
  inset:0 0 auto;
  width:100%;
  box-shadow:0 3px 14px rgba(82,42,42,.05);
}
section[id] {
  scroll-margin-top:94px;
}
@media (min-width:1101px) {
  body {
    padding-top:82px;
  }
}
@media (max-width:800px) {
  body {
    padding-top:76px;
  }
  section[id] {
    scroll-margin-top:82px;
  }
}
/* A marca tem traços finos nas bordas: nunca recortar o desenho em tamanhos reduzidos. */
.brand-mark,.final-ornament {
  overflow:visible;
  padding:2px;
}
.brand-mark img,.final-ornament img {
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center;
}
/* Nova marca fornecida pelo cliente: o arquivo permanece íntegro; só o espaço vazio é enquadrado na interface. */
.client-logo {
  overflow:hidden;
  padding:0;
  background:transparent;
}
.client-logo img {
  transform:scale(1.45);
  transform-origin:center;
}
.couples {
  background:#e9ddd3;
}
.couples h2 {
  color:var(--wine-dark);
  margin:0;
}
.hero-credential {
  display:flex;
  align-items:center;
  gap:9px;
  margin:-9px 0 24px;
  color:#6d504c;
  font-size:11px;
  font-weight:600;
  letter-spacing:.1em;
  line-height:1.35;
  text-transform:uppercase;
}
.hero-credential::before {
  content:"";
  width:20px;
  height:1px;
  background:var(--gold);
  flex:none;
}
@media (max-width:800px) {
  .hero-credential {
    margin:-7px 0 22px;
    font-size:10px;
    letter-spacing:.085em;
  }
  .hero-credential::before {
    width:16px;
      }
    }
    /* Regra de composição: toda grade de duas colunas compartilha a mesma linha de início. */
    .intro-grid,.approach,.garden,.about,.about-body,.first-contact {
      align-items:start;
    }
    .approach {
      align-items:stretch;
    }
    .approach-copy {
      min-height:400px;
    }
.garden-copy {
  min-height:430px;
}
@media (max-width:800px) {
  .approach-copy,.garden-copy {
    min-height:0;
  }
}
/* Revelação única e discreta: guia a leitura sem criar movimento contínuo. */
@media (prefers-reduced-motion:no-preference) {
  .js-motion .section-pad:not(.hero) {
    opacity:0;
    transform:translateY(16px);
    transition:opacity .65s cubic-bezier(.16,1,.3,1),transform .65s cubic-bezier(.16,1,.3,1);
  }
  .js-motion .section-pad:not(.hero).visible {
    opacity:1;
    transform:none;
  }
}
/* Acessibilidade: foco visível em qualquer elemento interativo. */
a:focus-visible,summary:focus-visible,button:focus-visible {
  outline:3px solid var(--gold);
  outline-offset:3px;
  border-radius:2px;
}
::selection {
  background:var(--wine-dark);
  color:#f8efe5;
}
/* Transparência reduzida: header com fundo sólido, sem blur. */
@media (prefers-reduced-transparency:reduce) {
  .site-header {
    background:var(--paper);
    backdrop-filter:none;
  }
}


.publication-card-featured {
  position:relative;
  overflow:hidden;
  background:linear-gradient(135deg,rgba(255,252,247,.72),rgba(244,238,232,.92));
}
.publication-card-featured::before {
  content:"";
  position:absolute;
  inset:18px;
  border:1px solid rgba(200,161,69,.28);
  pointer-events:none;
}
.publication-card-featured>* {
  position:relative;
}
.publication-page {
  background:var(--paper);
}
.publication-article-hero {
  min-height:560px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
  background:
    radial-gradient(circle at 85% 20%,rgba(200,161,69,.22),transparent 28%),
    linear-gradient(135deg,var(--paper-deep),var(--paper));
}
.back-link {
  color:var(--wine);
  text-decoration:none;
  font-size:13px;
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:34px;
}
.publication-article-hero h1 {
  max-width:880px;
  margin:0;
  font:400 clamp(44px,6vw,78px)/1.06 var(--serif);
  letter-spacing:-.06em;
  color:var(--wine-dark);
}
.publication-article-hero>p:not(.eyebrow) {
  max-width:760px;
  margin:30px 0 0;
  color:#685655;
  font-size:19px;
  line-height:1.65;
}
.publication-actions {
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:34px;
}
.publication-credits {
  display:grid;
  grid-template-columns:minmax(0,.72fr) minmax(0,1.28fr);
  gap:8vw;
  align-items:start;
  background:#fffaf4;
}
.publication-credits h2,
.reader-heading h2 {
  margin:0;
  font:400 clamp(34px,4vw,56px)/1.12 var(--serif);
  letter-spacing:-.05em;
  color:var(--wine-dark);
}
.credits-panel {
  border:1px solid rgba(109,80,76,.16);
  background:rgba(244,238,232,.48);
  padding:38px 42px;
  color:#5f4d4b;
}
.credits-panel p {
  margin:0 0 22px;
  font-size:16px;
  line-height:1.65;
}
.credits-panel strong {
  color:var(--wine-dark);
  font-weight:700;
}
.credits-panel ul {
  columns:2;
  gap:32px;
  margin:12px 0 0;
  padding-left:18px;
  line-height:1.75;
}
.publication-reader-section {
  background:var(--paper);
}
.reader-heading {
  max-width:820px;
  margin:0 auto 40px;
  text-align:center;
}
.reader-heading p:not(.section-kicker) {
  max-width:680px;
  margin:22px auto 0;
  color:#685655;
  font-size:17px;
  line-height:1.65;
}

.reader-download {
  margin-top:24px;
}
.pdf-reader-shell {
  max-width:1120px;
  margin:0 auto;
  padding:18px;
  border:1px solid rgba(109,80,76,.18);
  background:linear-gradient(180deg,#fffaf4,#eaded6);
  box-shadow:0 28px 70px rgba(63,45,43,.12);
}
.pdf-reader {
  display:block;
  width:100%;
  height:min(82vh,920px);
  min-height:680px;
  border:0;
  background:#f7f2ec;
}
.reader-fallback {
  max-width:720px;
  margin:24px auto 0;
  text-align:center;
  color:#685655;
  font-size:14px;
}
.reader-fallback a {
  color:var(--wine);
  font-weight:700;
}
@media (max-width:800px) {
  .publication-article-hero {
    min-height:auto;
    align-items:flex-start;
  }
  .publication-article-hero>p:not(.eyebrow) {
    font-size:17px;
  }
  .publication-actions {
    width:100%;
  }
  .publication-actions .button {
    flex:1 1 100%;
    justify-content:center;
  }
  .publication-credits {
    grid-template-columns:1fr;
    gap:34px;
  }
  .credits-panel {
    padding:28px 24px;
  }
  .credits-panel ul {
    columns:1;
  }
  .pdf-reader-shell {
    padding:8px;
    margin-left:-2vw;
    margin-right:-2vw;
  }
  .pdf-reader {
    height:72vh;
    min-height:560px;
  }
}
