/* Artizen Construction — shared site styles (extracted from homepage) */

/* ═══════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════ */
:root {
  --ink:        #151310;
  --ink-mid:    #1E1B17;
  --ink-soft:   #2A2520;
  --stone:      #888888;
  --stone-md:   #AAAAAA;
  --stone-lt:   #CCCCCC;
  --dust:       #E8E8E8;
  --cream:      #F7F3ED;
  --gold:       #707070;
  --gold-lt:    #909090;
  --gold-dim:   #2A2A2A;
  --white:      #FEFCF9;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Cormorant Garamond', Georgia, serif;
  --font-ui:      'Raleway', sans-serif;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.7, 0, 0.84, 0);
}

/* ═══════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; scroll-padding-top:80px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display:block; max-width:100%; }
a { color:inherit; }
button { font-family:inherit; cursor:pointer; border:none; background:none; }

::-webkit-scrollbar { width:4px; }
::-webkit-scrollbar-track { background:var(--ink); }
::-webkit-scrollbar-thumb { background:var(--stone); }

/* ═══════════════════════════════════════
   UTILITY
═══════════════════════════════════════ */
/* Scroll reveal */
.reveal-ready {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-ready.revealed {
  opacity: 1;
  transform: translateY(0);
}

.eyebrow {
  display:flex; align-items:center; gap:0.9rem;
  font-family:var(--font-ui); font-size:0.68rem;
  font-weight:400; letter-spacing:0.38em;
  text-transform:uppercase; color:var(--stone);
}
.eyebrow::before {
  content:''; flex-shrink:0;
  display:block; width:32px; height:1px; background:var(--stone);
}
.eyebrow--light { color:var(--stone-md); }
.eyebrow--light::before{display:none;}
.eyebrow--gold { color:#707070; }
.eyebrow--gold::before{display:none;}

.section-title {
  font-family:var(--font-display);
  font-size:clamp(2.2rem, 4vw, 3.6rem);
  font-weight:400; line-height:1.1; letter-spacing:-0.02em;
}
.section-title em { font-style:italic; color:var(--stone); }
.section-title--light { color:var(--white); }
.section-title--light em { color:var(--stone-md); }

.btn {
  display:inline-flex; align-items:center; justify-content:center;
  font-family:var(--font-ui); font-size:0.72rem;
  font-weight:500; letter-spacing:0.28em; text-transform:uppercase;
  text-decoration:none; padding:1rem 2.6rem;
  transition:all 0.35s var(--ease-out);
  white-space:nowrap;
}
.btn--gold { background:#707070; color:var(--ink); }
.btn--gold:hover { background:var(--gold-lt); }
.btn--outline {
  border:1px solid rgba(176,160,144,0.45); color:var(--stone-lt);
  background:transparent;
}
.btn--outline:hover { border-color:var(--stone-md); color:var(--white); }
.btn--dark { background:var(--ink); color:var(--white); }
.btn--dark:hover { background:var(--ink-soft); }

/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
#nav {
  position:fixed; top:0; left:0; right:0; z-index:200;
  display:flex; align-items:center; justify-content:space-between;
  padding:2rem 5rem;
  background:rgba(21,19,16,0.95);
  backdrop-filter:blur(20px) saturate(120%);
  border-bottom:1px solid rgba(120,120,120,0.15);
  transition:padding 0.5s var(--ease-out), background 0.5s, border-color 0.5s;
}
#nav.scrolled {
  padding:1.1rem 5rem;
  background:rgba(21,19,16,0.95);
  backdrop-filter:blur(20px) saturate(120%);
  border-bottom:1px solid rgba(120,120,120,0.15);
}

/* LOGO */
.logo { display:flex; align-items:center; gap:0.85rem; text-decoration:none; }
.logo-img-wrap {
  position:relative; width:52px; height:52px;
  flex-shrink:0;
}
/* Logo placeholder replace src with your actual logo file */
.logo-img-wrap img {
  width:100%; height:100%; object-fit:contain;
  filter:brightness(1.1);
}
/* Fallback SVG monogram shown when no image */
.logo-fallback {
  width:52px; height:52px;
  display:flex; align-items:center; justify-content:center;
}
.logo-text { display:flex; flex-direction:column; line-height:1; }
.logo-text .brand {
  font-family:var(--font-display);
  font-size:1rem; font-weight:500;
  letter-spacing:0.32em; color:var(--white);
  text-transform:uppercase;
}
.logo-text .sub {
  font-family:var(--font-ui);
  font-size:0.55rem; letter-spacing:0.38em;
  color:var(--stone-md); text-transform:uppercase; margin-top:3px;
}

.nav-links { display:flex; gap:2.8rem; list-style:none; }
.nav-links a {
  text-decoration:none;
  font-family:var(--font-ui); font-size:0.72rem;
  letter-spacing:0.2em; text-transform:uppercase;
  color:var(--stone-lt); transition:color 0.3s;
  position:relative; padding-bottom:3px;
}
.nav-links a::after {
  content:''; position:absolute; bottom:0; left:0;
  width:0; height:1px; background:#707070;
  transition:width 0.35s var(--ease-out);
}
.nav-links a:hover { color:var(--white); }
.nav-links a:hover::after { width:100%; }

/* Services dropdown (desktop hover) */
.nav-dropdown { position:relative; }
.nav-dropdown > a { display:inline-flex; align-items:center; gap:0.4em; }
.nav-dropdown > a::before {
  content:''; display:inline-block; width:0.4em; height:0.4em;
  border-right:1px solid currentColor; border-bottom:1px solid currentColor;
  transform:rotate(45deg) translateY(-0.15em); margin-left:0.15em;
  transition:transform 0.3s; opacity:0.7; order:2;
}
.nav-dropdown:hover > a::before { transform:rotate(225deg) translateY(0); }
.nav-dropdown-menu {
  position:absolute; top:100%; left:50%; transform:translateX(-50%) translateY(8px);
  min-width:280px; padding:0.6rem 0;
  background:rgba(21,19,16,0.98); backdrop-filter:blur(20px) saturate(120%);
  border:1px solid rgba(120,120,120,0.18); border-radius:3px;
  box-shadow:0 24px 50px -20px rgba(0,0,0,0.7);
  opacity:0; visibility:hidden; pointer-events:none;
  transition:opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out), visibility 0.3s;
  list-style:none; z-index:210;
}
.nav-dropdown::after { content:''; position:absolute; top:100%; left:0; right:0; height:14px; }
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity:1; visibility:visible; pointer-events:auto; transform:translateX(-50%) translateY(0);
}
.nav-dropdown-menu li { display:block; }
.nav-dropdown-menu a {
  display:block; padding:0.7rem 1.6rem; width:100%;
  font-family:var(--font-ui); font-size:0.7rem; letter-spacing:0.18em;
  text-transform:uppercase; color:var(--stone-lt); text-decoration:none;
  white-space:nowrap; transition:color 0.25s, background 0.25s;
}
.nav-dropdown-menu a::after { display:none; }
.nav-dropdown-menu a:hover { color:var(--white); background:rgba(120,120,120,0.1); }

