
/* =========================================================
   Vodička Lukáš — Kamenické práce v3
   Vizuální směr převzatý z dodaného HTML/CSS: tmavý header,
   serifové titulky, krémové plochy, zlatý akcent, galerijní grid.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --bg-dark: #1a1611;
  --bg-darker: #14110d;
  --bg-darkest: #0f0c08;
  --bg-cream: #ece4d3;
  --bg-cream-2: #f3ede0;
  --bg-cream-3: #e6dcc6;
  --accent: #c4a16e;
  --accent-2: #d4ba8c;
  --accent-soft: #b89868;
  --text-cream: #ece4d3;
  --text-cream-2: #d8ccb3;
  --text-cream-muted: #a89a7e;
  --text-dark: #2a221a;
  --text-dark-2: #4a3f30;
  --text-dark-muted: #7a6c5a;
  --border-cream: rgba(236, 228, 211, 0.15);
  --border-dark: rgba(42, 34, 26, 0.12);
  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Outfit', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --container: 1280px;
  --pad-x: 48px;
  --shadow-soft: 0 24px 70px rgba(20, 17, 13, 0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body {
  font-family: var(--sans);
  background: var(--bg-cream-2);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body { min-width: 320px; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font-family: inherit; }
button { cursor: pointer; border: 0; background: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad-x); width: 100%; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--accent); color: var(--bg-dark); padding: 10px; z-index: 999; }
.skip-link:focus { left: 10px; top: 10px; }

/* HEADER */
.site-header { background: var(--bg-darker); border-bottom: 1px solid var(--border-cream); position: sticky; top: 0; z-index: 80; }
.site-header__inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 34px; min-height: 72px; color: var(--text-cream); }
.logo { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.logo__mark { width: 34px; height: 40px; flex: none; }
.logo__text { display: flex; flex-direction: column; line-height: 1; }
.logo__name { font-family: var(--serif); font-size: 17px; letter-spacing: 0.18em; font-weight: 600; color: var(--text-cream); white-space: nowrap; }
.logo__sub { font-size: 9.5px; letter-spacing: 0.32em; margin-top: 6px; color: var(--text-cream-muted); font-weight: 500; white-space: nowrap; }
.site-nav { display: flex; gap: 28px; justify-content: center; align-items: center; font-size: 11px; letter-spacing: 0.2em; font-weight: 600; text-transform: uppercase; }
.site-nav a { color: var(--text-cream-2); padding: 12px 0; position: relative; transition: color .2s; }
.site-nav a:hover, .site-nav a.is-active { color: var(--accent-2); }
.site-nav a.is-active::after { content: ''; position: absolute; left: 50%; bottom: 4px; transform: translateX(-50%); width: 18px; height: 1.5px; background: var(--accent-2); }
.header-contact { display: flex; align-items: center; gap: 14px; }
.header-contact__phone { color: var(--text-cream); font-size: 14px; font-weight: 600; letter-spacing: .04em; display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.header-contact__wa { display: inline-flex; flex-direction: column; align-items: center; gap: 3px; font-size: 9.5px; letter-spacing: .18em; color: var(--text-cream-muted); }
.header-contact__wa-icon { width: 30px; height: 30px; border-radius: 50%; background: #25D366; display: grid; place-items: center; box-shadow: 0 0 0 1px rgba(255,255,255,.15); }
.menu-toggle { display: none; color: var(--text-cream); border: 1px solid var(--border-cream); padding: 10px 12px; text-transform: uppercase; letter-spacing: .18em; font-size: 11px; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 15px 28px; font-size: 12px; letter-spacing: .2em; font-weight: 700; text-transform: uppercase; border: 1px solid transparent; transition: all .2s ease; white-space: nowrap; min-height: 48px; }
.btn--primary { background: var(--accent); color: var(--bg-darker); }
.btn--primary:hover { background: var(--accent-2); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--text-cream); border-color: rgba(236,228,211,.65); }
.btn--ghost:hover { background: rgba(236,228,211,.08); border-color: var(--text-cream); }
.btn--outline-dark { background: transparent; color: var(--text-dark); border-color: var(--text-dark); }
.btn--outline-dark:hover { background: var(--text-dark); color: var(--bg-cream-2); }
.btn--whatsapp { background: #25D366; color: white; }
.btn--whatsapp:hover { background: #1ebc59; transform: translateY(-1px); }
.btn--block { width: 100%; }
.arrow-btn { width: 42px; height: 42px; border-radius: 50%; background: var(--accent); color: var(--bg-darker); display: grid; place-items: center; flex: none; transition: .2s; }
.arrow-btn:hover { background: var(--accent-2); transform: translateX(2px); }

/* SHARED SECTION HEADINGS */
.section-title { font-family: var(--serif); font-weight: 500; font-size: clamp(36px, 5vw, 54px); line-height: 1.05; letter-spacing: -.01em; color: var(--text-dark); text-align: center; }
.section-sub { text-align: center; font-size: 15px; color: var(--text-dark-muted); margin-top: 14px; max-width: 680px; margin-left: auto; margin-right: auto; line-height: 1.6; }
.eyebrow { font-size: 11px; letter-spacing: .32em; text-transform: uppercase; color: var(--accent); font-weight: 700; margin-bottom: 18px; }

/* HOMEPAGE HERO */
.hero { position: relative; min-height: 645px; color: var(--text-cream); overflow: hidden; isolation: isolate; }
.hero__bg { position: absolute; inset: 0; z-index: -2; background-image: var(--hero-image); background-size: cover; background-position: center 45%; filter: saturate(.92) contrast(1.04); }
.hero__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(105deg, rgba(20,17,13,.95) 0%, rgba(20,17,13,.78) 37%, rgba(20,17,13,.25) 68%, rgba(20,17,13,.05) 100%), linear-gradient(0deg, rgba(20,17,13,.55), rgba(20,17,13,.15)); }
.hero__inner { padding: 108px 0 132px; max-width: 660px; }
.hero h1 { font-family: var(--serif); font-weight: 600; font-size: clamp(48px, 7vw, 72px); line-height: .98; letter-spacing: -.018em; margin-bottom: 24px; }
.hero__lede { font-family: var(--serif); font-size: 29px; font-style: italic; color: var(--text-cream-2); margin-bottom: 24px; font-weight: 400; }
.hero__desc { font-size: 15px; color: var(--text-cream-2); max-width: 530px; line-height: 1.7; margin-bottom: 34px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* STATS */
.stats { position: relative; z-index: 2; background: var(--bg-cream-2); padding: 0 0 36px; border-bottom: 1px solid var(--border-dark); }
.stats__grid { transform: translateY(-34px); margin-bottom: -34px; background: var(--bg-cream); display: grid; grid-template-columns: repeat(5, 1fr); box-shadow: var(--shadow-soft); }
.stat { min-height: 118px; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; gap: 10px; color: var(--text-dark); border-right: 1px solid var(--border-dark); }
.stat:last-child { border-right: 0; }
.stat__icon { width: 34px; height: 34px; color: var(--text-dark-2); opacity: .8; }
.stat__title { font-size: 12px; letter-spacing: .22em; font-weight: 700; text-transform: uppercase; line-height: 1.4; }
.stat__sub { font-size: 10px; letter-spacing: .22em; color: var(--text-dark-muted); text-transform: uppercase; font-weight: 600; }

/* SERVICES HOMEPAGE */
.services { background: var(--bg-cream-2); padding: 78px 0 90px; }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 50px; }
.service-card { position: relative; aspect-ratio: 1 / 1.05; overflow: hidden; background: var(--bg-darker); color: var(--text-cream); display: flex; flex-direction: column; justify-content: flex-end; padding: 32px 30px; isolation: isolate; min-height: 330px; }
.service-card__img { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: -2; transition: transform .9s ease; filter: saturate(.9) contrast(1.04); }
.service-card:hover .service-card__img { transform: scale(1.055); }
.service-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,12,8,.1) 0%, rgba(15,12,8,.48) 48%, rgba(15,12,8,.95) 100%); z-index: -1; }
.service-card h3 { font-family: var(--serif); font-weight: 600; font-size: clamp(25px, 3vw, 32px); letter-spacing: .14em; text-transform: uppercase; line-height: 1.12; margin-bottom: 18px; }
.service-card p { color: var(--text-cream-2); font-size: 13px; line-height: 1.55; margin-bottom: 22px; max-width: 310px; }
.service-card .btn { align-self: flex-start; padding: 11px 22px; font-size: 10.5px; background: transparent; border: 1px solid var(--accent-2); color: var(--accent-2); min-height: 38px; }
.service-card .btn:hover { background: var(--accent); color: var(--bg-darker); border-color: var(--accent); }

