/* =========================================================
   SHARPTECH SHARPENING STYLESHEET
   Design tokens: color, type scale, spacing, "edge" geometry
   ========================================================= */

:root{
  /* Color */
  --black: #111111;
  --charcoal: #1B1B1E;
  --charcoal-2: #232327;
  --white: #FFFFFF;
  --orange: #F97316;
  --orange-dim: #C2660F;
  --steel: #8A8F98;
  --steel-dark: #55585F;
  --line: rgba(255,255,255,0.08);
  --line-dark: rgba(17,17,17,0.08);

  /* Type */
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Signature geometry: the 17deg bevel/edge angle used throughout */
  --edge-angle: 17deg;

  /* Spacing scale */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4.5rem;
  --space-7: 7rem;

  --radius: 4px;
  --ease: cubic-bezier(.4,0,.2,1);
}

/* =========================================================
   RESET
   ========================================================= */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
body{
  margin:0;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
button{ font-family: inherit; cursor:pointer; }
input, select, textarea{ font-family: inherit; font-size: 1rem; }
h1,h2,h3,h4{ margin:0; }
p{ margin:0; }

.skip-link{
  position:absolute; left:-999px; top:0; background:var(--orange); color:var(--black);
  padding:.75rem 1.25rem; z-index:200; font-weight:700;
}
.skip-link:focus{ left: var(--space-2); top: var(--space-2); }

:focus-visible{ outline: 2px solid var(--orange); outline-offset: 3px; }

.container{ max-width: 1240px; margin: 0 auto; padding: 0 var(--space-3); }
.container-narrow{ max-width: 780px; }

/* =========================================================
   TYPOGRAPHY UTILITIES
   ========================================================= */
.eyebrow{
  font-family: var(--font-mono);
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  display:flex; align-items:center; gap:.5rem;
  margin-bottom: var(--space-2);
}
.eyebrow-light{ color: var(--orange); }
.eyebrow-dot{
  width:6px; height:6px; background: var(--orange); border-radius:50%;
  display:inline-block;
}

.section-title{
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--black);
  text-transform: none;
}
.section-title-light{ color: var(--white); }
.section-sub{
  max-width: 46ch;
  color: var(--steel-dark);
  font-size: 1.05rem;
  margin-top: var(--space-2);
}
.section-sub-light{ color: var(--steel); }