.nav-right { display:flex; align-items:center; gap:1.5rem; }
.nav-phone {
  font-family:var(--font-ui); font-size:0.72rem;
  letter-spacing:0.12em; color:var(--stone-md);
  text-decoration:none; transition:color 0.3s;
}
.nav-phone:hover { color:#707070; }

/* Mobile hamburger */
.hamburger {
  display:none; flex-direction:column;
  gap:5px; padding:11px; background:none; border:none; cursor:pointer;
  min-width:44px; min-height:44px; align-items:center; justify-content:center;
}
.hamburger span {
  display:block; width:22px; height:1px;
  background:var(--stone-lt); transition:all 0.3s;
}
.hamburger.open span:nth-child(1) { transform:translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity:0; }
.hamburger.open span:nth-child(3) { transform:translateY(-6px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display:none; position:fixed; top:0; left:0; right:0; bottom:0; z-index:199;
  background:rgba(21,19,16,0.97); backdrop-filter:blur(20px);
  flex-direction:column; align-items:center; justify-content:center;
  gap:2.5rem; padding:2rem;
}
.mobile-nav.open { display:flex; }
.mobile-nav a {
  font-family:var(--font-ui); font-size:1rem;
  letter-spacing:0.28em; text-transform:uppercase;
  color:var(--stone-lt); text-decoration:none;
  padding:0.75rem 1.5rem; min-height:44px;
  display:flex; align-items:center;
  transition:color 0.3s;
}
.mobile-nav a:hover { color:var(--white); }
.mobile-nav .mobile-nav-phone {
  font-family:var(--font-ui); font-size:1rem;
  letter-spacing:0.12em; color:var(--stone-md);
  text-decoration:none; padding:0.75rem 1.5rem; min-height:44px;
  display:flex; align-items:center;
}
.mobile-nav .btn { min-height:44px; }

/* Mobile services accordion */
.mobile-services { width:100%; max-width:340px; text-align:center; }
.mobile-services-toggle {
  font-family:var(--font-ui); font-size:1rem; letter-spacing:0.28em; text-transform:uppercase;
  color:var(--stone-lt); background:none; border:none; cursor:pointer;
  padding:0.75rem 1.5rem; min-height:44px; width:100%;
  display:inline-flex; align-items:center; justify-content:center; gap:0.5em;
}
.mobile-services-toggle::after {
  content:''; width:0.45em; height:0.45em;
  border-right:1.5px solid currentColor; border-bottom:1.5px solid currentColor;
  transform:rotate(45deg) translateY(-0.1em); transition:transform 0.3s;
}
.mobile-services.open .mobile-services-toggle::after { transform:rotate(225deg); }
.mobile-services-list {
  display:none; flex-direction:column; gap:0; margin-top:0.4rem; padding-top:0.4rem;
  border-top:1px solid rgba(120,120,120,0.15);
}
.mobile-services.open .mobile-services-list { display:flex; }
.mobile-services-list a {
  font-size:0.82rem !important; letter-spacing:0.18em !important;
  color:var(--stone-md) !important; padding:0.6rem 1rem !important; min-height:40px !important;
  justify-content:center;
}
.mobile-services-list a:hover { color:var(--white) !important; }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  position:relative; height:100vh; min-height:680px;
  display:flex; flex-direction:column; justify-content:flex-end;
  overflow:hidden; background:var(--ink);
}

/* Hero background swap this URL for your real project photo */
.hero-bg {
  position:absolute; inset:0; z-index:0;
  background-image:
    linear-gradient(165deg, rgba(21,19,16,0.65) 0%, rgba(21,19,16,0.3) 50%, rgba(21,19,16,0.8) 100%),
    url('images/hero-background.webp');
  background-size:cover;
  background-position:center 35%;
  /* Fallback gradient when no image */
  background-color: var(--ink-mid);
}
/* Atmospheric overlay */
.hero-bg::after {
  content:'';
  position:absolute; inset:0;
  background:
    radial-gradient(ellipse at 20% 60%, rgba(120,120,120,0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(60,60,60,0.1) 0%, transparent 45%);
}

/* Spinning compass watermark */
.hero-compass {
  position:absolute; right:-6%; top:50%;
  transform:translateY(-50%);
  width:min(70vmin, 700px); height:min(70vmin, 700px);
  z-index:1; opacity:0.07;
  animation:compassSpin 100s linear infinite;
  pointer-events:none;
}
@keyframes compassSpin {
  from { transform:translateY(-50%) rotate(0deg); }
  to   { transform:translateY(-50%) rotate(360deg); }
}

/* Grain texture */
.hero-grain {
  position:absolute; inset:0; z-index:2; opacity:0.035;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size:250px 250px;
  pointer-events:none;
}

.hero-content {
  position:relative; z-index:3;
  padding:0 5rem 7rem; max-width:820px;
}

.hero-eyebrow {
  margin-bottom:2rem;
  opacity:0; animation:riseIn 1s 0.3s var(--ease-out) forwards;
}
.hero h1 {
  font-family:var(--font-display);
  font-size:clamp(3rem, 7vw, 7rem);
  font-weight:400; line-height:0.92;
  color:var(--white); letter-spacing:-0.03em;
  margin-bottom:2.2rem;
  opacity:0; animation:riseIn 1s 0.55s var(--ease-out) forwards;
}
.hero h1 em { font-style:italic; color:var(--stone-md); }
.hero h1 .gold { color:#707070; font-style:normal; }

.hero-body {
  font-size:1.2rem; font-weight:300;
  color:rgba(212,200,184,0.82); line-height:1.8;
  max-width:480px; margin-bottom:3rem;
  opacity:0; animation:riseIn 1s 0.8s var(--ease-out) forwards;
}
.hero-actions {
  display:flex; align-items:center; gap:1.5rem;
  opacity:0; animation:riseIn 1s 1s var(--ease-out) forwards;
}

/* Scroll indicator */
.hero-scroll-line {
  position:absolute; bottom:0; left:5rem; z-index:3;
  display:flex; flex-direction:column; align-items:center;
  gap:0.8rem; padding-bottom:3rem;
  opacity:0; animation:fadeIn 1s 2s forwards;
}
.hero-scroll-line span {
  font-family:var(--font-ui); font-size:0.6rem;
  letter-spacing:0.35em; text-transform:uppercase;
  color:var(--stone); writing-mode:vertical-rl;
}
.hero-scroll-line::after{display:none;}

@keyframes riseIn {
  from { opacity:0; transform:translateY(32px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeIn { to { opacity:1; } }

/* ═══════════════════════════════════════
   STATS TICKER
═══════════════════════════════════════ */
.stats {
  background:var(--ink-mid);
  border-bottom:1px solid rgba(120,120,120,0.12);
  display:flex; align-items:stretch;
}
.stat {
  flex:1; display:flex; flex-direction:column;
  align-items:center; justify-content:center;
  padding:2.2rem 2rem; text-align:center;
  border-right:1px solid rgba(120,120,120,0.12);
  position:relative; overflow:hidden;
  transition:background 0.4s;
}
.stat:last-child { border-right:none; }
.stat:hover { background:rgba(90,90,90,0.06); }
.stat-n {
  font-family:var(--font-display);
  font-size:2.6rem; font-weight:400;
  color:#707070; line-height:1;
  letter-spacing:-0.02em;
}
.stat-l {
  font-family:var(--font-ui); font-size:0.62rem;
  letter-spacing:0.32em; text-transform:uppercase;
  color:var(--stone-md); margin-top:0.4rem;
}

/* ═══════════════════════════════════════
   ABOUT
═══════════════════════════════════════ */
.about { display:grid; grid-template-columns:1fr 1fr; min-height:90vh; }

.about-visual {
  position:relative; overflow:hidden; min-height:550px;
  background:var(--ink);
}
/* About image replace URL with your photo of Zen / site work */
.about-photo {
  position:absolute; inset:0;
  background-image:
    linear-gradient(to top, rgba(21,19,16,0.88) 0%, rgba(21,19,16,0.45) 50%, rgba(21,19,16,0.25) 100%),
    url('images/about-photo.webp');
  background-size:cover;background-position:center center;
  transition:transform 8s var(--ease-out);
}
.about-visual:hover .about-photo { transform:scale(1.04); }

/* Large decorative AZ when no photo */
.about-monogram {
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
  z-index:1; pointer-events:none;
}
.about-monogram svg { width:72%; opacity:0.06; }

.about-pull {
  position:absolute; bottom:0; left:0; right:0; z-index:2;
  padding:3rem; background:linear-gradient(to top, rgba(21,19,16,0.95) 0%, transparent 100%);
}
.about-pull blockquote {
  font-family:var(--font-display); font-size:1.2rem;
  font-style:italic; color:var(--white);
  line-height:1.6; 
  padding-left:0; margin-bottom:0.8rem;
}
.about-pull cite {
  font-family:var(--font-ui); font-size:0.62rem;
  letter-spacing:0.3em; text-transform:uppercase;
  color:#707070; font-style:normal;
  padding-left:calc(1.5rem + 2px);
}

.about-copy {
  background-color:#E8E8E8;
  background-image:
    linear-gradient(rgba(232,232,232,0.88) 0%, rgba(232,232,232,0.88) 100%),
    url('images/about-texture.jpg');
  background-size:cover;
  background-position:center top;
  padding:7rem 5.5rem;
  display:flex; flex-direction:column; justify-content:center;
}
.about-copy h2 { margin:1.2rem 0 2rem; }
.about-copy p {
  font-size:1.12rem; font-weight:300;
  color:#2A2A2A; line-height:1.9; margin-bottom:1.4rem;
}
.about-values {
  display:grid; grid-template-columns:1fr 1fr;
  gap:1.5rem; margin-top:2.5rem;
}
.av {
  padding-top:1rem;
  border-top:1px solid rgba(120,120,120,0.25);
}
.av h4 {
  font-family:var(--font-display);
  font-size:1rem; color:var(--ink); margin-bottom:0.4rem;
}
.av p {
  font-size:0.88rem; color:var(--stone);
  line-height:1.6; margin:0;
}

/* ═══════════════════════════════════════
   SERVICES
═══════════════════════════════════════ */
.services {
  padding:9rem 5rem;
  background:var(--ink); position:relative; overflow:hidden;
}
.services-wm {
  position:absolute; right:-1rem; top:50%;
  transform:translateY(-50%);
  font-family:var(--font-display); font-size:18rem; font-weight:700;
  color:rgba(255,255,255,0.018); line-height:1;
  white-space:nowrap; pointer-events:none; letter-spacing:-0.04em;
}
.services-hd {
  display:flex; align-items:flex-end;
  justify-content:space-between; margin-bottom:5rem; gap:3rem;
}
.services-hd p {
  font-size:1.05rem; color:var(--stone-md);
  max-width:320px; line-height:1.75; text-align:right;
}
.services-grid {
  display:grid; grid-template-columns:repeat(2,1fr);
  gap:1px; background:rgba(120,120,120,0.08);
}
@media (max-width:900px) {
  .services-grid { grid-template-columns:1fr 1fr; }
}
.sc {
  background:var(--ink-mid); padding:3.2rem 2.8rem 4rem;
  position:relative; overflow:hidden;
  transition:background 0.45s;
}
.sc::before {
  content:''; position:absolute; top:0; left:0;
  width:0; height:2px; background:#707070;
  transition:width 0.6s var(--ease-out);
}
.sc:hover { background:#272320; }
.sc:hover::before { width:100%; }
.sc-n {
  font-family:var(--font-ui); font-size:0.65rem;
  letter-spacing:0.28em; color:#333333;
  margin-bottom:2.5rem; display:block;
}
.sc-icon {
  width:40px; height:40px; margin-bottom:1.8rem;
  color:#707070; opacity:0.8;
}
.sc h3 {
  font-family:var(--font-display); font-size:1.3rem;
  font-weight:400; color:var(--white);
  margin-bottom:1rem; line-height:1.3;
}
.sc p { font-size:0.95rem; color:var(--stone-md); line-height:1.8; }

/* ═══════════════════════════════════════
   PORTFOLIO
═══════════════════════════════════════ */
.portfolio { padding:9rem 0 0; background:var(--white); overflow:hidden; }
.portfolio-hd {
  padding:0 5rem; margin-bottom:4.5rem;
  display:flex; align-items:flex-end; justify-content:space-between;
}
.portfolio-hd-left { display:flex; flex-direction:column; gap:1.2rem; }
.portfolio-hd a {
  font-family:var(--font-ui); font-size:0.72rem;
  letter-spacing:0.25em; text-transform:uppercase;
  color:var(--stone); text-decoration:none;
  border-bottom:1px solid var(--stone-lt);
  padding-bottom:2px; transition:all 0.3s;
}
.portfolio-hd a:hover { color:var(--ink); border-color:var(--stone); }

/* Horizontal drag-scroll */
.port-scroll {
  overflow-x:auto; cursor:grab; padding-bottom:5rem;
  -webkit-overflow-scrolling:touch;
  scroll-snap-type:x mandatory;
}
.pi { scroll-snap-align:start; }
.port-scroll:active { cursor:grabbing; }
.port-scroll::-webkit-scrollbar { height:2px; }
.port-scroll::-webkit-scrollbar-track { background:#E8E8E8; }
.port-scroll::-webkit-scrollbar-thumb { background:var(--stone); }
.port-track {
  display:flex; gap:4px;
  padding:0 5rem; width:max-content;
}

.pi { position:relative; overflow:hidden; flex:0 0 auto; }
.pi:nth-child(1) { width:520px; height:620px; }
.pi:nth-child(2) { width:360px; height:620px; }
.pi:nth-child(3) { width:480px; height:620px; }
.pi:nth-child(4) { width:420px; height:620px; }
.pi:nth-child(5) { width:500px; height:620px; }
.pi:nth-child(6) { width:380px; height:620px; }

.pi-bg {
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  transition:transform 0.8s var(--ease-out);
}
.pi:hover .pi-bg { transform:scale(1.06); }

/* Portfolio image slots replace bg colors with url('your-photo.jpg') */
.pi:nth-child(1) .pi-bg { background-image:url('images/project-1.webp');background-size:cover;background-position:center;
  background-image:url('images/project-1b.webp');
}
.pi:nth-child(2) .pi-bg { background-image:url('images/project-2.webp');background-size:cover;background-position:center;
  background-image:url('images/project-2b.webp');
}
.pi:nth-child(3) .pi-bg { background-image:url('images/project-3.webp');background-size:cover;background-position:center;
  background-image:url('images/project-3b.webp');
}
.pi:nth-child(4) .pi-bg { background-image:url('images/project-4.webp');background-size:cover;background-position:center;
  background-image:url('images/project-4b.webp');
}
.pi:nth-child(5) .pi-bg { background-image:url('images/project-5.webp');background-size:cover;background-position:center;
  background-image:url('images/project-5b.webp');
}
.pi:nth-child(6) .pi-bg { background-image:url('images/project-6.webp');background-size:cover;background-position:center;
  /* background-image: url('project-courtyard.jpg'); */
}

/* Texture on placeholder */
.pi-bg::after {
  content:''; position:absolute; inset:0;
  background-image:
    radial-gradient(circle at 30% 40%, rgba(60,60,60,0.1) 0%, transparent 55%),
    radial-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size:100% 100%, 20px 20px;
}
/* Compass marks on placeholders */
.pi-mark {
  position:absolute; top:50%; left:50%;
  transform:translate(-50%,-50%);
  width:50%; opacity:0.1; pointer-events:none;
  transition:opacity 0.4s;
}
.pi:hover .pi-mark { opacity:0.05; }

.pi-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(21,19,16,0.92) 0%, rgba(21,19,16,0.15) 45%, transparent 65%);
  opacity:0; transition:opacity 0.45s;
}
.pi:hover .pi-overlay { opacity:1; }
.pi-info {
  position:absolute; bottom:2.5rem; left:2.5rem; right:2.5rem;
  opacity:0; transform:translateY(14px);
  transition:all 0.45s var(--ease-out);
}
.pi:hover .pi-info { opacity:1; transform:translateY(0); }
.pi-info h4 {
  font-family:var(--font-display); font-size:1.15rem;
  color:var(--white); margin-bottom:0.35rem;
}
.pi-info span {
  font-family:var(--font-ui); font-size:0.68rem;
  letter-spacing:0.22em; text-transform:uppercase; color:#707070;
}

/* Portfolio add-photo hint */
.pi-placeholder-label {
  position:absolute; top:50%; left:50%;
  transform:translate(-50%,-50%);
  text-align:center; z-index:2; pointer-events:none;
}
.pi-placeholder-label p {
  font-family:var(--font-ui); font-size:0.65rem;
  letter-spacing:0.25em; text-transform:uppercase;
  color:rgba(176,160,144,0.35);
}

/* ═══════════════════════════════════════
   FULL-WIDTH CTA BANNER
═══════════════════════════════════════ */
.cta-banner {
  position:relative; overflow:hidden;
  padding:8rem 5rem;
  background:var(--ink-soft);
  display:flex; align-items:center; justify-content:space-between;
  gap:4rem;
}
.cta-banner::before {
  content:''; position:absolute; inset:0;
  background:
    radial-gradient(ellipse at 0% 100%, rgba(60,60,60,0.15) 0%, transparent 55%),
    radial-gradient(ellipse at 100% 0%, rgba(120,120,120,0.08) 0%, transparent 50%);
}
.cta-banner-text { position:relative; z-index:1; }
.cta-banner-text h2 {
  font-family:var(--font-display);
  font-size:clamp(2rem,3.5vw,3rem);
  font-weight:400; color:var(--white);
  line-height:1.15; margin-top:1rem; margin-bottom:0;
}
.cta-banner-text h2 em { font-style:italic; color:var(--stone-md); }
.cta-banner-actions {
  display:flex; flex-direction:column;
  align-items:flex-end; gap:1rem; position:relative; z-index:1;
  flex-shrink:0;
}
.cta-banner-actions .sub-note {
  font-family:var(--font-ui); font-size:0.68rem;
  letter-spacing:0.18em; color:var(--stone);
  text-align:right;
}

/* ═══════════════════════════════════════
   PROCESS
═══════════════════════════════════════ */
.process {
  padding:9rem 5rem;
  background-color:#F2F2F2;
  background-image:
    linear-gradient(rgba(242,242,242,0.82) 0%, rgba(242,242,242,0.82) 100%),
    url('images/process-texture.jpg');
  background-size:cover;
  background-position:center center;
  background-attachment:fixed;
}
.process-layout {
  display:grid; grid-template-columns:350px 1fr;
  gap:7rem; margin-top:5rem;
}
.process-aside h3 {
  font-family:var(--font-display); font-size:1.9rem;
  font-style:italic; font-weight:400; color:var(--ink);
  line-height:1.4; margin-bottom:1.5rem;
}
.process-aside p { font-size:1rem; color:#383838; line-height:1.85; }
.process-aside a {
  display:inline-block; margin-top:2rem;
  font-family:var(--font-ui); font-size:0.72rem;
  letter-spacing:0.25em; text-transform:uppercase;
  color:#707070; text-decoration:none;
  border-bottom:1px solid rgba(196,154,90,0.35);
  padding-bottom:2px; transition:border-color 0.3s;
}
.process-aside a:hover { border-color:#707070; }

.process-steps { display:grid; grid-template-columns:1fr 1fr; gap:3rem; }
.ps {
  display:flex; gap:1.5rem; align-items:flex-start;
  padding:2rem; background:rgba(255,255,255,0.6);
  border:1px solid rgba(120,120,120,0.15);
  transition:all 0.4s;
}
.ps:hover {
  background:var(--white);
  border-color:rgba(90,90,90,0.35);
  transform:translateY(-3px);
  box-shadow:0 12px 40px rgba(21,19,16,0.08);
}
.ps-num {
  flex-shrink:0; width:50px; height:50px;
  border:1px solid rgba(120,120,120,0.4);
  border-radius:50%; display:flex; align-items:center; justify-content:center;
  font-family:var(--font-display); font-size:1rem; color:var(--stone);
  transition:border-color 0.3s, color 0.3s;
}
.ps:hover .ps-num { border-color:#707070; color:#707070; }
.ps-body { flex:1; }
.ps-body h4 {
  font-family:var(--font-display); font-size:1.05rem;
  color:var(--ink); margin-bottom:0.5rem; margin-top:0.65rem;
}
.ps-body p { font-size:0.9rem; color:#383838; line-height:1.65; }

/* ═══════════════════════════════════════
   PROCESS TESTIMONIAL PANEL
═══════════════════════════════════════ */
.process-testimonial {
  margin-top:5rem;
  display:grid;
  grid-template-columns:1.6fr 0.55fr;
  background:var(--ink-mid);
  overflow:hidden;
  border-top:1px solid rgba(120,120,120,0.12);
  position:relative;
}
.testimonial-compass {
  position:absolute;
  left:37%;
  top:50%;
  transform:translate(-50%, -50%);
  width:min(80vmin, 700px);
  height:min(80vmin, 700px);
  opacity:0.06;
  pointer-events:none;
  z-index:0;
  object-fit:contain;
}
.pt-quote-col, .pt-video-col {
  position:relative;
  z-index:1;
}

/* Quote column */
.pt-quote-col {
  padding:5rem 5rem 5rem 6rem;
  display:flex; flex-direction:column; justify-content:center;
  position:relative;
}
.pt-quote-col::before {
  content:'\201C';
  position:absolute; top:2.5rem; left:5.5rem;
  font-family:var(--font-display); font-size:9rem;
  line-height:1; color:rgba(255,255,255,0.05);
  pointer-events:none;
}
.pt-backstory {
  font-family:var(--font-body);
  font-size:1rem; font-weight:300;
  color:rgba(212,200,184,0.75); line-height:1.85;
  margin-bottom:1.4rem;
  position:relative; z-index:1;
}
.pt-quote {
  font-family:var(--font-display);
  font-size:clamp(1.8rem, 2.4vw, 2.8rem);
  font-style:italic; font-weight:400;
  color:var(--white); line-height:1.35;
  position:relative; z-index:1;
  margin-bottom:2rem;
}
.pt-attribution {
  display:flex; align-items:center; gap:1rem;
}
.pt-attribution::before {
  content:'';
  display:block; width:24px; height:1px;
  background:var(--stone); flex-shrink:0;
}
.pt-attribution-name {
  font-family:var(--font-ui);
  font-size:0.65rem;
  letter-spacing:0.28em;
  text-transform:uppercase;
  color:var(--stone-md);
}

/* Video column — narrow vertical 9:16 */
.pt-video-col {
  display:flex; flex-direction:column; justify-content:center;
  padding:2.5rem 2rem;
  border-left:1px solid rgba(120,120,120,0.12);
  background:rgba(0,0,0,0.25);
  min-width:0;
}
.pt-video-label {
  font-family:var(--font-ui); font-size:0.58rem;
  letter-spacing:0.3em; text-transform:uppercase;
  color:var(--stone-md); margin-bottom:1rem;
}
.pt-video-wrap {
  position:relative;
  padding-bottom:177.78%;
  height:0; overflow:hidden;
  background:var(--ink);
  border-radius:2px;
}
.pt-video-wrap video {
  position:absolute; top:0; left:0;
  width:100%; height:100%;
  border:none; object-fit:cover;
}

/* Responsive */
@media (max-width:900px) {
  .process-testimonial {
    grid-template-columns:1fr;
  }
  .pt-quote-col {
    padding:3.5rem 2.5rem 3rem;
    border-bottom:1px solid rgba(120,120,120,0.12);
  }
  .pt-quote-col::before { left:2rem; top:2rem; font-size:6rem; }
  .pt-video-col {
    border-left:none;
    flex-direction:row; align-items:center; gap:2rem;
    padding:2rem 2.5rem;
  }
  .pt-video-wrap {
    padding-bottom:0;
    width:100px; height:178px;
    flex-shrink:0;
  }
  .pt-video-label { margin-bottom:0; flex-shrink:0; }
}
@media (max-width:480px) {
  .hero h1 { font-size:clamp(2.2rem,10vw,3rem); }
  .hero-content { padding:0 1.25rem 5rem; }
  .sc { padding:2.2rem 1.5rem 3rem; }
  .services-hd h2 { font-size:clamp(1.8rem,7vw,2.5rem); }
  .pt-quote-col { padding:2.5rem 1.5rem; }
  .pt-quote-col::before { display:none; }
  .pt-video-col {
    flex-direction:column; align-items:flex-start;
    padding:2rem 1.5rem;
  }
  .pt-video-wrap {
    width:100%; height:0;
    padding-bottom:177.78%;
  }
}

/* ═══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
.testimonials {
  padding:9rem 5rem; background:var(--ink);
  position:relative; overflow:hidden;
  text-align:center;
}
/* Elfsight Google Reviews widget — font overrides to match Artizen */
.elfsight-app-d5043c7b-b558-4918-9f1b-dbbd2a35dd8d,
.elfsight-app-d5043c7b-b558-4918-9f1b-dbbd2a35dd8d * {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
}
.elfsight-app-d5043c7b-b558-4918-9f1b-dbbd2a35dd8d h1,
.elfsight-app-d5043c7b-b558-4918-9f1b-dbbd2a35dd8d h2,
.elfsight-app-d5043c7b-b558-4918-9f1b-dbbd2a35dd8d h3,
.elfsight-app-d5043c7b-b558-4918-9f1b-dbbd2a35dd8d h4 {
  font-family: 'Playfair Display', Georgia, serif !important;
}

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
.contact { display:grid; grid-template-columns:1fr 1fr; }

.contact-left {
  background:var(--ink-soft); padding:7rem 5.5rem;
  display:flex; flex-direction:column; justify-content:center;
  position:relative; overflow:hidden;
}
.contact-left::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse at 20% 80%, rgba(60,60,60,0.12) 0%, transparent 55%);
}
.contact-left h2 {
  font-family:var(--font-display);
  font-size:clamp(2rem,3vw,2.8rem); font-weight:400;
  color:var(--white); line-height:1.18;
  margin:1.2rem 0 1.5rem; position:relative; z-index:1;
}
.contact-left h2 em { font-style:italic; color:var(--stone-md); }
.contact-left .lead {
  font-size:1.12rem; color:rgba(176,160,144,0.78);
  line-height:1.8; margin-bottom:3.5rem;
  position:relative; z-index:1;
}
.contact-details { display:flex; flex-direction:column; gap:2rem; position:relative; z-index:1; }
.cd { display:flex; flex-direction:column; gap:0.3rem; }
.cd .lbl {
  font-family:var(--font-ui); font-size:0.6rem;
  letter-spacing:0.38em; text-transform:uppercase;
  color:var(--stone-md); opacity:0.65;
}
.cd a, .cd span {
  font-size:1.05rem; color:var(--white);
  text-decoration:none; transition:color 0.3s;
}
.cd a:hover { color:#707070; }
.socials { display:flex; gap:1.8rem; margin-top:3.5rem; position:relative; z-index:1; flex-wrap:wrap; }
.socials a {
  font-family:var(--font-ui); font-size:0.68rem;
  letter-spacing:0.22em; text-transform:uppercase;
  color:var(--stone-md); text-decoration:none;
  border-bottom:1px solid rgba(120,120,120,0.3); padding-bottom:2px;
  transition:all 0.3s;
  /* Larger tap target on mobile */
  padding:0.5rem 0 0.5rem;
  display:inline-flex; align-items:center; min-height:44px;
}
.socials a:hover { color:#707070; border-color:#707070; }

.contact-right {
  background:#E8E8E8; padding:7rem 5.5rem;
  display:flex; flex-direction:column; justify-content:center;
}
.contact-right h3 {
  font-family:var(--font-display); font-size:1.7rem;
  font-weight:400; color:var(--ink); margin-bottom:2.5rem;
}
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1.5rem; }
.fg { margin-bottom:1.8rem; }
.fg label {
  display:block; font-family:var(--font-ui);
  font-size:0.6rem; letter-spacing:0.35em; text-transform:uppercase;
  color:var(--stone); margin-bottom:0.6rem;
}
.fg input, .fg textarea, .fg select {
  width:100%; background:transparent; border:none;
  border-bottom:1px solid rgba(120,120,120,0.38);
  padding:0.85rem 0; font-family:var(--font-body);
  font-size:1.05rem; color:var(--ink); outline:none;
  transition:border-color 0.3s; -webkit-appearance:none;
}
/* Prevent iOS auto-zoom: inputs must be at least 16px */
@media (max-width:1024px) {
  .fg input, .fg textarea, .fg select {
    font-size:16px;
    padding:1.1rem 0;
  }
}
.fg input:focus, .fg textarea:focus, .fg select:focus {
  border-color:var(--stone);
}
.fg textarea { resize:none; height:90px; }
.fg select option { background:var(--white); }
.fg input::placeholder, .fg textarea::placeholder { color:rgba(120,120,120,0.5); }

.form-submit {
  width:100%; margin-top:0.5rem;
  background:var(--ink); color:var(--white); border:none; border-radius:8px;
  padding:1.15rem 2.5rem;
  font-family:var(--font-ui); font-size:0.75rem;
  letter-spacing:0.28em; text-transform:uppercase;
  cursor:pointer; transition:background 0.35s;
}
.form-submit:hover { background:var(--ink-soft); }
.form-note {
  font-family:var(--font-ui); font-size:0.62rem;
  letter-spacing:0.1em; color:var(--stone);
  text-align:center; margin-top:1rem;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  background:var(--ink); padding:3.5rem 5rem;
  border-top:1px solid rgba(120,120,120,0.1);
}
.footer-top {
  display:flex; align-items:center;
  justify-content:space-between; gap:2rem;
  padding-bottom:2.5rem;
  border-bottom:1px solid rgba(120,120,120,0.1);
  margin-bottom:2.5rem;
}
.footer-brand .name {
  font-family:var(--font-display); font-size:1.05rem;
  letter-spacing:0.3em; color:var(--white);
  text-transform:uppercase; display:block;
}
.footer-brand .tag {
  font-family:var(--font-ui); font-size:0.6rem;
  letter-spacing:0.25em; color:var(--stone);
  text-transform:uppercase; margin-top:4px; display:block;
}
.footer-nav { display:flex; gap:2.5rem; flex-wrap:wrap; }
.footer-nav a {
  font-family:var(--font-ui); font-size:0.7rem;
  letter-spacing:0.18em; text-transform:uppercase;
  color:var(--stone); text-decoration:none; transition:color 0.3s;
  padding:0.5rem 0; display:inline-flex; align-items:center; min-height:44px;
}
.footer-nav a:hover { color:var(--stone-md); }
.footer-bottom {
  display:flex; align-items:center; justify-content:space-between; gap:2rem;
}
.footer-copy {
  font-family:var(--font-ui); font-size:0.65rem;
  letter-spacing:0.12em; color:var(--stone); opacity:0.55;
}
.footer-socials { display:flex; gap:1.5rem; flex-wrap:wrap; }
.footer-socials a {
  font-family:var(--font-ui); font-size:0.65rem;
  letter-spacing:0.18em; text-transform:uppercase;
  color:var(--stone); text-decoration:none; opacity:0.55;
  transition:opacity 0.3s, color 0.3s;
  padding:0.5rem 0; display:inline-flex; align-items:center; min-height:44px;
}
.footer-socials a:hover { opacity:1; color:#707070; }

/* ═══════════════════════════════════════
   MOBILE
═══════════════════════════════════════ */
/* Fix hero bottom padding on short/small phones */
@media (max-width:480px) {
  #nav { padding:1.2rem 1.2rem; }
  #nav.scrolled { padding:0.8rem 1.2rem; }
  .logo-text .brand { font-size:0.85rem; }
  .hero-content { padding:0 1.2rem 4rem; }
  .hero-body { font-size:1rem; }
  .hero-actions { flex-direction:column; align-items:flex-start; gap:1rem; }
  /* Tighter section padding on very small screens */
  .contact-left { padding:3.5rem 1.2rem; }
  .contact-right { padding:3.5rem 1.2rem; }
  .services { padding:4rem 1.2rem; }
  .process { padding:4rem 1.2rem; }
  .testimonials { padding:4rem 1.2rem; }
  /* Footer polish on small phones */
  footer { padding:2.5rem 1.2rem; }
  .footer-nav { gap:0 1.8rem; }
  .footer-nav a { min-height:40px; }
  .footer-socials { gap:0 1.5rem; }
  .footer-socials a { min-height:40px; }
  .footer-copy { font-size:0.58rem; line-height:1.8; }
}

@media (max-width:1024px) {
  #nav { padding:1.5rem 2rem; }
  #nav.scrolled { padding:1rem 2rem; }
  .nav-links, .nav-phone, .nav-right .btn { display:none; }
  .hamburger { display:flex; }
  .hero-content { padding:0 2rem 6rem; }
  .hero h1 { font-size:clamp(2.8rem,9vw,4.5rem); }
  .hero-scroll-line { left:2rem; }
  .stats { flex-wrap:wrap; }
  .stat { flex:1 1 50%; border-bottom:1px solid rgba(120,120,120,0.12); }
  /* Remove bottom border from last two stats (bottom row of 2-col grid) */
  .stat:nth-last-child(-n+2) { border-bottom:none; }
  .about { grid-template-columns:1fr; }
  .about-visual { min-height:100vw; max-height:100vh; }
  .about-photo { background-position:center center; }
  .about-copy { padding:4rem 1.5rem; }
  .about-copy { padding:5rem 2rem; }
  .about-values { grid-template-columns:1fr; }
  .services { padding:5rem 1.5rem; }
  .services-hd { margin-bottom:3rem; }
  .services-hd { flex-direction:column; align-items:flex-start; }
  .services-hd p { text-align:left; }
  .services-grid { grid-template-columns:1fr; }
  .sc-photo { min-height:320px; }
  .sc-photo-body { padding:1.8rem; }
  .sc-photo-body h3 { font-size:1.2rem; }
  .sc-photo-body p { font-size:0.9rem; }
  .portfolio-hd { padding:0 2rem; flex-direction:column; align-items:flex-start; gap:1rem; }
  .port-track { padding:0 2rem; }
  .cta-banner { flex-direction:column; padding:5rem 2rem; gap:2.5rem; }
  .cta-banner-actions { align-items:flex-start; }
  .process { padding:5rem 1.5rem; }
  .ps { padding:2rem 1.5rem; }
  .process-layout { grid-template-columns:1fr; gap:4rem; }
  .process-steps { grid-template-columns:1fr; }
  .testimonials { padding:6rem 2rem; }
  .contact { grid-template-columns:1fr; }
  .contact-left { padding:4rem 1.5rem; }
  .contact-right { padding:4rem 1.5rem; }
  .form-row { grid-template-columns:1fr; }
  footer { padding:3rem 1.5rem; }
  .footer-top { flex-direction:column; align-items:flex-start; }
  .footer-nav { flex-wrap:wrap; gap:0 1.8rem; }
  .footer-bottom { flex-direction:column; align-items:flex-start; }
}
/* Form row for contact */
.form-row { display:grid;grid-template-columns:1fr 1fr;gap:1.5rem; }
@media(max-width:900px){ .form-row{grid-template-columns:1fr;} }

/* Service cards with photos */
.sc-photo {
  position:relative;overflow:hidden;min-height:420px;
  display:flex;flex-direction:column;justify-content:flex-end;
  cursor:default;
}
.sc-photo-bg {
  position:absolute;inset:0;
  background-size:cover;background-position:center;
  transition:transform 0.7s ease;
}
.sc-photo:hover .sc-photo-bg { transform:scale(1.05); }
.sc-photo-overlay {
  position:absolute;inset:0;
  background:linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.15) 100%);
}
.sc-photo-body {
  position:relative;z-index:2;
  padding:2.5rem;
}
.sc-photo-body .sc-n { color:rgba(255,255,255,0.4); }
.sc-photo-body h3 { color:#FFFFFF;margin-bottom:0.8rem; }
.sc-photo-body p { color:rgba(255,255,255,0.75); }

/* ═══ Section seam transitions — fade dark section edges into shared ink base ═══ */
.seam { position:relative; overflow:hidden; }
.seam::before, .seam::after { content:""; position:absolute; left:0; right:0; z-index:3; pointer-events:none; height:clamp(60px,9vh,120px); }
.seam::before { top:0; background:linear-gradient(180deg, var(--ink) 0%, rgba(21,19,16,0) 100%); }
.seam::after { bottom:0; background:linear-gradient(0deg, var(--ink) 0%, rgba(21,19,16,0) 100%); }
.seam--top::after { display:none; }
.seam--bottom::before { display:none; }