/* PROCESS */
.process { background: var(--bg-cream); padding: 72px 0 84px; }
.process__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; margin-top: 48px; }
.step { text-align: center; color: var(--text-dark); padding: 0 8px; }
.step__icon { width: 44px; height: 44px; margin: 0 auto 18px; color: var(--text-dark-2); opacity: .8; }
.step__title { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; font-weight: 700; margin-bottom: 10px; }
.step__desc { font-size: 12px; color: var(--text-dark-muted); line-height: 1.55; }

/* GALLERY */
.gallery { background: var(--bg-cream-2); padding: 70px 0 84px; }
.gallery__grid, .work-gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 44px; }
.gallery__item, .work-gallery__item { aspect-ratio: 1 / 1; background-size: cover; background-position: center; cursor: pointer; transition: transform .3s ease, filter .3s ease; border: 1px solid rgba(42,34,26,.06); }
.gallery__item:hover, .work-gallery__item:hover { transform: scale(1.02); filter: brightness(1.04); }
.gallery__more, .work-gallery__more { display: flex; justify-content: center; margin-top: 38px; }

/* CTA */
.cta-strip { background: var(--bg-darker); color: var(--text-cream); padding: 56px 0; }
.cta-strip__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.cta-strip h3 { font-family: var(--serif); font-weight: 500; font-size: 32px; line-height: 1.15; margin-bottom: 8px; }
.cta-strip p { font-size: 14px; color: var(--text-cream-muted); margin-bottom: 22px; line-height: 1.55; }
.cta-strip__row { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-strip__col-form { background: rgba(196,161,110,.12); padding: 28px 30px; border-left: 1px solid rgba(196,161,110,.25); }
.cta-strip__form-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 16px; }
.cta-strip__form-text { font-size: 12.5px; color: var(--text-cream-muted); line-height: 1.55; flex: 1; }

