body[data-page="velas"]{
  padding-top:150px;
}

@media(max-width:980px){
  body[data-page="velas"]{
    padding-top:118px;
  }
}

@media(max-width:640px){
  body[data-page="velas"]{
    padding-top:104px;
  }
}

:root{
  --bg:#f7f4ee;
  --paper:#fbfaf7;
  --ink:#17120e;
  --muted:#5f564d;
  --line:#ddd3c5;
  --accent:#c6b299;
  --accent-2:#9f8d76;

  --serif:'Cormorant Garamond', serif;
  --sans:'IBM Plex Sans', sans-serif;

  --max:1240px;
  --r:8px;
  --shadow:0 20px 60px rgba(0,0,0,.06);
}

*{box-sizing:border-box;margin:0;padding:0}

html {
  scroll-behavior: smooth;
  overscroll-behavior: none;
}

#xc-curtain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background: var(--bg);
  opacity: 1;
  transition:
    opacity 1.4s cubic-bezier(.4, 0, .2, 1),
    visibility 1.4s cubic-bezier(.4, 0, .2, 1);
  visibility: visible;
}

#xc-curtain.xc-opened {
  opacity: 0;
  visibility: hidden;
}

body{
  background:var(--bg);
  color:var(--ink);
  font-family:var(--sans);
  letter-spacing:.01em;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  font-weight:400;
}

img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
button{font:inherit}
.wrap{max-width:var(--max);margin:0 auto;padding:0 24px}

header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(247,244,238,.82);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(231,223,211,.9);
}

.nav{
  min-height:74px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:12px;
  letter-spacing:.34em;
  text-transform:uppercase;
  white-space:nowrap;
}

.brand-mark{
  width:9px;
  height:9px;
  border-radius:999px;
  background:var(--accent);
  flex:0 0 auto;
}

.navlinks{
  display:flex;
  gap:18px;
  align-items:center;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.navlinks a{
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  opacity:.86;
  transition:.25s ease;
}

.navlinks a:hover{opacity:1}

.navlinks .cta,
.btn{
  border:1px solid var(--ink);
  border-radius:999px;
  padding:12px 18px;
  font-size:11px;
  letter-spacing:.24em;
  text-transform:uppercase;
  transition:.25s ease;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  cursor:pointer;
  background:transparent;
  color:var(--ink);
}

.navlinks .cta:hover,
.btn:hover{
  background:var(--ink);
  color:#fff;
}

.btn.light{
  border-color:rgba(255,255,255,.58);
  color:#fff;
}

.btn.light:hover{
  background:#fff;
  color:var(--ink);
}

.btn.soft{
  border-color:var(--line);
  background:rgba(255,255,255,.5);
}

.btn.soft:hover{
  background:var(--ink);
  border-color:var(--ink);
  color:#fff;
}

.hero{
  padding:22px 0 34px;
}

.hero-shell{
  min-height:88vh;
  display:grid;
  grid-template-columns:1.08fr .92fr;
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--r);
  overflow:hidden;
  box-shadow:var(--shadow);
}

.hero-copy{
  padding:58px 48px 52px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  background:
    radial-gradient(circle at top left, rgba(205,189,163,.16), transparent 42%),
    linear-gradient(180deg, #fff 0%, #fbfaf7 100%);
}

.eyebrow{
  font-size:11px;
  letter-spacing:.34em;
  text-transform:uppercase;
  color:#6a6056;
  margin-bottom:18px;
}

h1{
  font-family:"Cormorant Garamond", serif;
  font-size:clamp(4.3rem, 8vw, 8.8rem);
  font-weight:300;
  line-height:.88;
  letter-spacing:-0.045em;
  max-width:9.5ch;
  color:#120d0b;

  text-wrap:balance;

  -webkit-font-smoothing:antialiased;
  text-rendering:geometricPrecision;
}

.hero-text{
  max-width:58ch;
  font-size:16px;
  line-height:1.95;
  color:#4f463f;
  margin-top:22px;
}

.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:28px;
}

