/* ==========================================================================
   VOLPH PUBLIC DESIGN SYSTEM
   Living Editorial Ecosystem — 2026
   ========================================================================== */

:root{
  --volph-black:#050505;
  --volph-graphite:#111111;
  --volph-carbon:#1A1A1A;

  --volph-ivory:#F5F0E7;
  --volph-warm:#EFE7DA;
  --volph-stone:#D8CEC0;
  --volph-paper:#FBF7EF;

  --volph-white:#F5F5F3;
  --volph-ice:#8E949C;
  --volph-gold:#C6A972;
  --volph-bronze:#7A5C3E;

  --volph-text-dark:#111111;
  --volph-text-soft:#5E5A52;

  --volph-line-dark:rgba(17,17,17,.12);
  --volph-line:rgba(245,245,243,.12);
  --volph-line-soft:rgba(245,245,243,.07);

  --volph-max:1180px;
  --volph-wide:1380px;
  --volph-home-max:1240px;

  --volph-radius:18px;
  --volph-radius-sm:12px;
  --volph-header:76px;
}

/* ==========================================================================
   Reset
   ========================================================================== */

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
  background:var(--volph-paper);
}

body{
  margin:0;
  min-height:100vh;
  background:var(--volph-paper);
  color:var(--volph-text-dark);
  font-family:Inter,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
  -webkit-font-smoothing:antialiased;
  text-rendering:geometricPrecision;
}

body.volph-menu-open{
  overflow:hidden;
}

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

a{
  color:inherit;
  text-decoration:none;
  transition:color .22s ease, opacity .22s ease, border-color .22s ease, background .22s ease, transform .22s ease;
}

button,
input,
textarea,
select{
  font:inherit;
}

::selection{
  background:rgba(198,169,114,.28);
  color:var(--volph-black);
}

/* ==========================================================================
   Base global
   ========================================================================== */

.volph-page,
.volph-home-main{
  min-height:100vh;
  background:var(--volph-paper);
  color:var(--volph-text-dark);
  overflow:hidden;
}

.volph-container,
.volph-home-container{
  width:min(var(--volph-max), calc(100% - 44px));
  margin-inline:auto;
}

.volph-home-container{
  width:min(var(--volph-home-max), calc(100% - 56px));
}

.volph-section{
  padding:92px 0;
}

.volph-section--dark{
  background:var(--volph-black);
  color:var(--volph-white);
}

.volph-section--light{
  background:var(--volph-paper);
  color:var(--volph-text-dark);
}

.volph-kicker,
.volph-home-kicker{
  display:inline-flex;
  align-items:center;
  gap:12px;
  margin:0 0 18px;
  color:var(--volph-bronze);
  font-size:10px;
  font-weight:850;
  letter-spacing:.22em;
  text-transform:uppercase;
}

.volph-kicker:before,
.volph-home-kicker:before{
  content:"";
  width:28px;
  height:1px;
  background:currentColor;
}

.volph-home-kicker{
  justify-content:center;
}

.volph-home-kicker:after{
  content:"";
  width:28px;
  height:1px;
  background:currentColor;
}

.volph-section--dark .volph-kicker,
.volph-section--dark .volph-home-kicker{
  color:var(--volph-gold);
}

/* ==========================================================================
   Header
   ========================================================================== */

.volph-header{
  position:fixed;
  inset:0 0 auto 0;
  z-index:9998;
  background:rgba(251,247,239,.88);
  border-bottom:1px solid rgba(17,17,17,.08);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
}

.volph-header__inner{
  width:min(var(--volph-wide), calc(100% - 48px));
  height:var(--volph-header);
  margin-inline:auto;
  display:grid;
  grid-template-columns:150px 1fr auto;
  align-items:center;
  gap:28px;
}

.volph-header__brand{
  width:112px;
  display:inline-flex;
  align-items:center;
}

.volph-header__brand img{
  width:100%;
  height:auto;
}

.volph-header__nav{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:28px;
}

.volph-header__nav a,
.volph-header__login{
  color:rgba(17,17,17,.74);
  font-size:11px;
  font-weight:750;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.volph-header__nav a:hover,
.volph-header__login:hover{
  color:var(--volph-black);
}

.volph-header__actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:16px;
}

.volph-header__menu-btn{
  width:38px;
  height:38px;
  border:1px solid rgba(17,17,17,.16);
  border-radius:10px;
  background:transparent;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  padding:0 10px;
  cursor:pointer;
}

.volph-header__menu-btn span{
  display:block;
  width:100%;
  height:1px;
  background:var(--volph-black);
}

/* ==========================================================================
   Menu Overlay
   ========================================================================== */

.volph-menu{
  position:fixed;
  inset:0;
  z-index:9999;
  opacity:0;
  visibility:hidden;
  background:var(--volph-paper);
  overflow-y:auto;
  transition:opacity .28s ease, visibility .28s ease;
}