/* PAGE HERO */
.page-hero { position: relative; min-height: 360px; color: var(--text-cream); display: grid; place-items: center; text-align: center; overflow: hidden; isolation: isolate; }
.page-hero__bg { position: absolute; inset: 0; z-index: -2; background-image: var(--page-hero-image); background-size: cover; background-position: center; }
.page-hero__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(15,12,8,.82), rgba(15,12,8,.58)); }
.page-hero h1 { font-family: var(--serif); font-weight: 500; font-size: clamp(42px, 6vw, 64px); line-height: 1.05; letter-spacing: -.01em; margin-bottom: 16px; }
.page-hero p { font-size: 14px; color: var(--text-cream-2); letter-spacing: .02em; }

/* TILES */
.tiles { background: var(--bg-cream-2); padding: 64px 0 70px; }
.tiles__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.tile { background: var(--bg-cream-3); display: flex; flex-direction: column; text-align: center; overflow: hidden; transition: transform .2s, box-shadow .2s; border: 1px solid rgba(42,34,26,.06); }
.tile:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(20,17,13,.12); }
.tile__img { aspect-ratio: 1 / .78; background-size: cover; background-position: center; filter: saturate(.92); }
.tile__body { padding: 22px 18px 24px; display: flex; flex-direction: column; align-items: center; gap: 16px; flex: 1; }
.tile__title { font-family: var(--serif); font-size: 22px; line-height: 1.18; color: var(--text-dark); font-weight: 600; min-height: 52px; }
.tile__text { color: var(--text-dark-muted); font-size: 13px; line-height: 1.55; }
.tile__btn { margin-top: auto; padding: 9px 26px; font-size: 10.5px; letter-spacing: .22em; font-weight: 700; text-transform: uppercase; color: var(--text-dark-2); border: 1px solid var(--text-dark-muted); background: transparent; transition: .2s; }
.tile__btn:hover { background: var(--accent); color: var(--bg-darker); border-color: var(--accent); }
.cta-bar { background: var(--bg-darker); padding: 38px 0; color: var(--text-cream); }
.cta-bar__inner { display: grid; grid-template-columns: 1fr auto auto; gap: 24px; align-items: center; }
.cta-bar h3 { font-family: var(--serif); font-size: 28px; font-weight: 500; margin-bottom: 4px; }
.cta-bar p { font-size: 13px; color: var(--text-cream-muted); }