.hero-notes{
  margin-top:28px;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
}

.hero-note{
  border-top:1px solid var(--line);
  padding-top:12px;
}

.hero-note .n{
  display:block;
  font-family:var(--serif);
  font-size:28px;
  line-height:1;
  margin-bottom:6px;
  color:#17120e;
}

.hero-note .t{
  font-size:12px;
  line-height:1.7;
  color:#5c544c;
}

.hero-media{
  position:relative;
  min-height:620px;
  background:
    linear-gradient(180deg, rgba(18,18,18,.08), rgba(18,18,18,.24)),
    url('assets/img/velas/7U1A0253.jpg') center center / cover no-repeat;
}

.hero-card{
  position:absolute;
  left:26px;
  right:26px;
  bottom:26px;
  max-width:330px;
  background:rgba(255,255,255,.84);
  backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,.7);
  padding:18px 18px 16px;
  border-radius:var(--r);
  box-shadow:var(--shadow);
}

.hero-card .small{
  font-size:10px;
  letter-spacing:.3em;
  text-transform:uppercase;
  color:#6a6056;
  margin-bottom:8px;
}

.hero-card p{
  font-size:14px;
  line-height:1.75;
  color:#35312d;
}

main{padding-bottom:88px}
section{padding:72px 0}

h2{
  font-family:var(--serif);
  font-size:clamp(34px,3.3vw,56px);
  font-weight:500;
  line-height:.98;
  letter-spacing:-.015em;
  color:#17120e;
}

.section-head{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:34px;
  align-items:end;
  margin-bottom:28px;
}

.section-head p,
.lead{
  font-size:15px;
  line-height:1.95;
  color:#564d45;
  max-width:68ch;
}

.manifesto{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  align-items:start;
}

.manifesto-copy{
  padding-right:22px;
}

.manifesto-quote{
  font-family:var(--serif);
  font-size:clamp(42px,4.2vw,68px);
  line-height:.95;
  font-weight:500;
  margin-bottom:18px;
  color:#17120e;
}

.manifesto-copy p{
  font-size:15px;
  line-height:1.95;
  color:#574f47;
  max-width:60ch;
}

.manifesto-media{
  display:grid;
  grid-template-columns:1fr;
  gap:18px;
}

.frame{
  position:relative;
  overflow:hidden;
  border-radius:var(--r);
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  cursor:zoom-in;
}

.frame img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .5s ease;
}

.frame:hover img{transform:scale(1.03)}

.frame.tall{aspect-ratio:4/5}
.frame.land{aspect-ratio:16/11}
.frame.square{aspect-ratio:1/1}

.collections{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:28px;
  margin-top:26px;
}

.collection{
  border:1px solid var(--line);
  background:rgba(255,255,255,.66);
  border-radius:24px;
  transition:.3s ease;
}

.collection.horizontal{
  width:100%;
  max-width:450px;
  display:flex;
  gap:16px;
  align-items:center;
  padding:16px 18px;
  box-shadow:0 10px 30px rgba(0,0,0,.03);
  margin:0;
}

.collection:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 34px rgba(0,0,0,.08);
  background:#fff;
}

.collection.horizontal .collection-image{
  flex:0 0 82px;
  width:82px;
  height:120px;
  border-radius:18px;
  overflow:hidden;
}

.collection.horizontal .collection-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .4s ease;
}

.collection.horizontal:hover .collection-image img{
  transform:scale(1.05);
}

.collection .tag{
  display:inline-block;
  font-size:10px;
  letter-spacing:.28em;
  text-transform:uppercase;
  color:#6a6056;
  margin-bottom:8px;
}

.collection-content h3{
  font-family:var(--serif);
  font-weight:500;
  font-size:clamp(30px,2.6vw,42px);
  line-height:1.02;
  margin:0 0 10px;
  color:#17120e;
}

.collection-content p{
  font-size:15px;
  line-height:1.85;
  color:#5b5249;
  max-width:48ch;
}