.section-head{ margin-bottom: var(--space-5); }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  font-weight:700; font-size:0.95rem;
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: transform .25s var(--ease), background-color .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
  white-space:nowrap;
}
.btn-primary{
  background: var(--orange);
  color: var(--black);
}
.btn-primary:hover{ background: var(--orange-dim); transform: translateY(-2px); }
.btn-ghost{
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-ghost:hover{ border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }
.btn-lg{ padding: 1.05rem 2.1rem; font-size:1rem; }
.btn-block{ width:100%; }

/* =========================================================
   NAVIGATION
   ========================================================= */
.site-header{
  position: sticky; top:0; z-index:100;
  background: rgba(17,17,17,0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-bar{
  max-width:1240px; margin:0 auto; padding: 0.9rem var(--space-3);
  display:flex; align-items:center; gap: var(--space-4);
}
.nav-logo{ display:flex; flex-direction:column; line-height:1; margin-right:auto; }
.nav-logo-mark{
  font-family: var(--font-display);
  font-size: 1.85rem;
  letter-spacing: 0.03em;
  color: var(--white);
}
.nav-logo-accent{ color: var(--orange); }
.nav-logo-sub{
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  color: var(--steel);
}
.nav-links{ display:flex; gap: var(--space-4); }
.nav-links a{
  color: var(--white); font-size:0.92rem; font-weight:500;
  position:relative; padding: 0.25rem 0;
}
.nav-links a::after{
  content:''; position:absolute; left:0; bottom:-2px; width:0; height:2px;
  background: var(--orange); transition: width .25s var(--ease);
}
.nav-links a:hover::after{ width:100%; }
.nav-cta{ padding: 0.65rem 1.2rem; font-size:0.88rem; }

.hamburger{
  display:none; background:none; border:none;
  width:44px; height:44px; padding:9px;
  position:relative;
}
.hamburger span{
  position:absolute; left:9px; width:26px; height:2px; background: var(--white);
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.hamburger span:nth-child(1){ top:13px; }
.hamburger span:nth-child(2){ top:21px; }
.hamburger span:nth-child(3){ top:29px; }
.hamburger.is-open span:nth-child(1){ transform: translateY(8px) rotate(45deg); }
.hamburger.is-open span:nth-child(2){ opacity:0; }
.hamburger.is-open span:nth-child(3){ transform: translateY(-8px) rotate(-45deg); }

.mobile-menu{
  display:none;
  max-height:0; overflow:hidden;
  background: var(--black);
  border-bottom: 1px solid var(--line);
  transition: max-height .35s var(--ease);
}
.mobile-menu.is-open{ max-height: 480px; }
.mobile-menu ul{ padding: var(--space-2) var(--space-3); }
.mobile-menu li a{
  display:block; padding: 0.85rem 0; color: var(--white);
  border-bottom: 1px solid var(--line); font-size:1.05rem;
}
.mobile-menu-cta{ margin: var(--space-2) var(--space-3) var(--space-3); }

@media (max-width: 900px){
  .nav-links, .nav-cta{ display:none; }
  .hamburger{ display:block; }
  .mobile-menu{ display:block; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position:relative;
  min-height: 92vh;
  display:flex; align-items:center;
  background: var(--black);
  overflow:hidden;
  padding-top: var(--space-6);
  padding-bottom: var(--space-6);
}
.hero-media{ position:absolute; inset:0; z-index:0; }
.hero-img{
  position:absolute; inset:0; width:100%; height:100%;
  background:
    radial-gradient(ellipse 60% 50% at 78% 22%, rgba(249,115,22,0.16), transparent 60%),
    repeating-linear-gradient(
      var(--edge-angle),
      #17171a 0px, #17171a 46px,
      #1c1c20 46px, #1c1c20 92px
    );
}
.hero-scrim{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(17,17,17,0.55) 0%, rgba(17,17,17,0.75) 55%, var(--black) 100%);
}
/* Signature "edge sweep": animated 17deg line referencing a sharpening bevel */
.edge-sweep{
  position:absolute; top:0; left:-20%;
  width:2px; height:140%;
  background: linear-gradient(180deg, transparent, var(--orange) 40%, var(--orange) 60%, transparent);
  transform: rotate(var(--edge-angle));
  opacity:0.85;
  box-shadow: 0 0 24px 2px rgba(249,115,22,0.55);
  animation: edgeSweep 7s ease-in-out infinite;
}
@keyframes edgeSweep{
  0%   { left:-10%; opacity:0; }
  10%  { opacity:0.85; }
  50%  { left: 60%; opacity:0.85; }
  90%  { opacity:0; }
  100% { left: 110%; opacity:0; }
}

.hero-inner{ position:relative; z-index:1; }
.hero-title{
  font-family: var(--font-display);
  color: var(--white);
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: 0.005em;
  margin-bottom: var(--space-3);
}
.hero-title-edge{
  position:relative;
  display:inline-block;
  color: var(--white);
}
.hero-title-edge::after{
  content:'';
  position:absolute; left:0; bottom:-0.14em; height:0.09em; width:100%;
  background: var(--orange);
  transform-origin: left center;
  -webkit-clip-path: polygon(0 0, 96% 0, 100% 100%, 4% 100%);
  clip-path: polygon(0 0, 96% 0, 100% 100%, 4% 100%);
}
.hero-sub{
  color: var(--steel);
  font-size: 1.15rem;
  max-width: 52ch;
  margin-bottom: var(--space-4);
}
.hero-actions{ display:flex; gap: var(--space-2); flex-wrap:wrap; margin-bottom: var(--space-4); }

.trust-badges{
  display:flex; flex-wrap:wrap; gap: var(--space-2) var(--space-4);
  margin-bottom: var(--space-5);
  padding: 0; list-style:none;
}
.trust-badges li{
  display:flex; align-items:center; gap:0.45rem;
  color: var(--steel); font-size:0.9rem; font-weight:500;
}
.trust-badge-icon{ width:17px; height:17px; color: var(--orange); flex-shrink:0; }

.hero-stats{
  display:flex; align-items:center; gap: var(--space-4);
  border-top: 1px solid var(--line);
  padding-top: var(--space-4);
  flex-wrap:wrap;
}
.hero-stat{ display:flex; flex-direction:column; gap:0.25rem; }
.hero-stat-num{
  font-family: var(--font-mono); font-weight:600;
  color: var(--white); font-size:1.45rem;
}
.hero-stat-label{ color: var(--steel); font-size:1rem; }
.hero-stat-divider{ width:1px; height:32px; background: var(--line); }

@media (max-width:640px){
  .hero-stat-divider{ display:none; }
  .hero-stats{ gap: var(--space-3); }
}

/* =========================================================
   SECTIONS (angled bevel dividers, signature element)
   ========================================================= */
.section{
  position:relative;
  padding: var(--space-7) 0;
  background: var(--white);
}
.section-dark{
  background: var(--black);
  color: var(--white);
}
.section-dark + .section-dark{ padding-top:0; }

/* Angled cut at top of dark sections instead of a straight divider */
.section-dark::before{
  content:'';
  position:absolute; top:0; left:0; right:0; height: 48px;
  background: var(--white);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
}
.section-dark:first-of-type::before,
#pricing::before{ background: var(--white); }

/* =========================================================
   CARD GRID / SERVICE CARDS
   ========================================================= */
.card-grid{
  display:grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4);
}
@media (max-width: 980px){ .card-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px){ .card-grid{ grid-template-columns: 1fr; } }

.service-card{
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  overflow:hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.service-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -20px rgba(17,17,17,0.25);
}
.service-card-media{
  aspect-ratio: 4/3; overflow:hidden; background: var(--charcoal);
  position:relative;
}
.service-card-media img{ width:100%; height:100%; object-fit:cover; transition: transform .5s var(--ease); }
.service-card:hover .service-card-media img,
.service-card:hover .service-card-media .img-placeholder{ transform: scale(1.06); }
.service-card-body{ padding: var(--space-3); }
.service-card-body h3{
  font-family: var(--font-display);
  font-size:1.5rem; letter-spacing:0.02em; margin-bottom: 0.5rem;
}
.service-card-body p{ color: var(--steel-dark); font-size:0.95rem; margin-bottom: var(--space-2); }
.card-link{
  color: var(--orange); font-weight:700; font-size:0.9rem;
  display:inline-flex; align-items:center; gap:0.35rem;
}
.card-link span{ transition: transform .25s var(--ease); }
.card-link:hover span{ transform: translateX(4px); }

/* =========================================================
   IMAGE PLACEHOLDER SYSTEM
   Stands in for real photography using the site's own visual
   language (the 17deg edge angle) instead of a broken <img>.
   Swap out for a real <img class="..."> tag when photography
   is available -- structural classes (service-card-media,
   ba-img, ba-after, ba-before) stay the same either way.
   ========================================================= */
.img-placeholder{
  position:absolute; inset:0; width:100%; height:100%;
  display:flex; align-items:center; justify-content:center;
  background: repeating-linear-gradient(
    var(--edge-angle),
    var(--charcoal) 0px, var(--charcoal) 22px,
    var(--charcoal-2) 22px, var(--charcoal-2) 44px
  );
  color: var(--orange);
  overflow:hidden;
}
.img-placeholder-icon{ width: 15%; min-width:28px; max-width:52px; height:auto; opacity:0.5; }
.img-placeholder-label{
  position:absolute; left:10px; bottom:10px;
  font-family: var(--font-mono); font-size:0.62rem; letter-spacing:0.03em;
  color: rgba(255,255,255,0.55);
  background: rgba(17,17,17,0.6);
  padding: 0.2rem 0.5rem; border-radius: 2px;
}
/* Before/after gallery variants keep the concept legible even
   without real photos: "before" reads muted/flat, "after"
   carries a faint orange glint along the edge angle. */
.img-placeholder-before{ filter: grayscale(0.6) brightness(0.72); }
.img-placeholder-after::before{
  content:'';
  position:absolute; inset:0;
  background: linear-gradient(var(--edge-angle), transparent 42%, rgba(249,115,22,0.16) 50%, transparent 58%);
}

/* =========================================================
   WHY CHOOSE US
   ========================================================= */
/* Uses .card-grid's default 3-column layout and its responsive
   breakpoints as-is -- no separate rule here, since an earlier
   version of this rule was unconditionally overriding the
   .card-grid mobile breakpoints (a specificity/cascade bug). */
.why-card{
  padding: var(--space-4);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--charcoal);
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.why-card:hover{ transform: translateY(-6px); border-color: var(--orange); }
.why-card-icon{
  width:40px; height:40px; margin-bottom: var(--space-3); color: var(--orange);
}
.why-card-icon svg{ width:100%; height:100%; }
.why-card h3{ font-family: var(--font-display); font-size:1.4rem; letter-spacing:0.02em; margin-bottom:0.5rem; }
.why-card p{ color: var(--steel); font-size:0.92rem; }

/* =========================================================
   BEFORE/AFTER GALLERY (drag slider, signature element)
   ========================================================= */
.gallery-grid{
  display:grid; grid-template-columns: repeat(3,1fr); gap: var(--space-4);
}
@media (max-width:980px){ .gallery-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width:640px){ .gallery-grid{ grid-template-columns: 1fr; } }

.ba-frame{
  position:relative; aspect-ratio: 4/3; overflow:hidden;
  border-radius: var(--radius);
  background: var(--charcoal);
  cursor: ew-resize;
  user-select:none;
}
.ba-img.ba-after{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:1;
}
/* .ba-clip is the reveal window for the "before" image; JS drives its width (%)
   and sets --ba-frame-w (px) on .ba-frame so the nested image doesn't rescale
   as the window narrows -- it stays pinned to the frame's true width. */
.ba-clip{
  position:absolute; inset:0 auto 0 0; width:50%; height:100%;
  overflow:hidden; z-index:2;
}
.ba-clip .ba-before{
  position:absolute; top:0; left:0; height:100%;
  width: var(--ba-frame-w, 100%); max-width:none; object-fit:cover;
}
.ba-tag{
  position:absolute; top:10px; z-index:3;
  font-family: var(--font-mono); font-size:0.7rem; letter-spacing:0.08em;
  text-transform:uppercase; padding: 0.3rem 0.6rem;
  background: rgba(17,17,17,0.75); color: var(--white); border-radius: 3px;
}
.ba-tag-before{ left:10px; }
.ba-tag-after{ right:10px; }
.ba-handle{
  position:absolute; top:0; bottom:0; left:50%; width:3px;
  background: var(--orange); z-index:4; cursor: ew-resize;
  transform: translateX(-50%) rotate(0deg);
  box-shadow: 0 0 12px rgba(249,115,22,0.7);
}
/* Invisible wider hit area so the handle is easy to grab on touch,
   without changing the visible 3px line. */
.ba-handle::before{
  content:'';
  position:absolute; top:0; bottom:0; left:50%;
  width:44px; transform: translateX(-50%);
}
.ba-handle::after{
  content:'';
  position:absolute; top:50%; left:50%; width:38px; height:38px;
  background: var(--orange);
  border-radius:50%;
  transform: translate(-50%,-50%) rotate(var(--edge-angle));
  -webkit-clip-path: polygon(20% 45%, 80% 45%, 80% 55%, 20% 55%);
  clip-path: polygon(20% 45%, 80% 45%, 80% 55%, 20% 55%);
}
.ba-caption{
  margin-top: var(--space-2); font-size:0.92rem; color: var(--steel-dark);
  font-family: var(--font-mono);
}

/* =========================================================
   PRICING
   ========================================================= */
.pricing-grid{ grid-template-columns: repeat(4,1fr); }
@media (max-width: 1080px){ .pricing-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .pricing-grid{ grid-template-columns: 1fr; } }

.price-card{
  background: var(--charcoal);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-4);
  display:flex; flex-direction:column;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.price-card:hover{ transform: translateY(-6px); }
.price-card-featured{
  border-color: var(--orange);
  background: linear-gradient(180deg, var(--charcoal-2), var(--charcoal));
  position:relative;
}
.price-card-featured::before{
  content:'MOST REQUESTED';
  position:absolute; top:-1px; right: var(--space-3);
  background: var(--orange); color: var(--black);
  font-family: var(--font-mono); font-size:0.62rem; letter-spacing:0.08em;
  padding: 0.25rem 0.6rem;
  -webkit-clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}
.price-card-icon{
  width:40px; height:40px; margin-bottom: var(--space-2); color: var(--orange);
}
.price-card-icon svg{ width:100%; height:100%; }
.price-card-tag{
  font-family: var(--font-mono); font-size:0.72rem; letter-spacing:0.1em;
  text-transform:uppercase; color: var(--orange); margin-bottom: var(--space-2);
}
.price-card h3{
  font-family: var(--font-display); font-size:1.6rem; letter-spacing:0.02em; color: var(--white);
  margin-bottom: var(--space-2);
}
.price-card-amount{
  font-family: var(--font-mono); font-size:1.9rem; color: var(--white);
  margin-bottom: var(--space-3);
}
.price-card-amount span{ font-size:0.9rem; color: var(--steel); }
.price-card-list{ margin-bottom: var(--space-4); flex-grow:1; }
.price-card-list li{
  color: var(--steel); font-size:0.9rem; padding: 0.4rem 0;
  border-top: 1px solid var(--line);
}
.price-card-list li:first-child{ border-top:none; }
.price-disclaimer{
  margin-top: var(--space-4); color: var(--steel); font-size:0.82rem; text-align:center;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq-item{ border-bottom: 1px solid var(--line-dark); }
.faq-question{
  width:100%; background:none; border:none; text-align:left;
  padding: var(--space-3) 0; font-size:1.05rem; font-weight:600;
  display:flex; justify-content:space-between; align-items:center;
  color: var(--black);
}
.faq-icon{ position:relative; width:16px; height:16px; flex-shrink:0; }
.faq-icon::before, .faq-icon::after{
  content:''; position:absolute; background: var(--orange);
  transition: transform .25s var(--ease);
}
.faq-icon::before{ top:7px; left:0; width:16px; height:2px; }
.faq-icon::after{ top:0; left:7px; width:2px; height:16px; }
.faq-question[aria-expanded="true"] .faq-icon::after{ transform: rotate(90deg); opacity:0; }
.faq-answer{
  max-height:0; overflow:hidden; transition: max-height .35s var(--ease);
}
.faq-answer p{ padding-bottom: var(--space-3); color: var(--steel-dark); max-width: 65ch; }

/* =========================================================
   QUOTE FORM
   ========================================================= */
.quote-form{
  background: var(--charcoal);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-5);
  display:flex; flex-direction:column; gap: var(--space-3);
}
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap: var(--space-3); }
@media (max-width:640px){ .form-row{ grid-template-columns:1fr; } }
.form-field{ display:flex; flex-direction:column; gap:0.5rem; }
.form-field label{ font-size:0.85rem; color: var(--steel); font-weight:600; }
.form-field input, .form-field select, .form-field textarea{
  background: var(--black); border:1px solid var(--line); border-radius: var(--radius);
  color: var(--white); padding: 0.85rem 1rem;
  transition: border-color .2s var(--ease);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus{
  border-color: var(--orange); outline:none;
}
.form-field textarea{ resize:vertical; }
.form-status{ color: var(--orange); font-size:0.9rem; text-align:center; min-height:1.2em; }

.trust-row{
  margin-top: var(--space-5);
  display:flex; justify-content:center; gap: var(--space-4);
  flex-wrap:wrap;
}
.trust-item{
  display:flex; align-items:center; gap:0.5rem;
  color: var(--steel); font-size:0.88rem;
}
.trust-icon{ color: var(--orange); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{ background: var(--black); color: var(--white); padding-top: var(--space-6); }
.footer-grid{
  display:grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: var(--space-4);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--line);
}
@media (max-width:900px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width:560px){ .footer-grid{ grid-template-columns: 1fr; } }
.footer-tagline{ color: var(--steel); font-size:0.9rem; margin: var(--space-2) 0; }
.footer-social{ display:flex; gap: var(--space-3); }
.footer-social-link{ color: var(--orange); font-size:0.85rem; font-weight:600; }
.footer-col h4{
  font-family: var(--font-mono); font-size:0.75rem; letter-spacing:0.1em;
  text-transform:uppercase; color: var(--steel); margin-bottom: var(--space-2);
}
.footer-col li{ padding: 0.35rem 0; }
.footer-col a{ color: var(--white); font-size:0.9rem; }
.footer-col a:hover{ color: var(--orange); }
.footer-bottom{
  padding: var(--space-3) 0; text-align:center; color: var(--steel); font-size:0.82rem;
}

/* =========================================================
   SCROLL REVEAL ANIMATION
   ========================================================= */
.reveal{
  opacity:0; transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible{ opacity:1; transform: translateY(0); }

/* Utility: hide a section while keeping its markup in place for easy restore. */
.is-hidden{ display:none; }

/* =========================================================
   CLOSING CTA
   Bold, high-contrast finale before the footer -- deliberately
   breaks the dark/light section pattern for emphasis.
   ========================================================= */
.closing-cta{
  background: var(--orange);
  padding: var(--space-7) 0;
  text-align:center;
}
.closing-cta-title{
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--black);
  line-height:1.05;
  margin-bottom: var(--space-2);
}
.closing-cta-sub{
  color: var(--black);
  opacity:0.75;
  font-size:1.15rem;
  max-width:44ch;
  margin: 0 auto var(--space-4);
}
.btn-closing-cta{
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  white-space: normal;
}
.btn-closing-cta:hover{ background: var(--charcoal); transform: translateY(-2px); }