/* DETAIL PAGE */
.breadcrumb { background: var(--bg-cream-2); padding: 18px 0 10px; font-size: 12px; letter-spacing: .04em; color: var(--text-dark-muted); }
.breadcrumb a:hover { color: var(--text-dark); }
.breadcrumb .sep { margin: 0 8px; opacity: .55; }
.breadcrumb .here { color: var(--text-dark); }
.detail-hero { background: var(--bg-cream-2); padding: 36px 0 64px; }
.detail-hero__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: stretch; }
.detail-hero__col-text { display: flex; flex-direction: column; justify-content: center; }
.detail-hero h1 { font-family: var(--serif); font-weight: 500; font-size: clamp(44px, 6vw, 64px); line-height: 1.04; letter-spacing: -.01em; margin-bottom: 22px; color: var(--text-dark); }
.detail-hero__lede { font-size: 15px; color: var(--text-dark-2); line-height: 1.75; margin-bottom: 26px; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.check-list li { display: flex; align-items: center; gap: 14px; font-size: 14px; color: var(--text-dark); }
.check-list svg { flex: none; color: var(--accent-soft); }
.detail-hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.detail-hero__img { aspect-ratio: 1 / 1.05; background-size: cover; background-position: center; background-image: var(--detail-image); min-height: 430px; }
.work-gallery { background: var(--bg-cream-2); padding: 40px 0 70px; border-top: 1px solid var(--border-dark); }
.price-strip { background: var(--bg-cream-3); padding: 30px 0; border-top: 1px solid var(--border-dark); }
.price-strip__inner { display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; }
.price-strip__text { font-size: 13px; color: var(--text-dark-2); line-height: 1.65; }
.price-strip__cta { display: flex; align-items: center; gap: 18px; border-left: 1px solid var(--border-dark); padding-left: 32px; }
.price-strip__cta a { font-size: 12px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--text-dark); display: flex; align-items: center; gap: 18px; }
.price-strip__cta a .arrow-btn { background: var(--text-dark); color: var(--bg-cream-2); }
.price-strip__cta-sub { display: block; font-size: 11px; color: var(--text-dark-muted); font-weight: 400; text-transform: none; letter-spacing: .04em; margin-top: 4px; }