.editorial-grid{
  margin-top:22px;
  display:grid;
  grid-template-columns:1.18fr .82fr;
  gap:24px;
  align-items:start;
}

.editorial-stack{
  display:grid;
  gap:24px;
}

.statement{
  margin-top:30px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  align-items:center;
}

.statement-copy{
  padding:16px 6px;
}

.statement-copy h3{
  font-family:var(--serif);
  font-weight:500;
  font-size:clamp(34px,3vw,48px);
  line-height:1;
  margin-bottom:14px;
  color:#17120e;
}

.statement-copy p{
  font-size:15px;
  line-height:1.95;
  color:#574f47;
  max-width:56ch;
}

.palette{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:24px;
  align-items:start;
}

.palette-board{
  border:1px solid var(--line);
  background:rgba(255,255,255,.64);
  border-radius:20px;
  padding:22px;
  box-shadow:var(--shadow);
}

.palette-list{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
  margin-top:18px;
}

.swatch{
  border:1px solid var(--line);
  border-radius:14px;
  padding:14px;
  background:#fff;
}

.swatch-chip{
  display:block;
  width:64px;
  height:20px;
  border-radius:999px;
  margin:12px 0 16px;
  border:1px solid rgba(18,18,18,.08);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.35),
    0 4px 10px rgba(0,0,0,.05);
}

.swatch-chip.nude{ background:#d8c1ad; }
.swatch-chip.beige{ background:#cdbba4; }
.swatch-chip.bone{ background:#ebe4d8; }
.swatch-chip.burgundy{ background:#6f2d37; }
.swatch-chip.olive{ background:#7d8066; }
.swatch-chip.custom{ background:linear-gradient(90deg,#d8c1ad 0%, #cdbba4 25%, #ebe4d8 50%, #6f2d37 75%, #7d8066 100%); }

.swatch .label{
  font-size:10px;
  letter-spacing:.26em;
  text-transform:uppercase;
  color:#6a6056;
  margin-bottom:8px;
}

.swatch strong{
  display:block;
  font-family:var(--serif);
  font-size:24px;
  font-weight:500;
  line-height:1;
  margin-bottom:8px;
  color:#17120e;
}

.swatch p{
  font-size:13px;
  line-height:1.7;
  color:#5b5249;
}

.gallery-head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:20px;
  margin-bottom:22px;
}

.gallery-line-wrap{
  position:relative;
  width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
  overflow:hidden;
  padding:0;
  border:none;
  border-radius:0;
  background:transparent;
  box-shadow:none;
}

.gallery-line{
  display:flex;
  align-items:stretch;
  gap:18px;
  width:max-content;
  will-change:transform;
  cursor:grab;
  user-select:none;
}

.gallery-line.is-dragging{
  cursor:grabbing;
}

.gallery-card{
  flex:0 0 34vw;
  width:34vw;
  aspect-ratio:0.78 / 1;
  overflow:hidden;
  border-radius:0px;
  background:transparent;
  border:none;
  box-shadow:none;
  cursor:zoom-in;
  transform-origin:center center;
  transition:
    transform 0.55s cubic-bezier(.16,.84,.28,1),
    opacity   0.55s cubic-bezier(.16,.84,.28,1),
    filter    0.55s cubic-bezier(.16,.84,.28,1);
  will-change:transform, opacity, filter;
}

.gallery-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .45s ease;
  pointer-events:none;
  -webkit-user-drag:none;
}

.gallery-caption{
  margin-top:18px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
}

.gallery-caption p{
  max-width:64ch;
  font-size:14px;
  line-height:1.9;
  color:#5c544c;
}

.cta-band{
  position:relative;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:var(--r);
  background:
    linear-gradient(180deg, rgba(18,18,18,.36), rgba(18,18,18,.46)),
    url('assets/img/velas/7U1A2471.jpg') center center / cover no-repeat;
  min-height:420px;
  box-shadow:var(--shadow);
}

.cta-band-inner{
  min-height:420px;
  display:flex;
  align-items:flex-end;
  padding:34px;
}

.cta-card{
  max-width:620px;
  color:#fff;
}

.cta-card .eyebrow{
  color:rgba(255,255,255,.84);
  margin-bottom:12px;
}

.cta-card h2{
  color:#fff;
  margin-bottom:14px;
}

.cta-card p{
  font-size:15px;
  line-height:1.9;
  color:rgba(255,255,255,.92);
  max-width:60ch;
}

.cta-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:24px;
}

footer{
  border-top:1px solid var(--line);
  padding:20px 0 30px;
  color:#5f564d;
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.footer-row{
  display:flex;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
  align-items:center;
}

.image-modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.88);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:18px;
  z-index:999;
  opacity:0;
  pointer-events:none;
  transition:opacity .25s ease;
}

.image-modal.show{
  opacity:1;
  pointer-events:auto;
}

.image-modal-content{
  position:relative;
  width:min(1120px,96vw);
  max-height:92vh;
}

.image-modal-content img{
  width:100%;
  max-height:92vh;
  object-fit:contain;
  background:#000;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
}

.close-modal{
  position:absolute;
  top:-12px;
  right:-12px;
  width:42px;
  height:42px;
  border:none;
  border-radius:999px;
  background:rgba(255,255,255,.16);
  color:#fff;
  font-size:22px;
  cursor:pointer;
  backdrop-filter:blur(8px);
}

.gallery-card {
  position: relative;
}

.gallery-card,
.gallery-card::after {
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.gallery-card::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: transparent;
  transition:
    opacity  .52s cubic-bezier(.22,.61,.36,1),
    background .52s cubic-bezier(.22,.61,.36,1);
  z-index: 2;
  opacity: 0;
}

.gallery-card.xc-active {
  opacity: 1;
  filter: none;
  z-index: 3;
}

.gallery-card.xc-active::after {
  opacity: 0;
  background: transparent;
}

.gallery-card.xc-side {
  opacity: 1;
  filter: none;
}

.gallery-card.xc-side::after {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.09) 0%,
    rgba(0, 0, 0, 0.15) 100%
  );
  opacity: 1;
}

.gallery-card.xc-far {
  opacity: 1;
  filter: none;
}

.gallery-card.xc-far::after {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.16) 0%,
    rgba(0, 0, 0, 0.26) 100%
  );
  opacity: 1;
}

