/* Alpha Arquitetura - Entre a Mata e o Mar */

:root{
  --alpha-navy:#2C3E48;
  --alpha-forest:#2C3E48;
  --alpha-sea:#2C3E48;
  --alpha-sand:#E8DCC4;
  --alpha-bg:#F7F3EA;
  --alpha-ink:#262622;
  --alpha-muted:#8C8477;
  --alpha-body:#4B4A43;
  --alpha-on-forest:#F3EFE2;
  --alpha-pad:5vw;
}

/* WordPress injects margin-block-start (block-gap) on every child of an
   .is-layout-flow group except the first. Inside a flex/grid container that
   pushes items 2..N down and breaks the alignment. Neutralise it wherever we
   drive the layout ourselves. */
.alpha-strip > *,
.alpha-grid > *,
.alpha-services-grid > *,
.alpha-region-tags > *,
.alpha-region-inner > *,
.alpha-footer-top > *,
.alpha-strip-label > *,
.alpha-card > *,
.alpha-portfolio-head > *{
  margin-block-start:0 !important;
  margin-block-end:0 !important;
  margin-top:0 !important;
  margin-bottom:0 !important;
}
.alpha-card figure,
.alpha-card .wp-block-image{ margin:0 !important; }

/* Header */
.alpha-header{ display:flex; align-items:center; justify-content:space-between; padding:18px var(--alpha-pad); background:var(--alpha-bg); border-bottom:1px solid rgba(44,62,72,.12); }
.alpha-header .alpha-brand{ display:flex; align-items:center; gap:10px; text-decoration:none; }
.alpha-header .alpha-brand img{ height:30px; width:auto; display:block; }
.alpha-header .alpha-brand p{ margin:0; }
.alpha-header .alpha-brand span{ font-family:'Fraunces',serif; font-weight:400; font-size:17px; letter-spacing:.5px; color:var(--alpha-navy); }
.alpha-nav .wp-block-navigation__container{ gap:28px !important; }
.alpha-nav a{ font-family:'Work Sans',sans-serif; font-size:12px; letter-spacing:1.5px; text-transform:uppercase; color:var(--alpha-navy) !important; text-decoration:none; font-weight:500; }
.alpha-nav a:hover{ opacity:.6; }
.alpha-nav .current-menu-item a{ border-bottom:1px solid rgba(44,62,72,.5); padding-bottom:3px; }
.alpha-nav .wp-block-navigation__responsive-container-open svg,
.alpha-nav .wp-block-navigation__responsive-container-close svg{ fill:var(--alpha-navy); }

/* Hero - gradient today, ready to receive a background video.
   Drop a core/video (or core/image) block with class alpha-hero-media as the
   first child of the hero group and it covers the whole area automatically. */