/* CONTACT */
.contact-page { background: var(--bg-cream-2); padding: 70px 0; }
.contact-page__head { text-align: center; margin-bottom: 56px; }
.contact-page__grid { display: grid; grid-template-columns: .9fr 1.3fr; gap: 40px; align-items: start; }
.contact-card, .form-card, .quick-card { background: var(--bg-cream-3); border: 1px solid rgba(42,34,26,.07); }
.contact-card, .form-card { padding: 40px 36px; }
.contact-card h2, .form-card h2 { font-family: var(--serif); font-size: 32px; font-weight: 500; color: var(--text-dark); margin-bottom: 26px; }
.contact-card__list { display: flex; flex-direction: column; gap: 20px; list-style: none; }
.contact-card__list li { display: flex; align-items: center; gap: 18px; font-size: 14px; color: var(--text-dark); }
.contact-card__list svg { flex: none; color: var(--text-dark-2); }
.quick-card { padding: 30px 36px; margin-top: 22px; }
.quick-card h3 { font-family: var(--serif); font-size: 24px; font-weight: 500; margin-bottom: 4px; }
.quick-card p { font-size: 13px; color: var(--text-dark-muted); margin-bottom: 18px; }
.quick-card__row { display: flex; gap: 12px; flex-wrap: wrap; }
.field { display: block; margin-bottom: 14px; }
.field input, .field textarea, .field select { width: 100%; padding: 14px 16px; background: var(--bg-cream-2); border: 1px solid rgba(42,34,26,.18); font-size: 14px; color: var(--text-dark); transition: border-color .2s; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); }
.field input::placeholder, .field textarea::placeholder { color: var(--text-dark-muted); }
.field textarea { resize: vertical; min-height: 120px; }
.field select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5L6 6.5L11 1.5' stroke='%237a6c5a' stroke-width='1.5'/></svg>"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.field-label { font-size: 12px; color: var(--text-dark-2); margin-bottom: 6px; display: block; letter-spacing: .02em; }
.file-drop { border: 1.5px dashed rgba(42,34,26,.25); background: var(--bg-cream-2); padding: 22px 18px; text-align: center; color: var(--text-dark-muted); font-size: 13px; margin-top: 6px; position: relative; }
.file-drop input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.file-drop__title { font-size: 13px; color: var(--text-dark-2); margin-bottom: 4px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.file-drop__sub { font-size: 11px; color: var(--text-dark-muted); }
.checkbox-row { display: flex; align-items: center; gap: 10px; margin: 18px 0; font-size: 13px; color: var(--text-dark-2); }
.checkbox-row input { width: 16px; height: 16px; }
.form-note { font-size: 12px; color: var(--text-dark-muted); line-height: 1.5; margin: 12px 0 18px; }

/* FOOTERS */
.footer-light { background: var(--bg-darker); color: var(--text-cream-muted); padding: 38px 0 26px; font-size: 12px; letter-spacing: .04em; }
.footer-light__inner { display: grid; grid-template-columns: 1.2fr 1.2fr 1fr; gap: 60px; align-items: start; }
.footer-light__contacts, .footer-rich__contacts { display: flex; flex-direction: column; list-style: none; }
.footer-light__contacts { gap: 10px; }
.footer-light__contacts li { display: flex; align-items: center; gap: 10px; color: var(--text-cream-2); }
.footer-light__nav, .footer-rich__nav { display: flex; flex-direction: column; gap: 9px; font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--text-cream-2); }
.footer-light__nav a:hover, .footer-rich__nav a:hover { color: var(--accent-2); }
.footer-light__copy { border-top: 1px solid var(--border-cream); margin-top: 32px; padding-top: 18px; text-align: center; font-size: 11px; color: var(--text-cream-muted); }
.footer-rich { position: relative; background: var(--bg-darkest); color: var(--text-cream-2); overflow: hidden; padding: 56px 0 28px; }
.footer-rich::before { content: ''; position: absolute; inset: 0 0 0 50%; background-image: url('/images/00-global/footer/footer-kovarina.jpg'); background-size: cover; background-position: center; opacity: .32; filter: brightness(.55) sepia(.3); mask-image: linear-gradient(to right, transparent, black 30%); -webkit-mask-image: linear-gradient(to right, transparent, black 30%); }
.footer-rich__inner { position: relative; display: grid; grid-template-columns: 1.1fr 1.1fr 1fr; gap: 60px; align-items: start; }
.footer-rich__heading { font-size: 11px; letter-spacing: .3em; color: var(--text-cream-muted); text-transform: uppercase; margin-bottom: 18px; font-weight: 500; }
.footer-rich__contacts { gap: 14px; }
.footer-rich__contacts li { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--text-cream-2); }
.footer-rich__contacts svg { flex: none; color: var(--accent-2); }