.gallery-line.is-dragging .gallery-card img {
  transition: none;
}

@media (max-width: 1100px){
  .hero-shell,
  .manifesto,
  .section-head,
  .palette,
  .statement,
  .editorial-grid{
    grid-template-columns:1fr;
  }

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

  .hero-copy{
    padding:42px 30px 34px;
  }

  .hero-media{
    min-height:520px;
  }

  .gallery-card{
    width:280px;
  }
}

@media (max-width: 820px){
  .gallery-line{
    gap:22px;
  }

  .gallery-card{
    flex:0 0 80vw;
    width:80vw;
    aspect-ratio:0.72 / 1;
    border-radius:4px;
  }
}

@media (max-width: 740px){
  .wrap{padding:0 18px;}

  .collections{
    grid-template-columns:1fr;
    gap:18px;
  }

  .collection.horizontal{
    max-width:100%;
    padding:16px;
    gap:14px;
    align-items:flex-start;
  }

  .collection.horizontal .collection-image{
    flex:0 0 70px;
    width:70px;
    height:110px;
    border-radius:16px;
  }

  .collection-content h3{
    font-size:20px;
    line-height:1.08;
    margin:0 0 8px;
  }

  .collection-content p{
    font-size:14px;
    line-height:1.65;
    color:#5b5249;
  }

  .collection .tag{
    font-size:9px;
    letter-spacing:.24em;
    margin-bottom:6px;
  }

  .nav{
    min-height:68px;
    align-items:flex-start;
    padding:14px 0;
    flex-direction:column;
  }

  .navlinks{
    width:100%;
    justify-content:flex-start;
    gap:14px;
  }

  h1{
  font-size:clamp(3.8rem, 14vw, 5.8rem);
  max-width:10ch;
}

  .hero-shell{
    min-height:auto;
  }

  .hero-copy{
    padding:34px 22px 28px;
  }

  .hero-media{
    min-height:420px;
  }

  .hero-card{
    left:18px;
    right:18px;
    bottom:18px;
  }

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

  .palette-list{
    grid-template-columns:1fr;
  }

  section{
    padding:58px 0;
  }

  .cta-band,
  .cta-band-inner{
    min-height:360px;
  }

  .gallery-caption{
    align-items:flex-start;
  }
}