.volph-menu.active{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

.volph-menu:not(.active){
  pointer-events:none;
}

.volph-menu__inner{
  width:min(var(--volph-wide), calc(100% - 48px));
  min-height:100vh;
  margin-inline:auto;
  padding:28px 0 72px;
}

.volph-menu__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-bottom:70px;
}

.volph-menu__brand{
  width:112px;
  display:inline-flex;
}

.volph-menu__brand img{
  width:100%;
  height:auto;
}

.volph-menu__close{
  border:1px solid rgba(17,17,17,.16);
  border-radius:10px;
  background:transparent;
  color:var(--volph-black);
  padding:12px 16px;
  cursor:pointer;
  font-size:11px;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-weight:700;
}

.volph-menu__grid{
  display:grid;
  grid-template-columns:.8fr .8fr 1.4fr;
  gap:36px;
}

.volph-menu__column{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.volph-menu__label{
  margin-bottom:18px;
  color:var(--volph-bronze);
  font-size:10px;
  font-weight:850;
  letter-spacing:.22em;
  text-transform:uppercase;
}

.volph-menu__column a{
  color:var(--volph-black);
  font-family:Georgia,"Times New Roman",serif;
  font-size:24px;
  line-height:1.08;
  letter-spacing:-.03em;
  font-weight:500;
}

.volph-menu__column a:hover{
  color:var(--volph-bronze);
}

.volph-menu__feature{
  min-height:440px;
  padding:42px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  border:1px solid rgba(17,17,17,.12);
  border-radius:var(--volph-radius);
  background:linear-gradient(180deg, rgba(255,255,255,.45), rgba(255,255,255,.16)), var(--volph-warm);
}

.volph-menu__feature h3{
  max-width:620px;
  margin:0 0 20px;
  color:var(--volph-black);
  font-family:Georgia,"Times New Roman",serif;
  font-size:34px;
  line-height:1.02;
  letter-spacing:-.035em;
  font-weight:500;
}

.volph-menu__feature p{
  max-width:500px;
  margin:0 0 30px;
  color:var(--volph-text-soft);
  line-height:1.75;
}

.volph-menu__cta{
  width:max-content;
  color:var(--volph-bronze);
  border-bottom:1px solid rgba(122,92,62,.45);
  padding-bottom:8px;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.volph-footer{
  background:var(--volph-black);
  color:var(--volph-white);
  border-top:1px solid rgba(245,245,243,.10);
  padding:72px 0 30px;
}

.volph-footer__inner{
  width:min(var(--volph-wide), calc(100% - 48px));
  margin-inline:auto;
  display:grid;
  grid-template-columns:240px 1fr;
  gap:72px;
  align-items:start;
}

.volph-footer__logo{
  display:inline-flex;
  margin-bottom:18px;
  color:var(--volph-white);
  font-family:Georgia,"Times New Roman",serif;
  font-size:24px;
  font-weight:500;
  letter-spacing:.08em;
}

.volph-footer__brand p,
.volph-footer p{
  max-width:220px;
  margin:0;
  color:rgba(245,245,243,.58);
  font-size:13px;
  line-height:1.7;
}

.volph-footer__grid{
  display:grid;
  grid-template-columns:repeat(5, minmax(110px, 1fr));
  gap:26px;
  align-items:start;
}

.volph-footer__grid div{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.volph-footer__grid span{
  margin-bottom:10px;
  color:var(--volph-gold);
  font-size:10px;
  font-weight:800;
  letter-spacing:.18em;
  text-transform:uppercase;
}

.volph-footer__grid a{
  color:rgba(245,245,243,.62);
  font-size:12px;
  line-height:1.5;
}

.volph-footer__grid a:hover{
  color:var(--volph-white);
}

.volph-footer__bottom{
  width:min(var(--volph-wide), calc(100% - 48px));
  margin:58px auto 0;
  padding-top:22px;
  border-top:1px solid rgba(245,245,243,.08);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  color:rgba(245,245,243,.40);
  font-size:11px;
}

/* ==========================================================================
   Home
   ========================================================================== */

.volph-home-hero{
  min-height:740px;
  display:flex;
  align-items:center;
  padding:108px 0 72px;
  background:
    linear-gradient(90deg, rgba(251,247,239,.98) 0%, rgba(251,247,239,.86) 34%, rgba(251,247,239,.20) 63%, rgba(5,5,5,.58) 100%),
    url('/volphid/uploads/logos/bannerprincipal.jpg') center right / cover no-repeat;
}

.volph-home-hero__grid{
  display:grid;
  grid-template-columns:minmax(0, 620px);
  align-items:center;
  width:100%;
  max-width:100%;
  min-width:0;
}

.volph-home-hero .volph-home-kicker{
  justify-content:flex-start;
}

.volph-home-hero .volph-home-kicker:after{
  display:none;
}

.volph-home-hero h1{
  max-width:620px;
  width:100%;
  margin:0 0 18px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(44px, 5.4vw, 82px);
  line-height:.92;
  letter-spacing:-.055em;
  font-weight:500;
  color:#111;
  white-space:normal;
  overflow-wrap:break-word;
}

.volph-home-hero h1 span{
  color:var(--volph-gold);
}

.volph-home-hero p{
  max-width:420px;
  margin:0 0 24px;
  color:#4F4A43;
  font-size:14px;
  line-height:1.7;
}

.volph-home-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.volph-home-btn{
  min-height:42px;
  padding:0 20px;
  border:1px solid rgba(17,17,17,.22);
  background:transparent;
  color:#111;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:10px;
  font-weight:850;
  letter-spacing:.14em;
  text-transform:uppercase;
  text-decoration:none;
}

.volph-home-btn--dark{
  background:#111;
  color:var(--volph-white);
  border-color:#111;
}

.volph-home-btn--gold{
  background:var(--volph-gold);
  border-color:var(--volph-gold);
  color:#111;
}

.volph-section-head{
  max-width:760px;
  margin:0 auto 54px;
  text-align:center;
}

.volph-section-head h2{
  margin:0 0 18px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(34px, 4.2vw, 62px);
  line-height:.96;
  letter-spacing:-.05em;
  font-weight:500;
}

.volph-section-head p{
  max-width:740px;
  margin:0 auto;
  color:var(--volph-text-soft);
  font-size:14px;
  line-height:1.75;
}

.volph-section--dark .volph-section-head p{
  color:rgba(245,245,243,.66);
}

.volph-home-services{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border-left:1px solid rgba(17,17,17,.12);
}

.volph-home-service{
  min-height:285px;
  padding:30px;
  border-right:1px solid rgba(17,17,17,.12);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.volph-home-service__icon{
  color:var(--volph-gold);
  font-size:28px;
  line-height:1;
}

.volph-home-service h3{
  margin:26px 0 14px;
  font-size:18px;
  line-height:1.14;
  letter-spacing:-.035em;
}

.volph-home-service p{
  color:var(--volph-text-soft);
  font-size:13px;
  line-height:1.65;
}

.volph-home-service a,
.volph-home-text-link{
  color:var(--volph-bronze);
  font-size:10px;
  font-weight:850;
  letter-spacing:.16em;
  text-transform:uppercase;
  text-decoration:none;
}

.volph-home-creators-actions{
  justify-content:center;
  margin-bottom:34px;
}

.volph-section--dark .volph-home-btn{
  border-color:rgba(245,245,243,.28);
  color:var(--volph-white);
}

.volph-section--dark .volph-home-btn--gold{
  background:var(--volph-gold);
  border-color:var(--volph-gold);
  color:var(--volph-black);
}

.volph-section--dark .volph-home-text-link{
  color:var(--volph-gold);
}

.volph-home-creators__grid{
  display:grid;
  grid-template-columns:repeat(5, minmax(145px, 1fr));
  gap:10px;
}

.volph-home-creator{
  min-height:360px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  position:relative;
  overflow:hidden;
  color:var(--volph-white);
  background:#111;
  text-decoration:none;
}

.volph-home-creator img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  filter:contrast(1.05) brightness(.78);
}

.volph-home-creator:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(5,5,5,.05), rgba(5,5,5,.84));
}

.volph-home-creator__body{
  position:relative;
  z-index:2;
  padding:18px;
}

.volph-home-creator small{
  display:block;
  margin-bottom:8px;
  color:var(--volph-gold);
  font-size:9px;
  font-weight:850;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.volph-home-creator strong{
  display:block;
  font-size:18px;
  line-height:1.05;
  letter-spacing:-.035em;
}

.volph-home-creator span{
  display:block;
  margin-top:7px;
  color:rgba(245,245,243,.72);
  font-size:12px;
}

.volph-home-posts{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.volph-home-post{
  display:block;
  background:#fff;
  border:1px solid rgba(17,17,17,.10);
  color:#111;
  text-decoration:none;
  transition:transform .25s ease, border-color .25s ease;
}

.volph-home-post:hover{
  transform:translateY(-4px);
  border-color:rgba(17,17,17,.22);
}

.volph-home-post img{
  width:100%;
  aspect-ratio:16/9;
  object-fit:cover;
}

.volph-home-post div{
  padding:22px;
}

.volph-home-post small{
  display:block;
  margin-bottom:10px;
  color:var(--volph-bronze);
  font-size:9px;
  font-weight:850;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.volph-home-post h3{
  margin:0 0 18px;
  font-size:18px;
  line-height:1.2;
  letter-spacing:-.025em;
}

.volph-home-post p{
  margin:0 0 18px;
  color:var(--volph-text-soft);
  font-size:13px;
  line-height:1.65;
}

.volph-home-post span{
  color:#777;
  font-size:12px;
}

.volph-home-cta{
  position:relative;
  min-height:250px;
  display:flex;
  align-items:center;
  background:
    linear-gradient(90deg, rgba(251,247,239,.96) 0%, rgba(251,247,239,.82) 38%, rgba(251,247,239,.16) 70%),
    url('/volphid/uploads/logos/cta2.jpg') center / cover no-repeat;
}

.volph-home-cta__grid{
  display:grid;
  grid-template-columns:1fr auto;
  gap:50px;
  align-items:center;
  padding:54px 0;
}

.volph-home-cta .volph-home-kicker{
  justify-content:flex-start;
}

.volph-home-cta .volph-home-kicker:after{
  display:none;
}

.volph-home-cta h2{
  max-width:560px;
  margin:0 0 22px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(32px, 4vw, 54px);
  line-height:1;
  letter-spacing:-.045em;
  font-weight:500;
}

.volph-home-cta p{
  max-width:520px;
  margin:0;
  color:var(--volph-text-soft);
  font-size:14px;
  line-height:1.75;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media(max-width:1180px){
  .volph-home-services{
    grid-template-columns:repeat(2,1fr);
  }

  .volph-home-creators__grid{
    grid-template-columns:repeat(3,1fr);
  }

  .volph-home-cta__grid{
    grid-template-columns:1fr;
  }
}

@media(max-width:1100px){
  .volph-header__nav{
    display:none;
  }

  .volph-header__menu-btn{
    display:flex;
  }

  .volph-menu__grid{
    grid-template-columns:1fr;
  }

  .volph-menu__feature{
    min-height:360px;
  }

  .volph-footer__inner{
    grid-template-columns:1fr;
    gap:52px;
  }

  .volph-footer__grid{
    grid-template-columns:repeat(3, minmax(120px, 1fr));
  }
}

@media(max-width:760px){
  :root{
    --volph-header:68px;
  }

  .volph-container,
  .volph-home-container,
  .volph-header__inner,
  .volph-menu__inner,
  .volph-footer__inner,
  .volph-footer__bottom{
    width:calc(100% - 28px);
  }

  .volph-header__inner{
    grid-template-columns:112px auto;
  }

  .volph-header__login{
    display:none;
  }

  .volph-menu__top{
    padding-bottom:46px;
  }

  .volph-menu__column a{
    font-size:24px;
  }

  .volph-menu__feature{
    min-height:320px;
    padding:26px;
  }

  .volph-menu__feature h3{
    font-size:30px;
  }

  .volph-footer__grid{
    grid-template-columns:repeat(2, minmax(120px, 1fr));
  }

  .volph-footer__bottom{
    flex-direction:column;
    align-items:flex-start;
  }

  .volph-home-hero{
    min-height:auto;
    padding:112px 0 74px;
    overflow:visible;
    background:
      linear-gradient(180deg, rgba(251,247,239,.96), rgba(251,247,239,.88)),
      url('/volphid/uploads/logos/bannerprincipal.jpg') center / cover no-repeat;
  }

  .volph-home-hero__grid{
    grid-template-columns:minmax(0,1fr);
    width:100%;
    max-width:100%;
    min-width:0;
    gap:34px;
  }

  .volph-home-hero h1{
    max-width:100%;
    width:100%;
    min-width:0;
    font-size:clamp(34px, 10.8vw, 48px);
    line-height:.98;
    letter-spacing:-.045em;
    white-space:normal;
    word-break:normal;
    overflow-wrap:break-word;
    hyphens:auto;
  }

  .volph-home-hero p{
    max-width:100%;
    font-size:14px;
  }

  .volph-home-actions{
    flex-direction:column;
    align-items:stretch;
  }

  .volph-home-btn{
    width:100%;
  }

  .volph-section{
    padding:72px 0;
  }

  .volph-section-head{
    margin-bottom:36px;
  }

  .volph-section-head h2{
    font-size:clamp(32px, 10vw, 44px);
    line-height:1;
  }

  .volph-home-services,
  .volph-home-posts,
  .volph-home-creators__grid{
    grid-template-columns:1fr;
  }

  .volph-home-creator{
    min-height:390px;
  }

  .volph-home-cta{
    min-height:auto;
    padding:72px 0;
  }

  .volph-home-cta__grid{
    grid-template-columns:1fr;
    gap:28px;
    padding:0;
  }
}

@media(max-width:480px){
  .volph-footer__grid{
    grid-template-columns:1fr;
  }

  .volph-home-hero h1{
    font-size:clamp(31px, 10vw, 44px);
    line-height:.99;
    letter-spacing:-.042em;
  }

  .volph-home-hero p{
    font-size:14px;
    line-height:1.75;
  }
}