/* LIGHTBOX */
.lightbox { position: fixed; inset: 0; background: rgba(15,12,8,.92); z-index: 200; display: none; align-items: center; justify-content: center; padding: 28px; }
.lightbox.is-open { display: flex; }
.lightbox__img { max-width: min(1100px, 92vw); max-height: 82vh; object-fit: contain; box-shadow: 0 30px 80px rgba(0,0,0,.45); }
.lightbox__close, .lightbox__prev, .lightbox__next { position: absolute; color: var(--text-cream); background: rgba(236,228,211,.08); border: 1px solid rgba(236,228,211,.2); width: 44px; height: 44px; display: grid; place-items: center; font-size: 24px; }
.lightbox__close { right: 24px; top: 24px; }
.lightbox__prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__caption { position: absolute; left: 50%; bottom: 24px; transform: translateX(-50%); color: var(--text-cream-2); font-size: 13px; text-align: center; max-width: 80vw; }

/* RESPONSIVE */
@media (max-width: 1180px) {
  .site-nav { gap: 18px; letter-spacing: .14em; }
  .header-contact__wa { display: none; }
  .tiles__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 980px) {
  :root { --pad-x: 24px; }
  .site-header__inner { grid-template-columns: auto auto; justify-content: space-between; }
  .menu-toggle { display: inline-flex; }
  .site-nav { position: fixed; left: 0; right: 0; top: 72px; display: grid; gap: 0; background: var(--bg-darker); border-bottom: 1px solid var(--border-cream); padding: 8px 24px 20px; transform: translateY(-130%); opacity: 0; pointer-events: none; transition: .22s ease; }
  body.nav-open .site-nav { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .site-nav a { padding: 14px 0; border-bottom: 1px solid var(--border-cream); }
  .site-nav a.is-active::after { display: none; }
  .header-contact { display: none; }
  .hero { min-height: 570px; }
  .hero__inner { padding: 84px 0 112px; }
  .hero h1 { font-size: 46px; }
  .hero__lede { font-size: 21px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); transform: translateY(-26px); margin-bottom: -26px; }
  .stat { border-bottom: 1px solid var(--border-dark); }
  .services__grid, .process__grid, .cta-strip__inner, .footer-light__inner, .footer-rich__inner, .detail-hero__grid, .contact-page__grid { grid-template-columns: 1fr; }
  .process__grid { gap: 34px; }
  .tiles__grid, .gallery__grid, .work-gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .cta-bar__inner, .price-strip__inner { grid-template-columns: 1fr; }
  .price-strip__cta { border-left: 0; padding-left: 0; border-top: 1px solid var(--border-dark); padding-top: 18px; }
  .detail-hero__img { min-height: 320px; }
  .footer-rich::before { inset: 45% 0 0 0; mask-image: linear-gradient(to bottom, transparent, black 25%); -webkit-mask-image: linear-gradient(to bottom, transparent, black 25%); }
}
@media (max-width: 620px) {
  :root { --pad-x: 18px; }
  .logo__name { font-size: 14px; letter-spacing: .14em; }
  .logo__sub { font-size: 8px; letter-spacing: .24em; }
  .logo__mark { width: 30px; height: 36px; }
  .hero { min-height: 560px; }
  .hero h1 { font-size: 40px; }
  .hero__cta, .detail-hero__cta, .cta-strip__row, .quick-card__row { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; padding-left: 18px; padding-right: 18px; }
  .stats__grid, .tiles__grid, .gallery__grid, .work-gallery__grid { grid-template-columns: 1fr; }
  .stat { min-height: 96px; }
  .service-card { min-height: 300px; }
  .contact-card, .form-card, .quick-card { padding: 28px 22px; }
  .lightbox__prev, .lightbox__next { display: none; }
}