.cta-final {
  padding: 48px 0 72px;
}

.cta-final-inner {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn.dark {
  background: #121212;
  color: #fff;
  border: 1px solid #121212;
}

.btn.dark:hover {
  background: #000;
  border-color: #000;
}

.btn.ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
}

.btn.ghost:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.xc-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity  1.1s cubic-bezier(.25,.46,.45,.94),
    transform 1.1s cubic-bezier(.25,.46,.45,.94);
  will-change: transform, opacity;
}

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

.xc-reveal-deep {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity  1.3s cubic-bezier(.25,.46,.45,.94),
    transform 1.3s cubic-bezier(.25,.46,.45,.94);
  will-change: transform, opacity;
}

.xc-reveal-deep.xc-visible {
  opacity: 1;
  transform: translateY(0);
}

.xc-reveal-left {
  opacity: 0;
  transform: translateX(-14px);
  transition:
    opacity  1.15s cubic-bezier(.25,.46,.45,.94),
    transform 1.15s cubic-bezier(.25,.46,.45,.94);
}

.xc-reveal-left.xc-visible {
  opacity: 1;
  transform: translateX(0);
}

.xc-d1 { transition-delay: .12s }
.xc-d2 { transition-delay: .26s }
.xc-d3 { transition-delay: .42s }
.xc-d4 { transition-delay: .60s }
.xc-d5 { transition-delay: .80s }
.xc-d6 { transition-delay: 1.02s }

.hero-copy .eyebrow     { transition-duration: 1.0s  }
.hero-copy h1           { transition-duration: 1.4s  }
.hero-copy .hero-text   { transition-duration: 1.2s  }
.hero-copy .hero-actions{ transition-duration: 1.1s  }
.hero-copy .hero-notes  { transition-duration: 1.1s  }

.xc-divider {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--accent);
  margin: 0 0 32px;
  opacity: .72;
}

.posts-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr .88fr;
  gap: 20px;
  align-items: start;
}

.post-card:first-child .post-card-image {
  aspect-ratio: 3 / 4;
}

.post-card:not(:first-child) .post-card-image {
  aspect-ratio: 4 / 3;
}

.post-card:nth-child(2) {
  margin-top: 48px;
}

.post-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,.58);
  transition:
    transform .42s cubic-bezier(.22,.61,.36,1),
    box-shadow .42s cubic-bezier(.22,.61,.36,1),
    background .42s ease;
  cursor: pointer;
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 52px rgba(0,0,0,.09);
  background: #fff;
}

.post-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.post-card-image {
  overflow: hidden;
  background: var(--line);
  position: relative;
}

.post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .72s cubic-bezier(.16,.84,.28,1);
}

.post-card:hover .post-card-image img {
  transform: scale(1.06);
}

.post-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.14) 100%);
  pointer-events: none;
  z-index: 1;
}

.post-card-body {
  padding: 22px 24px 26px;
}

.post-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 10px;
}

.post-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.08;
  letter-spacing: -.01em;
  margin-bottom: 10px;
  color:#17120e;
  transition: color .25s ease;
}

.post-card:hover .post-title {
  color:#4f463f;
}

.post-excerpt {
  font-size: 13px;
  line-height: 1.85;
  color:#5b5249;
}