.alpha-hero{
  position:relative;
  overflow:hidden;
  min-height:82vh;
  display:flex;
  align-items:flex-end;
  background:linear-gradient(180deg,var(--alpha-forest) 0%,var(--alpha-navy) 24%,var(--alpha-sea) 48%,var(--alpha-sand) 78%,var(--alpha-bg) 100%);
  padding:0 var(--alpha-pad) 72px;
}
.alpha-hero-media{ position:absolute; inset:0; z-index:0; margin:0 !important; }
.alpha-hero-media video,
.alpha-hero-media img,
.alpha-hero-media iframe{ width:100%; height:100%; object-fit:cover; display:block; border:0; }
.alpha-hero::after{
  content:''; position:absolute; inset:0; z-index:1; pointer-events:none;
  background:linear-gradient(0deg, rgba(18,26,24,.62) 0%, rgba(18,26,24,.22) 42%, rgba(18,26,24,.04) 72%, transparent 100%);
}
.alpha-hero-inner{ position:relative; z-index:2; max-width:min(760px, 52vw); }
.alpha-hero-eyebrow{ color:rgba(255,255,255,.9); font-size:12px; letter-spacing:2.5px; text-transform:uppercase; margin:0 0 18px; font-weight:500; }
.alpha-hero h1{ color:#fff; font-size:clamp(34px,4.6vw,58px); line-height:1.08; font-weight:300; margin:0 0 22px; text-shadow:0 2px 24px rgba(15,40,38,.25); }
.alpha-hero p:not(.alpha-hero-eyebrow){ color:rgba(255,255,255,.92); font-size:16px; line-height:1.65; max-width:46ch; margin:0 0 28px; }
.alpha-cta a, a.alpha-cta{ display:inline-block; color:#fff; font-size:12.5px; letter-spacing:1.5px; text-transform:uppercase; border-bottom:1px solid rgba(255,255,255,.6); padding:0 0 6px; background:none !important; border-radius:0; text-decoration:none; }
.alpha-cta a:hover{ opacity:.72; }
.alpha-cta.dark a, a.alpha-cta.dark{ color:var(--alpha-navy); border-bottom-color:rgba(44,62,72,.5); }

/* Page header band - deliberately short so the images start high on the page */
.alpha-intro{ padding:64px var(--alpha-pad) 34px; max-width:none; }
.alpha-intro .eyebrow{ font-size:11px; letter-spacing:2.5px; text-transform:uppercase; color:var(--alpha-muted); font-weight:500; margin:0 0 14px; }
.alpha-intro h1, .alpha-intro h2{ font-size:clamp(26px,2.6vw,38px); font-weight:300; line-height:1.12; color:var(--alpha-ink); margin:0 0 16px; max-width:22ch; }
.alpha-intro p{ font-size:15.5px; line-height:1.75; color:var(--alpha-body); max-width:62ch; margin:0 0 14px; }
.alpha-intro p:last-child{ margin-bottom:0; }

/* Editorial two-column block: heading left, running text right.
   Fills the width on wide monitors instead of stranding a narrow column. */
.alpha-split{
  display:grid;
  grid-template-columns:minmax(0,0.9fr) minmax(0,1.1fr);
  column-gap:clamp(40px,7vw,160px);
  align-items:start;
  padding:clamp(72px,8vw,132px) var(--alpha-pad);
}
.alpha-split > *{ margin:0 !important; }
.alpha-split-head h2{ font-size:clamp(28px,3.2vw,52px); font-weight:300; line-height:1.1; color:var(--alpha-ink); margin:0 !important; max-width:16ch; }
.alpha-split-head .eyebrow{ font-size:11px; letter-spacing:2.5px; text-transform:uppercase; color:var(--alpha-muted); font-weight:500; margin:0 0 16px !important; }
.alpha-split-body > *{ margin:0 0 20px !important; }
.alpha-split-body > *:last-child{ margin-bottom:0 !important; }
.alpha-split-body p{ font-size:clamp(16px,1.15vw,19px); line-height:1.7; color:var(--alpha-body); max-width:62ch; }

.alpha-note{ font-size:12.5px !important; color:var(--alpha-muted) !important; border-top:1px solid rgba(44,62,72,.16); padding-top:16px; margin:0 !important; max-width:70ch; }
.alpha-note-band{ padding:44px var(--alpha-pad) 0; }
.alpha-intro--tight{ padding:52px var(--alpha-pad) 26px; }
.alpha-intro--tight h1{ margin:0 !important; }

/* Portfolio card */
.alpha-portfolio{ position:relative; }
.alpha-portfolio-head{ display:flex; justify-content:space-between; align-items:baseline; gap:20px; padding:0 var(--alpha-pad); margin-bottom:30px; }
.alpha-portfolio-label{ font-size:12px; letter-spacing:2.5px; text-transform:uppercase; color:var(--alpha-muted); font-weight:500; margin:0; }
.alpha-portfolio-more{ font-size:12px; letter-spacing:1.5px; text-transform:uppercase; color:var(--alpha-navy); text-decoration:none; border-bottom:1px solid rgba(44,62,72,.4); padding-bottom:4px; }
.alpha-portfolio-more:hover{ opacity:.65; }
.alpha-portfolio-empty{ padding:60px var(--alpha-pad); color:var(--alpha-muted); }

.alpha-card{ display:block; text-decoration:none; color:inherit; }
.alpha-card-frame{ display:block; position:relative; overflow:hidden; background:var(--alpha-sand); }
.alpha-card-frame img{
  display:block; width:100%; height:100%; object-fit:cover;
  opacity:.72; filter:saturate(.8);
  transition:opacity .45s ease, filter .45s ease, transform .7s ease;
}
/* Masked by default, revealed on hover or keyboard focus */
.alpha-card-frame::after{
  content:''; position:absolute; inset:0; z-index:1; pointer-events:none;
  background:var(--alpha-navy); opacity:.26; transition:opacity .45s ease;
}
.alpha-card:hover .alpha-card-frame img,
.alpha-card:focus-visible .alpha-card-frame img{ opacity:1; filter:none; transform:scale(1.02); }
.alpha-card:hover .alpha-card-frame::after,
.alpha-card:focus-visible .alpha-card-frame::after{ opacity:0; }
.alpha-card:focus-visible{ outline:1px solid var(--alpha-navy); outline-offset:2px; }
@media (hover:none){
  .alpha-card-frame img{ opacity:1; filter:none; }
  .alpha-card-frame::after{ opacity:0; }
}
.alpha-card-title{ display:block; font-size:14px; font-weight:500; margin-top:14px; color:var(--alpha-ink); line-height:1.3; }
.alpha-card-meta{ display:block; font-size:11.5px; color:var(--alpha-muted); margin-top:3px; }
.alpha-card-tag{ display:block; font-size:10px; letter-spacing:1.2px; text-transform:uppercase; color:var(--alpha-navy); margin-top:6px; }
.alpha-card-img--empty{ display:block; width:100%; height:100%; background:linear-gradient(160deg,var(--alpha-sand),var(--alpha-sand)); }

/* Strip */
.alpha-portfolio-viewport{ position:relative; }
.alpha-strip{
  display:flex; gap:1px; align-items:flex-start;
  overflow-x:auto; overflow-y:hidden;
  padding:0;
  background:#FFFFFF;
  scroll-snap-type:x proximity;
  scroll-behavior:smooth;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
  cursor:grab;
}
.alpha-strip::-webkit-scrollbar{ display:none; }
.alpha-strip.is-dragging{ cursor:grabbing; scroll-behavior:auto; scroll-snap-type:none; }
.alpha-strip.is-dragging .alpha-card{ pointer-events:none; }
.alpha-strip:focus-visible{ outline:1px solid var(--alpha-navy); outline-offset:-2px; }
.alpha-strip .alpha-card{ flex:0 0 auto; width:clamp(240px, 19vw, 340px); scroll-snap-align:start; }
.alpha-strip .alpha-card-frame{ height:clamp(300px, 30vw, 460px); }

.alpha-strip-nav{
  position:absolute; top:50%; transform:translateY(-50%); z-index:4;
  width:44px; height:44px; padding:0;
  display:flex; align-items:center; justify-content:center;
  background:var(--alpha-bg); color:var(--alpha-navy);
  border:1px solid rgba(44,62,72,.25); border-radius:2px;
  cursor:pointer; transition:opacity .2s ease, background .2s ease, color .2s ease;
}
.alpha-strip-nav svg{ width:18px; height:18px; fill:none; stroke:currentColor; stroke-width:1.4; }
.alpha-strip-nav:hover{ background:var(--alpha-navy); color:var(--alpha-bg); }
.alpha-strip-nav--prev{ left:18px; }
.alpha-strip-nav--next{ right:18px; }
.alpha-strip-nav[disabled]{ opacity:0; pointer-events:none; }
@media (hover:none){ .alpha-strip-nav{ display:none; } }

/* Grid - full-bleed mosaic separated by a single white hairline */
.alpha-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:1px;
  padding:0; background:#FFFFFF; align-items:start;
}
.alpha-grid .alpha-card-frame{ aspect-ratio:4/3; }

/* Filters */
.alpha-filters{ display:flex; flex-wrap:wrap; gap:8px; padding:0 var(--alpha-pad); margin-bottom:22px; }
.alpha-filter{
  font-family:'Work Sans',sans-serif; font-size:11px; letter-spacing:1.2px; text-transform:uppercase;
  color:var(--alpha-navy); background:none; border:1px solid rgba(44,62,72,.28);
  border-radius:2px; padding:8px 15px; cursor:pointer; transition:background .2s ease, color .2s ease;
}
.alpha-filter:hover{ border-color:var(--alpha-navy); }
.alpha-filter.is-active{ background:var(--alpha-navy); color:var(--alpha-bg); border-color:var(--alpha-navy); }
.alpha-card.is-hidden{ display:none; }

/* Project screen: large image with arrows, thumbnails under it, ficha beside */
.alpha-project-screen{
  position:fixed; inset:0; z-index:9999;
  background:var(--alpha-bg); color:var(--alpha-ink);
  display:none; flex-direction:column;
  opacity:0; transition:opacity .22s ease;
}
.alpha-project-screen.is-open{ display:flex; }
.alpha-project-screen.is-visible{ opacity:1; }
body.alpha-screen-open{ overflow:hidden; }

.alpha-ps-bar{
  flex:0 0 auto; display:flex; align-items:center; justify-content:space-between; gap:20px;
  padding:14px var(--alpha-pad); border-bottom:1px solid rgba(44,62,72,.14);
  background:var(--alpha-bg);
}
.alpha-ps-bar-title{ font-family:'Fraunces',serif; font-weight:300; font-size:18px; margin:0; line-height:1.1; }
.alpha-ps-actions{ display:flex; align-items:center; gap:6px; }
.alpha-ps-btn{
  font-family:'Work Sans',sans-serif; font-size:10.5px; letter-spacing:1.4px; text-transform:uppercase;
  color:var(--alpha-navy); background:none; border:1px solid rgba(44,62,72,.25); border-radius:2px;
  padding:9px 13px; cursor:pointer; display:flex; align-items:center; gap:7px; white-space:nowrap;
  transition:background .2s ease, color .2s ease;
}
.alpha-ps-btn:hover{ background:var(--alpha-navy); color:var(--alpha-bg); }
.alpha-ps-btn[disabled]{ opacity:.3; pointer-events:none; }
.alpha-ps-btn svg{ width:13px; height:13px; fill:none; stroke:currentColor; stroke-width:1.5; }

.alpha-ps-body{
  flex:1 1 auto; overflow-y:auto; overscroll-behavior:contain;
  display:grid; grid-template-columns:minmax(0,1fr) clamp(280px,23vw,380px);
  gap:clamp(24px,2.6vw,52px); align-items:start;
  padding:clamp(18px,2vw,30px) var(--alpha-pad) clamp(48px,5vw,80px);
}
.alpha-ps-main{ min-width:0; display:flex; flex-direction:column; gap:1px; }

.alpha-ps-stage{
  position:relative; display:flex; align-items:center; justify-content:center;
  background:var(--alpha-sand); overflow:hidden;
}
.alpha-ps-stage-img{
  display:block; width:100%; height:auto; max-height:70vh; object-fit:contain;
  cursor:zoom-in;
  opacity:1;
  transition:opacity .28s ease;
}
.alpha-ps-stage-img.is-loading{ opacity:.32; }
.alpha-ps-arrow{
  position:absolute; top:50%; transform:translateY(-50%); z-index:3;
  width:46px; height:46px; padding:0; display:flex; align-items:center; justify-content:center;
  background:rgba(247,243,234,.88); color:var(--alpha-navy);
  border:0; cursor:pointer; transition:background .2s ease, color .2s ease;
}
.alpha-ps-arrow svg{ width:19px; height:19px; fill:none; stroke:currentColor; stroke-width:1.4; }
.alpha-ps-arrow:hover{ background:var(--alpha-navy); color:var(--alpha-bg); }
.alpha-ps-arrow--prev{ left:0; }
.alpha-ps-arrow--next{ right:0; }
.alpha-ps-arrow[hidden]{ display:none; }
.alpha-ps-counter{
  position:absolute; right:12px; bottom:10px; z-index:3;
  font-size:11px; letter-spacing:1.4px; color:#fff;
  background:rgba(38,38,34,.5); padding:4px 9px;
}
.alpha-ps-counter:empty{ display:none; }

.alpha-ps-thumbs{
  display:flex; gap:1px; overflow-x:auto; background:#FFFFFF;
  scrollbar-width:none; -webkit-overflow-scrolling:touch;
}
.alpha-ps-thumbs::-webkit-scrollbar{ display:none; }
.alpha-ps-thumbs:empty{ display:none; }
.alpha-ps-thumb{
  flex:0 0 auto; width:clamp(88px,7.4vw,124px); height:clamp(62px,5.2vw,86px);
  padding:0; border:0; background:var(--alpha-sand); cursor:pointer; position:relative; overflow:hidden;
}
.alpha-ps-thumb img{ width:100%; height:100%; object-fit:cover; display:block; opacity:.5; transition:opacity .3s ease; }
.alpha-ps-thumb:hover img{ opacity:.85; }
.alpha-ps-thumb.is-active img{ opacity:1; }
.alpha-ps-thumb.is-active::after{ content:''; position:absolute; inset:0; border:2px solid var(--alpha-navy); }

/* Ficha técnica column */
.alpha-ps-side{ min-width:0; padding-top:4px; }
.alpha-ps-title{ font-family:'Fraunces',serif; font-weight:300; font-size:clamp(21px,1.8vw,28px); line-height:1.14; margin:0 0 16px; color:var(--alpha-ink); }
.alpha-ps-text p{ font-size:14.5px; line-height:1.78; color:var(--alpha-body); margin:0 0 14px; }
.alpha-ps-facts{ margin-top:26px; border-top:1px solid rgba(44,62,72,.18); }
.alpha-ps-facts:empty{ display:none; }
.alpha-ps-facts > div{
  display:grid; grid-template-columns:minmax(88px,38%) minmax(0,1fr); gap:14px;
  padding:10px 0; border-bottom:1px solid rgba(44,62,72,.09); font-size:12.5px; line-height:1.5;
}
.alpha-ps-facts .k{ color:var(--alpha-muted); font-size:10.5px; letter-spacing:1.3px; text-transform:uppercase; padding-top:2px; }
.alpha-ps-facts .v{ color:var(--alpha-ink); }

/* Original-size overlay, opened by clicking the large image */
.alpha-zoom{
  position:fixed; inset:0; z-index:10000; display:none;
  background:rgba(18,20,18,.95); cursor:zoom-out;
  align-items:center; justify-content:center; padding:24px;
}
.alpha-zoom.is-open{ display:flex; }
.alpha-zoom img{ max-width:100%; max-height:100%; object-fit:contain; display:block; }
.alpha-zoom-close{
  position:absolute; top:16px; right:16px; z-index:2;
  width:42px; height:42px; padding:0; display:flex; align-items:center; justify-content:center;
  background:none; border:1px solid rgba(255,255,255,.4); color:#fff; cursor:pointer;
}
.alpha-zoom-close svg{ width:16px; height:16px; fill:none; stroke:currentColor; stroke-width:1.5; }

@media (max-width:1024px){
  .alpha-ps-body{ grid-template-columns:minmax(0,1fr); gap:26px; }
  .alpha-ps-side{ border-top:1px solid rgba(44,62,72,.14); padding-top:26px; }
}
@media (max-width:640px){
  .alpha-ps-stage-img{ max-height:56vh; }
  .alpha-ps-arrow{ width:40px; height:40px; }
  .alpha-ps-btn{ padding:8px 10px; font-size:10px; }
  .alpha-ps-bar-title{ font-size:14px; }
}
/* Standalone project page (direct URL / no-JS) */
.alpha-projeto-main{ background:var(--alpha-bg); }
.alpha-projeto-main .alpha-intro{ padding:60px var(--alpha-pad) 34px; max-width:900px; }
.alpha-projeto-main .alpha-intro h1{ font-family:'Fraunces',serif; font-size:clamp(26px,2.6vw,38px); font-weight:300; line-height:1.1; margin:0 0 18px; }
.alpha-projeto-main .entry-content p{ font-size:15.5px; line-height:1.8; color:var(--alpha-body); margin:0 0 16px; max-width:58ch; }
/* Fallback stack when JS has not turned it into the viewer yet */
.alpha-projeto-galeria{ display:flex; flex-direction:column; gap:1px; background:#FFFFFF; padding:0 0 60px; }
.alpha-projeto-galeria img{ display:block; width:100%; height:auto; background:var(--alpha-sand); }
.alpha-projeto-galeria img{ cursor:zoom-in; }

/* Services */
.alpha-services{ background:var(--alpha-forest); padding:104px var(--alpha-pad); color:#F3EFE2; }
.alpha-services h2{ color:#F7F3EA; font-size:clamp(26px,2.9vw,36px); font-weight:300; line-height:1.14; max-width:16ch; margin:0; }
.alpha-services .eyebrow{ color:var(--alpha-on-forest, #F3EFE2); font-size:12px; letter-spacing:2.5px; text-transform:uppercase; font-weight:500; margin:0 0 18px; }
.alpha-services > p:not(.eyebrow){ font-size:15px; line-height:1.75; color:var(--alpha-on-forest, #F3EFE2); max-width:58ch; margin:22px 0 0; }
/* Asymmetric bento: two wide items, two narrow, and a full-width closing row.
   Each item carries its own illustration slot. */
.alpha-services-grid{
  display:grid; grid-template-columns:repeat(6,1fr);
  gap:clamp(34px,3.4vw,64px) clamp(24px,2.4vw,46px);
  margin-top:clamp(42px,4vw,68px); align-items:start;
}
.alpha-service-item{ border-top:0; padding-top:0; }
.alpha-service-item:nth-child(1){ grid-column:span 4; }
.alpha-service-item:nth-child(2){ grid-column:span 2; }
.alpha-service-item:nth-child(3){ grid-column:span 2; }
.alpha-service-item:nth-child(4){ grid-column:span 4; }
.alpha-service-item:nth-child(5){ grid-column:span 6; border-top:1px solid rgba(243,239,226,.24); padding-top:24px; }

.alpha-service-media{ margin:0 !important; overflow:hidden; background:rgba(255,255,255,.07); }
.alpha-service-media img{ display:block; width:100%; height:100%; object-fit:cover; }
.alpha-service-item:nth-child(1) .alpha-service-media img,
.alpha-service-item:nth-child(4) .alpha-service-media img{ aspect-ratio:16/7; }
.alpha-service-item:nth-child(2) .alpha-service-media img,
.alpha-service-item:nth-child(3) .alpha-service-media img{ aspect-ratio:4/3; }

.alpha-service-item .num{
  font-family:'Fraunces',serif; font-size:14px; color:var(--alpha-on-forest, #F3EFE2); letter-spacing:1px; display:block;
  border-top:1px solid rgba(243,239,226,.24); padding-top:16px; margin:22px 0 12px !important;
}
.alpha-service-item:nth-child(5) .num{ border-top:0; padding-top:0; margin:0 0 12px !important; }
.alpha-service-item h3{ font-size:18px; font-weight:500; margin:0 0 10px !important; color:#F7F3EA; line-height:1.22; }
.alpha-service-item:nth-child(1) h3,
.alpha-service-item:nth-child(4) h3{ font-size:clamp(20px,1.7vw,25px); font-weight:300; font-family:'Fraunces',serif; }
.alpha-service-item .lead{ font-size:14.5px; line-height:1.55; color:var(--alpha-on-forest); margin:0 0 12px !important; max-width:44ch; }
.alpha-service-item p:not(.num):not(.lead){ font-size:13.5px; line-height:1.7; color:var(--alpha-on-forest); margin:0 !important; max-width:62ch; }
.alpha-service-item:nth-child(5) p:not(.num):not(.lead){ max-width:78ch; }

/* Serviços page: one full row per service, media alternating sides */
.alpha-service-rows{ padding:0 var(--alpha-pad); }
.alpha-service-rows > *{ margin:0 !important; }
.alpha-service-row{
  display:grid; grid-template-columns:minmax(0,1.2fr) minmax(0,1fr);
  gap:clamp(32px,4vw,86px); align-items:center;
  padding:clamp(46px,4.6vw,86px) 0; border-top:1px solid rgba(44,62,72,.16);
}
.alpha-service-row > *{ margin:0 !important; }
.alpha-service-row--flip > .alpha-service-shot{ grid-column:2; grid-row:1; }
.alpha-service-row--flip > .alpha-service-text{ grid-column:1; grid-row:1; }
.alpha-service-row--wide{ grid-template-columns:minmax(0,1fr); }
.alpha-service-row--band{ grid-template-columns:minmax(0,1fr); gap:clamp(26px,3vw,48px); }
.alpha-service-row--band .alpha-service-shot img{ aspect-ratio:21/8; }
.alpha-service-shot{ margin:0 !important; overflow:hidden; background:var(--alpha-sand); }
.alpha-service-shot img{ display:block; width:100%; aspect-ratio:16/10; object-fit:cover; }
.alpha-service-text > *{ margin:0 !important; }
.alpha-service-text .num{ font-family:'Fraunces',serif; font-size:14px; letter-spacing:1px; color:var(--alpha-muted); margin:0 0 12px !important; }
.alpha-service-text h2{ font-size:clamp(23px,2.2vw,32px); font-weight:300; line-height:1.14; color:var(--alpha-ink); margin:0 0 12px !important; }
.alpha-service-text .lead{ font-size:16.5px; line-height:1.55; color:var(--alpha-navy); margin:0 0 20px !important; max-width:38ch; }
.alpha-service-text p:not(.num):not(.lead){ font-size:15px; line-height:1.78; color:var(--alpha-body); margin:0 0 14px !important; max-width:54ch; }
.alpha-service-text ul, .alpha-service-text .wp-block-list{ margin:22px 0 0 !important; padding:0 !important; list-style:none !important; max-width:54ch; }
.alpha-service-text li{ font-size:12.5px; line-height:1.5; color:var(--alpha-body); padding:9px 0; border-top:1px solid rgba(44,62,72,.14); list-style:none; }

/* Region */
.alpha-region{ padding:96px var(--alpha-pad); background:var(--alpha-bg); }
.alpha-region-inner{ display:flex; flex-wrap:wrap; gap:60px; justify-content:space-between; align-items:flex-start; }
.alpha-region h2{ font-size:clamp(25px,2.6vw,32px); font-weight:300; line-height:1.15; max-width:14ch; color:var(--alpha-ink); margin:0 0 18px !important; }
.alpha-region p{ font-size:15px; line-height:1.75; color:var(--alpha-body); max-width:48ch; margin:0 !important; }
.alpha-region-tags{ display:flex; flex-wrap:wrap; gap:10px; max-width:440px; }
.alpha-region-tag p{ font-size:11px !important; letter-spacing:1px; text-transform:uppercase; color:var(--alpha-navy) !important; border:1px solid rgba(44,62,72,.3); padding:7px 14px; border-radius:2px; margin:0 !important; line-height:1 !important; }

/* Closing */
.alpha-closing{ padding:104px var(--alpha-pad); border-top:1px solid rgba(44,62,72,.12); }
.alpha-closing h2{ font-size:clamp(26px,2.9vw,36px); font-weight:300; line-height:1.14; color:var(--alpha-ink); margin:0 0 12px; max-width:18ch; }
.alpha-closing p{ font-size:15px; line-height:1.75; color:var(--alpha-body); max-width:52ch; margin:0 0 30px; }

/* Process / principles: label + description rows on hairlines */
.alpha-process{ padding:24px var(--alpha-pad) 96px; display:grid; grid-template-columns:1fr 1.7fr; gap:56px; align-items:start; }
.alpha-process > *{ margin:0 !important; }
.alpha-process-head h2{ font-size:clamp(24px,2.5vw,32px); font-weight:300; line-height:1.15; color:var(--alpha-ink); margin:0 0 14px !important; max-width:14ch; }
.alpha-process-head p{ font-size:14px; line-height:1.7; color:var(--alpha-muted); margin:0 !important; max-width:36ch; }
.alpha-process-list > *{ margin:0 !important; }
.alpha-process-row{ display:grid; grid-template-columns:minmax(0,1fr) minmax(0,2fr); gap:28px; padding:22px 0; border-top:1px solid rgba(44,62,72,.16); }
.alpha-process-row > *{ margin:0 !important; }
.alpha-process-row h3{ font-size:15px; font-weight:500; line-height:1.3; color:var(--alpha-ink); margin:0 !important; }
.alpha-process-row p{ font-size:14px; line-height:1.72; color:var(--alpha-body); margin:0 !important; }

/* Full-bleed image */
.alpha-wide-image{ margin:0 !important; }
.alpha-wide-image img{ display:block; width:100%; height:clamp(280px,46vh,540px); object-fit:cover; }

/* Contact */
.alpha-contact{ padding:0 var(--alpha-pad) 100px; display:grid; grid-template-columns:1.15fr 1fr; gap:70px; align-items:start; }
.alpha-contact > *{ margin:0 !important; }
.alpha-contact h2{ font-size:19px; font-weight:500; margin:0 0 18px; color:var(--alpha-ink); }
.alpha-contact p{ font-size:15px; line-height:1.8; color:var(--alpha-body); margin:0 0 14px; }
.alpha-contact a{ color:var(--alpha-navy); }
.alpha-contact-info ul{ margin:0 0 26px; padding:0; list-style:none; }
.alpha-contact-info li{ font-size:14.5px; line-height:1.6; color:var(--alpha-body); padding:11px 0; border-top:1px solid rgba(44,62,72,.14); }

/* Contact form (WPForms), aligned to the design tokens */
.alpha-form .wpforms-field{ padding:0 0 20px !important; }
.alpha-form .wpforms-field-label{ font-size:11px !important; letter-spacing:1.2px; text-transform:uppercase; font-weight:500 !important; }
.alpha-form input[type=text], .alpha-form input[type=email], .alpha-form select, .alpha-form textarea{
  font-size:15px !important; color:var(--alpha-ink) !important;
}
.alpha-form textarea{ min-height:150px; }
.alpha-form .wpforms-submit{
  font-size:12px !important; letter-spacing:1.5px !important;
  text-transform:uppercase; padding:14px 26px !important; box-shadow:none !important;
}
.alpha-form .wpforms-submit:hover{ background:var(--alpha-navy) !important; color:var(--alpha-bg) !important; }
.alpha-form .wpforms-field-description{ font-size:12.5px !important; color:var(--alpha-muted) !important; }

/* Blog */
.alpha-blog-main{ background:var(--alpha-bg); padding:0 var(--alpha-pad) 100px; }
.alpha-blog-grid .wp-block-post-template{ display:grid; grid-template-columns:repeat(3,1fr); gap:44px 28px; list-style:none; margin:0; padding:0; }
.alpha-blog-grid li{ list-style:none; }
.alpha-blog-grid .wp-block-post-featured-image img{ width:100%; height:220px; object-fit:cover; border-radius:2px; display:block; margin-bottom:18px; }
.alpha-blog-grid .wp-block-post-date{ font-size:11px; letter-spacing:1px; text-transform:uppercase; color:var(--alpha-muted); display:block; margin-bottom:8px; }
.alpha-blog-grid .wp-block-post-title{ font-family:'Fraunces',serif; font-weight:400; font-size:19px; line-height:1.2; margin:0 0 10px; }
.alpha-blog-grid .wp-block-post-title a{ color:var(--alpha-ink); text-decoration:none; }
.alpha-blog-grid .wp-block-post-excerpt{ font-size:13.5px; line-height:1.7; color:var(--alpha-body); }
.alpha-blog-grid .wp-block-post-excerpt a{ color:var(--alpha-navy); }
.alpha-blog-empty{ padding:40px 0; color:var(--alpha-muted); font-size:14px; }
.wp-block-query-pagination{ margin-top:50px; font-size:12px; letter-spacing:1px; text-transform:uppercase; }
.wp-block-query-pagination a, .wp-block-query-pagination-numbers{ color:var(--alpha-navy) !important; }

.alpha-single-main{ background:var(--alpha-bg); padding:0 0 100px; max-width:800px; margin:0 auto; }
.alpha-single-main .wp-block-post-featured-image img{ width:100%; border-radius:2px; margin-bottom:10px; }
.alpha-single-meta{ padding:0 var(--alpha-pad); display:flex; gap:18px; align-items:center; font-size:11px; letter-spacing:1px; text-transform:uppercase; color:var(--alpha-muted); margin-bottom:10px; }
.alpha-single-main .entry-content, .alpha-single-main .wp-block-post-content{ padding:0 var(--alpha-pad); color:var(--alpha-ink); font-size:16px; line-height:1.85; }

/* 404 */
.alpha-404{ padding:140px var(--alpha-pad); background:var(--alpha-bg); }
.alpha-404 h1{ font-size:34px; font-weight:300; color:var(--alpha-ink); margin:0 0 18px; }
.alpha-404 p{ font-size:15px; color:var(--alpha-body); margin:0 0 26px; }

/* Footer */
.alpha-footer{ background:var(--alpha-bg); border-top:1px solid rgba(44,62,72,.15); padding:70px var(--alpha-pad) 30px; }
.alpha-footer-top{ display:flex; flex-wrap:wrap; gap:50px; justify-content:space-between; margin-bottom:50px; }
.alpha-footer-brand{ display:flex; align-items:center; gap:10px; max-width:320px; }
.alpha-footer-brand img{ height:32px; width:auto; }
.alpha-footer-brand span{ font-family:'Fraunces',serif; font-size:18px; color:var(--alpha-navy); }
.alpha-footer-tagline{ font-size:13px; color:var(--alpha-muted); margin-top:10px !important; max-width:280px; line-height:1.6; }
.alpha-footer-col h3{ font-size:11px; letter-spacing:1.5px; text-transform:uppercase; color:var(--alpha-muted); font-weight:500; margin:0 0 16px; }
.alpha-footer-col p, .alpha-footer-col a{ display:block; font-size:13px; color:var(--alpha-ink); text-decoration:none; margin-bottom:10px; }
.alpha-footer-col a:hover{ color:var(--alpha-navy); }
.alpha-footer-bottom{ display:flex; flex-wrap:wrap; gap:16px; justify-content:space-between; align-items:center; padding-top:26px; border-top:1px solid rgba(44,62,72,.12); font-size:11.5px; color:var(--alpha-muted); }
.alpha-footer-bottom a{ color:var(--alpha-muted); }
.alpha-footer .wp-block-social-links a{ background:none !important; }
.alpha-footer .wp-block-social-links svg{ fill:var(--alpha-navy) !important; }

.alpha-brand{ display:flex; align-items:center; gap:12px; }
.alpha-brand img{ height:26px; width:auto; display:block; }

/* Responsive */
@media (max-width:1180px){
  .alpha-grid{ grid-template-columns:repeat(3,1fr); }
}
@media (max-width:900px){
  .alpha-services-grid{ grid-template-columns:repeat(2,1fr); gap:36px 24px; }
  .alpha-services-grid > .alpha-service-item{ grid-column:span 1 !important; }
  .alpha-services-grid > .alpha-service-item:nth-child(5){ grid-column:span 2 !important; }
  .alpha-service-item .alpha-service-media img{ aspect-ratio:4/3 !important; }
  .alpha-service-row{ grid-template-columns:1fr; gap:26px; }
  .alpha-service-row--flip > .alpha-service-shot,
  .alpha-service-row--flip > .alpha-service-text{ grid-column:1; grid-row:auto; }
  .alpha-grid{ grid-template-columns:repeat(2,1fr); }
  .alpha-blog-grid .wp-block-post-template{ grid-template-columns:repeat(2,1fr); }
  .alpha-contact{ grid-template-columns:1fr; gap:40px; }
  .alpha-process{ grid-template-columns:1fr; gap:32px; }
  .alpha-split{ grid-template-columns:1fr; row-gap:26px; }
  .alpha-split-head h2{ max-width:none; }
}
@media (max-width:640px){
  :root{ --alpha-pad:6vw; }
  .alpha-hero{ min-height:74vh; padding:0 var(--alpha-pad) 44px; }
  .alpha-hero h1{ line-height:1.12; }
  .alpha-strip .alpha-card{ width:64vw; }
  .alpha-strip .alpha-card-frame{ height:76vw; }
  .alpha-intro{ padding:60px var(--alpha-pad) 40px; }
  .alpha-services{ padding:70px var(--alpha-pad); }
  .alpha-services-grid{ grid-template-columns:1fr; gap:36px; }
  .alpha-services-grid > .alpha-service-item,
  .alpha-services-grid > .alpha-service-item:nth-child(5){ grid-column:span 1 !important; }
  .alpha-region{ padding:70px var(--alpha-pad); }
  .alpha-region-inner{ gap:30px; }
  .alpha-closing{ padding:70px var(--alpha-pad); }
  .alpha-process{ padding:10px var(--alpha-pad) 70px; }
  .alpha-process-row{ grid-template-columns:1fr; gap:8px; }
  .alpha-grid{ grid-template-columns:repeat(2,1fr); gap:1px; }
  .alpha-split{ grid-template-columns:1fr; row-gap:24px; padding:60px var(--alpha-pad); }
  .alpha-split-head h2{ max-width:none; }
  .alpha-blog-main{ padding:0 var(--alpha-pad) 70px; }
  .alpha-blog-grid .wp-block-post-template{ grid-template-columns:1fr; }
  .alpha-footer{ padding:50px var(--alpha-pad) 24px; }
  .alpha-ps-bar-title{ font-size:15px; }
  .alpha-ps-btn{ padding:8px 10px; }
}

@media (prefers-reduced-motion:reduce){
  .alpha-card-frame img,
  .alpha-project-screen{ transition:none !important; }
  .alpha-strip{ scroll-behavior:auto; }
}

/* 2026 refinement: cinematic hero and restrained motion */
.alpha-hero{
  isolation:isolate;
  min-height:min(880px, calc(100svh - 67px));
  padding-bottom:clamp(52px,7vh,92px);
  background:
    radial-gradient(120% 72% at 76% 16%, rgba(247,243,234,.16), transparent 54%),
    linear-gradient(174deg, #1D2A31 0%, #2C3E48 52%, var(--alpha-sand) 76%, #E8DCC4 100%);
}
.alpha-hero::before{
  content:'';
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
  opacity:.28;
  background:
    radial-gradient(ellipse at 72% 54%, transparent 0 18%, rgba(247,243,234,.22) 18.2% 18.6%, transparent 18.8%),
    radial-gradient(ellipse at 65% 58%, transparent 0 27%, rgba(247,243,234,.13) 27.2% 27.6%, transparent 27.8%);
  transform:rotate(-4deg) scale(1.14);
}
.alpha-hero::after{
  z-index:2;
  background:
    linear-gradient(90deg, rgba(15,25,25,.54) 0%, rgba(15,25,25,.20) 48%, rgba(15,25,25,.03) 74%),
    linear-gradient(0deg, rgba(15,22,20,.54) 0%, transparent 58%);
}
.alpha-hero-media{ z-index:0; }
.alpha-hero-media::after{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(110deg, rgba(17,28,27,.55), rgba(17,28,27,.08) 70%);
}
.alpha-hero-inner{
  z-index:3;
  width:100%;
  max-width:none;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(240px,320px);
  column-gap:clamp(42px,8vw,136px);
  align-items:end;
}
.alpha-hero-inner > h1{
  grid-column:1;
  max-width:16ch;
  font-size:clamp(44px,5.35vw,74px);
  letter-spacing:-.025em;
  text-wrap:balance;
  margin-bottom:0;
}
.alpha-hero-eyebrow{
  grid-column:1/-1;
  margin-bottom:clamp(20px,3vh,34px);
}
.alpha-hero-inner > p:not(.alpha-hero-eyebrow){
  grid-column:2;
  margin:0 0 .35em;
  max-width:31ch;
  font-size:clamp(14px,1.15vw,17px);
  line-height:1.7;
}
.alpha-js .alpha-reveal{
  opacity:0;
  transform:translateY(18px);
  transition:opacity .65s cubic-bezier(.2,.65,.25,1) var(--alpha-reveal-delay,0ms),
             transform .65s cubic-bezier(.2,.65,.25,1) var(--alpha-reveal-delay,0ms);
}
.alpha-js .alpha-reveal.is-revealed{ opacity:1; transform:none; }

@media (max-width:760px){
  .alpha-hero{ min-height:min(760px, calc(100svh - 62px)); }
  .alpha-hero-inner{ display:block; width:100%; }
  .alpha-hero-inner > h1{ max-width:11ch; font-size:clamp(42px,12.2vw,66px); margin-bottom:24px; }
  .alpha-hero-inner > p:not(.alpha-hero-eyebrow){ max-width:36ch; margin:0; }
  .alpha-hero::after{
    background:linear-gradient(0deg, rgba(15,22,20,.68) 0%, rgba(15,22,20,.18) 70%, transparent 100%);
  }
}
@media (prefers-reduced-motion:reduce){
  .alpha-js .alpha-reveal{ opacity:1; transform:none; transition:none; }
}

/* Portfolio refinement */
.alpha-card-status{
  display:block;
  margin-top:8px;
  color:var(--alpha-muted);
  font-size:10px;
  line-height:1.35;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.alpha-portfolio--grid{ padding-bottom:clamp(48px,7vw,104px); }
.alpha-portfolio--grid .alpha-filters{
  position:sticky;
  top:0;
  z-index:8;
  padding-top:14px;
  padding-bottom:14px;
  margin-bottom:1px;
  background:rgba(247,243,234,.94);
  border-top:1px solid rgba(44,62,72,.12);
  border-bottom:1px solid rgba(44,62,72,.12);
  backdrop-filter:blur(12px);
}
.alpha-portfolio--grid .alpha-grid{
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:clamp(24px,2.8vw,48px) 1px;
  background:transparent;
  padding:0;
}
.alpha-portfolio--grid .alpha-card{
  min-width:0;
  padding-bottom:clamp(18px,2vw,28px);
  border-bottom:1px solid rgba(44,62,72,.13);
}
.alpha-portfolio--grid .alpha-card-frame{ aspect-ratio:4/3; }
.alpha-portfolio--grid .alpha-card:first-child{
  grid-column:span 2;
  grid-row:span 2;
}
.alpha-portfolio--grid .alpha-card:first-child .alpha-card-frame{ aspect-ratio:8/6.55; }
.alpha-portfolio--grid .alpha-card-title,
.alpha-portfolio--grid .alpha-card-meta,
.alpha-portfolio--grid .alpha-card-tag,
.alpha-portfolio--grid .alpha-card-status{
  margin-left:clamp(14px,1.4vw,22px);
  margin-right:clamp(14px,1.4vw,22px);
}
.alpha-portfolio--grid .alpha-card-title{
  font-family:'Fraunces',serif;
  font-size:clamp(17px,1.45vw,23px);
  font-weight:300;
  margin-top:18px;
}
.alpha-portfolio--grid .alpha-card:first-child .alpha-card-title{
  font-size:clamp(23px,2.3vw,36px);
}
.alpha-filter:focus-visible,
.alpha-strip-nav:focus-visible,
.alpha-ps-btn:focus-visible,
.alpha-ps-arrow:focus-visible,
.alpha-ps-thumb:focus-visible{
  outline:2px solid var(--alpha-navy);
  outline-offset:3px;
}

@media (max-width:900px){
  .alpha-portfolio--grid .alpha-grid{ grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width:560px){
  .alpha-portfolio--grid .alpha-grid{
    grid-template-columns:1fr;
    row-gap:34px;
  }
  .alpha-portfolio--grid .alpha-card:first-child{ grid-column:auto; grid-row:auto; }
  .alpha-portfolio--grid .alpha-card:first-child .alpha-card-frame,
  .alpha-portfolio--grid .alpha-card-frame{ aspect-ratio:4/3; }
  .alpha-portfolio--grid .alpha-filters{ top:0; flex-wrap:nowrap; overflow-x:auto; scrollbar-width:none; }
  .alpha-portfolio--grid .alpha-filter{ flex:0 0 auto; }
}