.post-card-body::after {
  content: '→';
  display: block;
  margin-top: 14px;
  font-size: 16px;
  color: var(--accent);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .3s ease, transform .3s ease;
}

.post-card:hover .post-card-body::after {
  opacity: 1;
  transform: translateX(0);
}

.posts-head {
  margin-bottom: 48px;
  max-width: 480px;
}

.posts-section {
  padding: 88px 0 104px;
  border-top: 1px solid var(--line);
}

@media (max-width: 900px) {
  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .post-card:nth-child(2) { margin-top: 0; }

  .post-card:first-child .post-card-image,
  .post-card:not(:first-child) .post-card-image {
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 600px) {
  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .posts-section { padding: 64px 0 80px; }

  .post-card:first-child .post-card-image,
  .post-card:not(:first-child) .post-card-image,
  .post-card-image {
    aspect-ratio: 3 / 4;
  }

  .post-card:nth-child(2) { margin-top: 0; }

  .post-card-body {
    padding: 14px 14px 16px;
  }

  .post-title {
    font-size: 16px;
    margin-bottom: 6px;
    color:#17120e;
  }

  .post-excerpt {
    display: none;
  }

  .post-tag {
    font-size: 9px;
    margin-bottom: 6px;
  }

  .post-card-body::after {
    opacity: 0.5;
    transform: translateX(0);
    margin-top: 8px;
  }
}

/* TEXTO EDITORIAL SILENCIOSO */
.xc-silent-text {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 2.4vw, 2.35rem);
  font-weight: 300;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: rgba(42, 38, 34, 0.78);
  max-width: 620px;
  margin: 32px auto;
  text-align: center;
}

/* =========================================================
   PRIVATE EDITORIAL REFINEMENT
========================================================= */

h1{
  font-size:clamp(3.7rem, 6vw, 7.2rem) !important;

  line-height:.92 !important;

  letter-spacing:-0.055em !important;

  font-weight:300 !important;

  color:#181512 !important;

  max-width:8.2ch !important;

  text-wrap:balance;

  opacity:.96;
}


.hero-copy{
  padding:72px 72px 62px !important;
}


.hero-text{
  font-size:15px !important;

  line-height:2.08 !important;

  letter-spacing:-0.014em !important;

  max-width:48ch !important;

  color:rgba(34,30,27,.72) !important;

  margin-top:38px !important;
}


.eyebrow{
  font-size:10px !important;

  letter-spacing:.42em !important;

  color:rgba(60,54,49,.56) !important;
}


.hero-shell{
  background:#f8f6f2 !important;

  border:1px solid rgba(0,0,0,.06) !important;

  box-shadow:
    0 30px 80px rgba(0,0,0,.03) !important;
}


.hero-note .n{
  font-size:22px !important;

  opacity:.88;
}


.hero-note .t{
  font-size:12px !important;

  line-height:1.9 !important;

  color:rgba(40,35,31,.62) !important;
}


.btn{
  height:54px !important;

  padding:0 26px !important;

  font-size:10px !important;

  letter-spacing:.34em !important;

  border:1px solid rgba(0,0,0,.12) !important;

  background:rgba(255,255,255,.42) !important;

  backdrop-filter:blur(10px);
}


.btn:hover{
  background:#181512 !important;
}


/* MOBILE */
@media (max-width: 600px) {
  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .posts-section { padding: 64px 0 80px; }

  .post-card:first-child .post-card-image,
  .post-card:not(:first-child) .post-card-image,
  .post-card-image {
    aspect-ratio: 3 / 4;
  }

  .post-card:nth-child(2) { margin-top: 0; }

  .post-card-body {
    padding: 14px 14px 16px;
  }

  .post-title {
    font-size: 16px;
    margin-bottom: 6px;
    color:#17120e;
  }

  .post-excerpt {
    display: none;
  }

  .post-tag {
    font-size: 9px;
    margin-bottom: 6px;
  }

  .post-card-body::after {
    opacity: 0.5;
    transform: translateX(0);
    margin-top: 8px;
  }
}