*,
*::before,
*::after { box-sizing: border-box; }
html {
-webkit-text-size-adjust: 100%;
scroll-behavior: smooth;
scroll-padding-top: 90px;
}
body {
margin: 0;
background: var(--surface);
color: var(--ink);
font-family: var(--font-body);
font-size: 16px;
line-height: 1.62;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
overflow-x: clip;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
button { font: inherit; color: inherit; }
.display {
font-family: var(--font-display);
font-weight: 700;
text-transform: var(--display-transform);
letter-spacing: var(--display-tracking);
line-height: 1.02;
color: var(--ink);
}
.display span { display: block; }
.section-title {
font-size: clamp(30px, 4vw, 46px);
text-align: center;
margin-bottom: 34px;
}
.eyebrow {
font-family: var(--font-body);
font-size: 12px;
font-weight: 700;
letter-spacing: 0.19em;
text-transform: uppercase;
color: var(--brand);
text-align: center;
margin-bottom: 30px;
}
.eyebrow:empty { display: none; }
.container {
width: 100%;
max-width: var(--max-w);
margin-inline: auto;
padding-inline: 24px;
}
.container--wide { max-width: 1420px; padding-inline: 16px; }
.section { padding-block: var(--section-space); }
.section--warm { background: var(--surface-warm); }
.skip {
position: absolute;
left: -9999px;
top: 0;
z-index: 200;
background: var(--brand);
color: var(--on-brand);
padding: 12px 20px;
font-weight: 600;
}
.skip:focus { left: 12px; top: 12px; }
:focus-visible {
outline: 3px solid var(--brand);
outline-offset: 3px;
border-radius: 2px;
}
.hp {
position: absolute !important;
width: 1px; height: 1px;
overflow: hidden; clip: rect(0 0 0 0);
white-space: nowrap;
}
[data-reveal] {
opacity: 0;
transform: translateY(22px);
transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
will-change: opacity, transform;
}
[data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
html { scroll-behavior: auto; }
[data-reveal] { opacity: 1 !important; transform: none !important; transition: none; }
*, *::before, *::after {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
}
}
[data-no-motion] [data-reveal] { opacity: 1; transform: none; }
.media { position: relative; overflow: hidden; background: var(--surface-warm); }
.media--fallback {
background:
repeating-linear-gradient(
135deg,
rgb(var(--brand-rgb) / 0.09) 0 14px,
rgb(var(--brand-rgb) / 0.045) 14px 28px
),
var(--surface-warm);
}
.media--fallback::after {
content: "";
position: absolute;
inset: 50% auto auto 50%;
width: 44px; height: 44px;
transform: translate(-50%, -50%);
opacity: 0.5;
background: currentColor;
color: var(--brand);
-webkit-mask: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='5' y='9' width='38' height='30' rx='2'/%3E%3Ccircle cx='16' cy='19' r='4'/%3E%3Cpath d='M5 33l11-9 9 7 7-6 11 8'/%3E%3C/svg%3E");
mask: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='5' y='9' width='38' height='30' rx='2'/%3E%3Ccircle cx='16' cy='19' r='4'/%3E%3Cpath d='M5 33l11-9 9 7 7-6 11 8'/%3E%3C/svg%3E");
}
.band--wood::before {
content: "";
position: absolute;
inset: 0;
pointer-events: none;
opacity: 0.5;
background-image:
repeating-linear-gradient(
90deg,
rgb(0 0 0 / 0.05) 0 2px,
transparent 2px 7px,
rgb(255 255 255 / 0.035) 7px 9px,
transparent 9px 19px
),
repeating-linear-gradient(
88deg,
rgb(0 0 0 / 0.035) 0 1px,
transparent 1px 26px
);
}
.btn {
--btn-bg: var(--brand);
--btn-fg: var(--on-brand);
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
padding: 13px 26px;
background: var(--btn-bg);
color: var(--btn-fg);
border: none;
border-radius: var(--radius);
font-family: var(--font-body);
font-size: 12.5px;
font-weight: 700;
letter-spacing: 0.13em;
text-transform: uppercase;
cursor: pointer;
transition: background-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
white-space: nowrap;
}
.btn:hover { background: var(--brand-dark); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--lg { padding: 16px 32px; font-size: 13px; }
.btn--block, .btn--block.btn { width: 100%; }
.btn--ghost {
--btn-bg: transparent;
--btn-fg: #fff;
border: 2px solid rgb(255 255 255 / 0.55);
}
.btn--ghost:hover { --btn-bg: rgb(255 255 255 / 0.12); border-color: #fff; }
.btn--dark { --btn-bg: var(--dark); --btn-fg: var(--on-dark); }
.btn--dark:hover { background: #000; }
.logo { display: inline-flex; align-items: center; gap: 11px; }
.logo__mark { color: var(--brand); display: flex; }
.logo__text { display: flex; flex-direction: column; line-height: 1; }
.logo__line1 {
font-family: var(--font-display);
font-size: 21px;
font-weight: 700;
letter-spacing: 0.05em;
text-transform: uppercase;
}
.logo__line2 {
font-family: var(--font-body);
font-size: 9.5px;
font-weight: 500;
letter-spacing: 0.34em;
text-transform: uppercase;
color: var(--ink-soft);
margin-top: 3px;
}
.site-header {
background: var(--surface);
border-bottom: 1px solid var(--line);
z-index: 100;
}
.site-header--sticky { position: sticky; top: 0; }
.site-header.is-stuck { box-shadow: 0 4px 22px rgb(0 0 0 / 0.09); }
.site-header__inner {
display: flex;
align-items: center;
justify-content: space-between;
gap: 24px;
height: 78px;
}
.site-nav ul { display: flex; gap: 34px; }
.site-nav a {
position: relative;
font-size: 12.5px;
font-weight: 600;
letter-spacing: 0.15em;
text-transform: uppercase;
color: var(--ink);
padding-block: 6px;
transition: color 0.2s ease;
}
.site-nav a::after {
content: "";
position: absolute;
left: 0; bottom: 0;
width: 100%; height: 2px;
background: var(--brand);
transform: scaleX(0);
transform-origin: left;
transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.site-nav a:hover { color: var(--brand); }
.site-nav a:hover::after, .site-nav a.is-active::after { transform: scaleX(1); }
.site-header__actions { display: flex; align-items: center; gap: 18px; }
.header-phone {
display: none;
align-items: center;
gap: 7px;
font-size: 13.5px;
font-weight: 600;
color: var(--ink);
}
.header-phone:hover { color: var(--brand); }
.header-phone svg { color: var(--brand); }
.nav-toggle {
display: none;
flex-direction: column;
justify-content: center;
gap: 5px;
width: 44px; height: 44px;
padding: 0;
background: none;
border: none;
cursor: pointer;
}
.nav-toggle__bar {
display: block;
width: 24px; height: 2px;
margin-inline: auto;
background: var(--ink);
transition: transform 0.28s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
display: none;
border-top: 1px solid var(--line);
background: var(--surface);
padding: 12px 24px 26px;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu ul { display: flex; flex-direction: column; }
.mobile-menu a {
display: block;
padding: 15px 2px;
font-size: 14px;
font-weight: 600;
letter-spacing: 0.13em;
text-transform: uppercase;
border-bottom: 1px solid var(--line);
}
.mobile-menu__foot { margin-top: 20px; display: grid; gap: 14px; }
.mobile-menu__phone {
display: flex; align-items: center; justify-content: center; gap: 9px;
font-weight: 600;
}
.mobile-menu__phone svg { color: var(--brand); }
.svc-card {
background: var(--card);
border: 1px solid var(--line);
border-radius: var(--radius);
padding: 38px 26px 34px;
text-align: center;
transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
box-shadow 0.3s ease, border-color 0.3s ease;
}
.svc-card:hover {
transform: translateY(-4px);
border-color: rgb(var(--brand-rgb) / 0.45);
box-shadow: 0 14px 34px rgb(0 0 0 / 0.07);
}
.svc-card__icon { display: block; color: var(--ink); margin-bottom: 20px; }
.svc-card__icon svg { margin-inline: auto; }
.svc-card:hover .svc-card__icon { color: var(--brand); }
.svc-card__title {
font-family: var(--font-display);
font-size: 19px;
font-weight: 600;
letter-spacing: 0.07em;
text-transform: uppercase;
margin-bottom: 9px;
}
.svc-card__text {
font-size: 14.5px;
color: var(--ink-soft);
max-width: 27ch;
margin-inline: auto;
text-wrap: balance;
}
.ticklist { display: grid; gap: 14px; margin-top: 26px; }
.ticklist__item { display: flex; align-items: center; gap: 13px; font-size: 15px; }
.tick {
flex: 0 0 auto;
display: grid;
place-items: center;
width: 23px; height: 23px;
border-radius: 50%;
background: var(--brand);
color: var(--on-brand);
}
.stars { display: flex; gap: 3px; justify-content: center; color: var(--brand); }
.stars svg { fill: currentColor; stroke: none; }
.qform {
background: var(--surface);
border: 1px solid var(--line);
border-radius: var(--radius);
padding: 32px;
box-shadow: 0 12px 40px rgb(0 0 0 / 0.05);
}
.qform__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 22px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field--wide, .field--textarea, .field--select { grid-column: 1 / -1; }
.field label {
font-size: 12px;
font-weight: 600;
letter-spacing: 0.09em;
text-transform: uppercase;
color: var(--ink-soft);
}
.req { color: var(--brand); }
.field input,
.field select,
.field textarea {
width: 100%;
padding: 12px 13px;
font-family: var(--font-body);
font-size: 15px;
color: var(--ink);
background: var(--surface-warm);
border: 1px solid var(--line);
border-radius: var(--radius);
transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.field textarea { resize: vertical; min-height: 104px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
outline: none;
background: var(--surface);
border-color: var(--brand);
box-shadow: 0 0 0 3px rgb(var(--brand-rgb) / 0.15);
}
.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea { border-color: #C0392B; }
.field__error { font-size: 12.5px; color: #C0392B; text-transform: none; letter-spacing: 0; }
.qform__note {
margin-top: 12px;
font-size: 12.5px;
color: var(--ink-soft);
text-align: center;
}
.qform__status { margin-top: 14px; font-size: 14.5px; text-align: center; }
.qform__status:empty { margin: 0; }
.qform__status.is-ok { color: #1E7A4A; font-weight: 600; }
.qform__status.is-err { color: #C0392B; font-weight: 600; }
.site-footer { background: var(--dark); color: var(--on-dark); }
.site-footer__grid {
display: grid;
grid-template-columns: 1.4fr 1fr 1fr 1fr;
gap: 44px;
padding-block: 62px 46px;
}
.site-footer .logo__line2 { color: rgb(255 255 255 / 0.55); }
.ftag { margin-top: 16px; font-size: 14px; color: rgb(255 255 255 / 0.62); max-width: 24ch; }
.fcol__head {
font-family: var(--font-body);
font-size: 11.5px;
font-weight: 700;
letter-spacing: 0.17em;
text-transform: uppercase;
color: #fff;
margin-bottom: 18px;
}
.flist { display: grid; gap: 10px; font-size: 14px; color: rgb(255 255 255 / 0.62); }
.flist--contact a, .flist--contact span > span:first-child { color: rgb(255 255 255 / 0.75); }
.flist--contact li > * { display: flex; align-items: center; gap: 10px; }
.flist--contact svg { color: var(--brand); flex: 0 0 auto; }
.flist--contact a:hover { color: #fff; }
.licence { font-size: 14px; color: rgb(255 255 255 / 0.62); line-height: 1.75; }
.licence strong { color: #fff; font-weight: 600; }
.badge {
display: flex;
align-items: center;
gap: 11px;
margin-top: 20px;
}
.badge__mark {
display: grid;
place-items: center;
min-width: 52px;
padding: 9px 10px;
background: #fff;
color: var(--dark);
border-radius: 2px;
font-family: var(--font-display);
font-size: 15px;
font-weight: 700;
letter-spacing: 0.02em;
}
.badge__text {
font-size: 10px;
line-height: 1.35;
letter-spacing: 0.06em;
text-transform: uppercase;
color: rgb(255 255 255 / 0.6);
max-width: 17ch;
}
.socials { display: flex; gap: 10px; margin-top: 22px; }
.social {
display: grid;
place-items: center;
width: 34px; height: 34px;
border-radius: 50%;
background: rgb(255 255 255 / 0.09);
color: #fff;
transition: background-color 0.22s ease, transform 0.22s ease;
}
.social:hover { background: var(--brand); transform: translateY(-2px); }
.site-footer__bar { border-top: 1px solid rgb(255 255 255 / 0.1); }
.site-footer__bar-inner {
display: flex;
align-items: center;
justify-content: center;
gap: 18px;
flex-wrap: wrap;
padding-block: 20px;
font-size: 11.5px;
letter-spacing: 0.09em;
text-transform: uppercase;
color: rgb(255 255 255 / 0.45);
}
.legal a:hover { color: #fff; }
.legal .sep { margin-inline: 9px; }
.callbar {
display: none;
position: fixed;
left: 0; right: 0; bottom: 0;
z-index: 90;
gap: 1px;
background: var(--line);
box-shadow: 0 -4px 20px rgb(0 0 0 / 0.14);
transform: translateY(100%);
transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.callbar.is-shown { transform: none; }
.callbar__btn {
flex: 1;
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
padding: 15px 10px;
font-size: 12.5px;
font-weight: 700;
letter-spacing: 0.11em;
text-transform: uppercase;
}
.callbar__btn--call { background: var(--dark); color: #fff; }
.callbar__btn--quote { background: var(--brand); color: var(--on-brand); }
.lightbox {
position: fixed;
inset: 0;
z-index: 150;
display: flex;
align-items: center;
justify-content: center;
padding: 5vh 6vw;
background: rgb(10 9 8 / 0.94);
opacity: 0;
transition: opacity 0.25s ease;
}
.lightbox[hidden] { display: none; }
.lightbox.is-open { opacity: 1; }
.lightbox__figure { max-width: 100%; max-height: 100%; text-align: center; }
.lightbox__figure img {
max-width: 100%;
max-height: 82vh;
margin-inline: auto;
border-radius: var(--radius);
object-fit: contain;
}
.lightbox__figure figcaption {
margin-top: 16px;
font-size: 12.5px;
font-weight: 600;
letter-spacing: 0.16em;
text-transform: uppercase;
color: rgb(255 255 255 / 0.75);
}
.lightbox__close,
.lightbox__nav {
position: absolute;
background: rgb(255 255 255 / 0.1);
border: none;
color: #fff;
cursor: pointer;
display: grid;
place-items: center;
border-radius: 50%;
transition: background-color 0.2s ease;
}
.lightbox__close:hover, .lightbox__nav:hover { background: var(--brand); }
.lightbox__close { top: 20px; right: 20px; width: 46px; height: 46px; font-size: 30px; line-height: 1; }
.lightbox__nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 32px; line-height: 1; }
.lightbox__nav--prev { left: 18px; }
.lightbox__nav--next { right: 18px; }
.hero {
position: relative;
display: flex;
align-items: center;
min-height: clamp(520px, 74vh, 720px);
overflow: hidden;
background: var(--dark);
}
.hero__media { position: absolute; inset: 0; background: var(--dark); }
.hero__img { width: 100%; height: 100%; }
.hero__media--kenburns .hero__img {
animation: kenburns 26s ease-out both alternate infinite;
}
@keyframes kenburns {
from { transform: scale(1.04); }
to   { transform: scale(1.13); }
}
.hero__scrim {
position: absolute;
inset: 0;
background:
linear-gradient(
100deg,
rgb(12 10 9 / calc(var(--hero-scrim) + 0.22)) 0%,
rgb(12 10 9 / var(--hero-scrim)) 34%,
rgb(12 10 9 / calc(var(--hero-scrim) * 0.42)) 60%,
rgb(12 10 9 / calc(var(--hero-scrim) * 0.18)) 100%
);
}
.hero__inner { position: relative; z-index: 2; }
.hero__content { max-width: 640px; color: #fff; }
.hero__headline {
color: #fff;
font-size: clamp(40px, 6.6vw, 82px);
line-height: 0.98;
text-shadow: 0 2px 26px rgb(0 0 0 / 0.34);
}
.hero__line {
display: block;
opacity: 0;
transform: translateY(26px);
animation: heroIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero__line:nth-child(1) { animation-delay: 0.08s; }
.hero__line:nth-child(2) { animation-delay: 0.18s; }
.hero__line:nth-child(3) { animation-delay: 0.28s; }
.hero__line:nth-child(4) { animation-delay: 0.38s; }
@keyframes heroIn { to { opacity: 1; transform: none; } }
.hero__sub {
margin-top: 22px;
font-size: clamp(15px, 1.5vw, 17.5px);
font-weight: 500;
color: rgb(255 255 255 / 0.92);
text-shadow: 0 1px 14px rgb(0 0 0 / 0.4);
opacity: 0;
animation: heroIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.46s forwards;
}
.hero__sub span { display: block; }
.hero__ctas {
display: flex;
flex-wrap: wrap;
gap: 14px;
margin-top: 30px;
opacity: 0;
animation: heroIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.58s forwards;
}
@media (prefers-reduced-motion: reduce) {
.hero__line, .hero__sub, .hero__ctas { opacity: 1; transform: none; animation: none; }
.hero__media--kenburns .hero__img { animation: none; }
}
.trust { background: var(--dark); color: var(--on-dark); }
.trust__list {
display: grid;
grid-template-columns: repeat(4, 1fr);
align-items: center;
padding-block: 20px;
}
.trust__item {
display: flex;
align-items: center;
justify-content: center;
gap: 13px;
font-size: 12.5px;
font-weight: 600;
letter-spacing: 0.15em;
text-transform: uppercase;
}
.trust__item svg { color: #fff; flex: 0 0 auto; }
.svc-grid {
display: grid;
grid-template-columns: repeat(var(--cols, 3), 1fr);
gap: 18px;
}
.gal {
display: grid;
grid-auto-flow: column;
grid-auto-columns: 1fr;
gap: 10px;
align-items: stretch;
}
.gal__col { display: grid; gap: 10px; min-height: 0; }
.gal__col--full { grid-template-rows: 1fr; }
.gal__col--split { grid-template-rows: 1fr 1fr; }
.tile { display: flex; flex-direction: column; min-height: 0; cursor: pointer; }
.gal__col--full .tile { height: 100%; }
.tile__media {
flex: 1;
min-height: 190px;
border-radius: var(--radius);
}
.gal__col--full .tile__media { min-height: 300px; }
.tile__img {
width: 100%;
height: 100%;
transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.tile:hover .tile__img { transform: scale(1.05); }
.tile__media::after {
content: "";
position: absolute;
inset: 0;
background: rgb(var(--brand-rgb) / 0);
transition: background-color 0.35s ease;
}
.tile:hover .tile__media::after { background: rgb(var(--brand-rgb) / 0.16); }
.tile__cap {
padding-block: 12px 4px;
font-size: 11px;
font-weight: 600;
letter-spacing: 0.15em;
text-transform: uppercase;
color: var(--ink-soft);
text-align: center;
}
.about { padding: 0; }
.about__grid {
display: grid;
grid-template-columns: 1fr 1fr;
align-items: stretch;
}
.about__media { min-height: 460px; }
.about__img { width: 100%; height: 100%; }
.about__copy {
display: flex;
flex-direction: column;
justify-content: center;
padding: 76px clamp(24px, 5vw, 78px);
max-width: 660px;
}
.about--img-right .about__copy { margin-left: auto; }
.about__title { font-size: clamp(30px, 3.9vw, 46px); margin-bottom: 22px; }
.about__body { font-size: 15.5px; color: var(--ink-soft); max-width: 46ch; }
.about__cta { margin-top: 30px; }
.eyebrow--center { text-align: center; }
.steps {
display: grid;
grid-template-columns: repeat(var(--cols, 4), 1fr);
gap: 0;
}
.step {
position: relative;
display: grid;
grid-template-columns: auto auto 1fr;
align-items: start;
gap: 14px;
padding-inline: 26px;
}
.step:first-child { padding-left: 0; }
.step:last-child { padding-right: 0; }
.step + .step::before {
content: "";
position: absolute;
left: 0; top: 4px; bottom: 4px;
border-left: 1px dashed var(--line);
}
.step__num {
display: grid;
place-items: center;
width: 25px; height: 25px;
border-radius: 50%;
background: var(--brand);
color: var(--on-brand);
font-size: 12.5px;
font-weight: 700;
margin-top: 4px;
}
.step__icon { color: var(--ink); }
.step__title {
font-family: var(--font-display);
font-size: 15.5px;
font-weight: 600;
letter-spacing: 0.13em;
text-transform: uppercase;
margin-bottom: 7px;
}
.step__text { font-size: 13.5px; color: var(--ink-soft); text-wrap: pretty; }
.band { position: relative; overflow: hidden; }
.band--testimonials {
background: linear-gradient(160deg, #C99A62 0%, #B07E45 42%, #9C6C38 100%);
padding-block: 58px;
}
.quotes {
position: relative;
z-index: 2;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 26px;
max-width: 960px;
margin-inline: auto;
}
.quote {
background: var(--surface);
border-radius: var(--radius);
padding: 30px 34px 26px;
text-align: center;
box-shadow: 0 10px 30px rgb(0 0 0 / 0.12);
}
.quote__text {
margin-top: 15px;
font-size: 14.5px;
font-style: italic;
line-height: 1.72;
color: var(--ink);
}
.quote__by {
margin-top: 17px;
font-size: 11.5px;
font-weight: 700;
letter-spacing: 0.15em;
text-transform: uppercase;
color: var(--ink-soft);
}
.band--cta { background: var(--brand); padding-block: 30px; }
.band--cta__inner {
position: relative;
z-index: 2;
display: flex;
align-items: center;
justify-content: space-between;
gap: 30px;
flex-wrap: wrap;
}
.band--cta__title {
color: var(--on-brand);
font-size: clamp(22px, 3vw, 34px);
}
.contact__grid {
display: grid;
grid-template-columns: 1fr 1.05fr;
gap: clamp(36px, 6vw, 78px);
align-items: start;
}
.contact__intro .eyebrow { text-align: left; margin-bottom: 16px; }
.contact__title { font-size: clamp(30px, 4vw, 48px); margin-bottom: 20px; }
.contact__blurb { font-size: 15.5px; color: var(--ink-soft); max-width: 42ch; }
.contact__details { display: grid; gap: 14px; margin-top: 32px; }
.cdetail {
display: flex;
align-items: center;
gap: 12px;
font-size: 15px;
color: var(--ink);
}
.cdetail svg { color: var(--brand); flex: 0 0 auto; }
a.cdetail:hover { color: var(--brand); }
@media (max-width: 1080px) {
.site-nav ul { gap: 24px; }
.steps { grid-template-columns: repeat(2, 1fr); row-gap: 42px; }
.step { padding-inline: 22px; }
.step:nth-child(odd) { padding-left: 0; }
.step:nth-child(even) { padding-right: 0; }
.step:nth-child(odd)::before { display: none; }
.site-footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 960px) {
:root { --section-space: 68px; }
.site-nav { display: none; }
.nav-toggle { display: flex; }
.site-header__actions .btn { display: none; }
.header-phone { display: flex; }
.mobile-menu:not([hidden]) { display: block; }
.svc-grid { grid-template-columns: repeat(2, 1fr); }
.about__grid { grid-template-columns: 1fr; }
.about__media { min-height: 320px; order: -1; }
.about--img-right .about__media { order: -1; }
.about__copy { padding-block: 52px; max-width: none; }
.contact__grid { grid-template-columns: 1fr; }
.quotes { grid-template-columns: 1fr; }
.gal { grid-auto-flow: row; grid-template-columns: repeat(2, 1fr); }
.gal__col--split { grid-template-rows: auto auto; }
.gal__col--full .tile__media { min-height: 240px; }
}
@media (max-width: 720px) {
:root { --section-space: 56px; }
.hero { min-height: 78vh; }
.hero__scrim {
background: linear-gradient(
175deg,
rgb(12 10 9 / calc(var(--hero-scrim) + 0.1)) 0%,
rgb(12 10 9 / calc(var(--hero-scrim) + 0.18)) 100%
);
}
.hero__ctas .btn { width: 100%; }
.trust__list {
grid-template-columns: repeat(2, 1fr);
gap: 22px 8px;
padding-block: 26px;
}
.trust__item {
flex-direction: column;
gap: 9px;
font-size: 10.5px;
line-height: 1.35;
letter-spacing: 0.11em;
text-align: center;
}
.svc-grid { grid-template-columns: 1fr; }
.svc-card { padding: 30px 22px; }
.steps { grid-template-columns: 1fr; row-gap: 32px; }
.step { padding-inline: 0; }
.step::before { display: none !important; }
.qform { padding: 24px 20px; }
.qform__grid { grid-template-columns: 1fr; }
.band--cta { padding-block: 34px; }
.band--cta__inner { flex-direction: column; text-align: center; }
.band--cta__inner .btn { width: 100%; }
.site-footer__grid { grid-template-columns: 1fr; gap: 34px; padding-block: 48px 34px; }
.site-footer__bar-inner { flex-direction: column; gap: 8px; text-align: center; }
.callbar { display: flex; }
body { padding-bottom: 54px; }
.lightbox__nav { width: 42px; height: 42px; font-size: 26px; }
.lightbox__nav--prev { left: 6px; }
.lightbox__nav--next { right: 6px; }
}
@media (max-width: 480px) {
.gal { grid-template-columns: 1fr; }
.header-phone span { display: none; }
.logo__line1 { font-size: 18px; }
.logo__line2 { font-size: 8.5px; letter-spacing: 0.28em; }
}
@media print {
.site-header, .callbar, .lightbox, .hero__ctas, .qform, .band--cta { display: none !important; }
.hero { min-height: auto; color: #000; }
body { color: #000; }
[data-reveal] { opacity: 1 !important; transform: none !important; }
}
.container.narrow { max-width: 760px; }
.pagehead { padding-block: 64px 34px; }
.pagehead__title { font-size: clamp(32px, 5vw, 56px); }
.pagehead__intro {
margin-top: 16px;
font-size: 17px;
color: var(--ink-soft);
max-width: 56ch;
text-wrap: pretty;
}
.eyebrow--left { text-align: left; margin-bottom: 14px; }
.crumbs {
display: flex;
gap: 9px;
align-items: center;
font-size: 12.5px;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--ink-soft);
margin-bottom: 22px;
}
.crumbs a:hover { color: var(--brand); }
.notice {
padding: 30px;
background: var(--card);
border: 1px solid var(--line);
border-radius: var(--radius);
text-align: center;
color: var(--ink-soft);
}
.notice a { color: var(--brand); font-weight: 600; }
.pcards {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 22px;
}
.pcard {
background: var(--surface);
border: 1px solid var(--line);
border-radius: var(--radius);
overflow: hidden;
transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}
.pcard:hover { transform: translateY(-4px); box-shadow: 0 16px 38px rgb(0 0 0 / 0.09); }
.pcard__link { display: flex; flex-direction: column; height: 100%; }
.pcard__media { aspect-ratio: 4 / 3; }
.pcard__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
.pcard:hover .pcard__img { transform: scale(1.05); }
.pcard__body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.pcard__kicker {
font-size: 11px;
font-weight: 700;
letter-spacing: 0.15em;
text-transform: uppercase;
color: var(--brand);
margin-bottom: 8px;
}
.pcard__title {
font-family: var(--font-display);
font-size: 20px;
font-weight: 600;
letter-spacing: 0.04em;
text-transform: uppercase;
line-height: 1.15;
}
.pcard__text { margin-top: 9px; font-size: 14.5px; color: var(--ink-soft); text-wrap: pretty; }
.pcard__more {
margin-top: auto;
padding-top: 16px;
font-size: 12px;
font-weight: 700;
letter-spacing: 0.13em;
text-transform: uppercase;
color: var(--brand);
}
.pcard__more::after { content: " →"; }
.media__empty {
display: block;
width: 100%;
height: 100%;
min-height: 180px;
background:
repeating-linear-gradient(
135deg,
rgb(var(--brand-rgb) / 0.09) 0 14px,
rgb(var(--brand-rgb) / 0.045) 14px 28px
),
var(--surface-warm);
}
.gal__more { text-align: center; margin-top: 34px; }
.btn--ghost-dark {
--btn-bg: transparent;
--btn-fg: var(--ink);
border: 2px solid var(--line);
}
.btn--ghost-dark:hover { --btn-bg: var(--surface-warm); border-color: var(--brand); }
.article { padding-block: 54px 0; }
.article__title { font-size: clamp(30px, 4.6vw, 52px); }
.article__date {
display: block;
font-size: 12.5px;
font-weight: 600;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--brand);
margin-bottom: 12px;
}
.article__lead {
margin-top: 18px;
font-size: 18.5px;
line-height: 1.6;
color: var(--ink-soft);
text-wrap: pretty;
}
.article__hero {
margin-block: 40px;
border-radius: var(--radius);
max-height: 620px;
}
.article__heroimg { width: 100%; height: 100%; object-fit: cover; }
.prose { font-size: 16.5px; line-height: 1.75; color: var(--ink); }
.prose p { margin-bottom: 20px; }
.prose p:last-child { margin-bottom: 0; }
.prose__figure { margin: 34px 0; }
.prose__figure .media { border-radius: var(--radius); }
.prose__figure img { width: 100%; height: auto; }
.prose__figure figcaption {
margin-top: 10px;
font-size: 13px;
color: var(--ink-soft);
text-align: center;
}
.article__cta {
margin: 52px 0 0;
padding: 34px;
background: var(--surface-warm);
border-radius: var(--radius);
text-align: center;
}
.article__cta p {
font-family: var(--font-display);
font-size: 22px;
text-transform: var(--display-transform);
letter-spacing: 0.02em;
margin-bottom: 18px;
}
.pgallery {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 16px;
margin-block: 44px;
}
.pgallery__item .media { border-radius: var(--radius); aspect-ratio: 4 / 3; }
.pgallery__img { width: 100%; height: 100%; object-fit: cover; }
.pgallery__cap {
margin-top: 9px;
font-size: 12px;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--ink-soft);
text-align: center;
}
.posts { display: grid; gap: 18px; }
.post-item {
background: var(--surface);
border: 1px solid var(--line);
border-radius: var(--radius);
overflow: hidden;
transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.post-item:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgb(0 0 0 / 0.08); }
.post-item__link { display: grid; grid-template-columns: 300px 1fr; align-items: stretch; }
.post-item__media { min-height: 200px; }
.post-item__img { width: 100%; height: 100%; object-fit: cover; }
.post-item__body { padding: 26px 30px; display: flex; flex-direction: column; }
.post-item__date {
font-size: 12px;
font-weight: 700;
letter-spacing: 0.13em;
text-transform: uppercase;
color: var(--brand);
}
.post-item__title {
margin-top: 9px;
font-family: var(--font-display);
font-size: 24px;
font-weight: 600;
letter-spacing: 0.03em;
text-transform: uppercase;
line-height: 1.15;
}
.post-item__text { margin-top: 10px; font-size: 15px; color: var(--ink-soft); text-wrap: pretty; }
.video {
position: relative;
margin-block: 34px;
aspect-ratio: 16 / 9;
background: #000;
border-radius: var(--radius);
overflow: hidden;
}
.video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video--facebook { aspect-ratio: 16 / 10; background: #1c1e21; }
.video-link { margin-block: 24px; }
.video-link a { color: var(--brand); font-weight: 600; }
.pager {
display: flex;
align-items: center;
justify-content: center;
gap: 22px;
margin-top: 40px;
font-size: 13px;
letter-spacing: 0.08em;
text-transform: uppercase;
}
.pager__link { font-weight: 700; color: var(--brand); }
.pager__link:hover { text-decoration: underline; }
.pager__count { color: var(--ink-soft); }
.admin-link {
color: rgb(255 255 255 / 0.3);
font-size: 11px;
letter-spacing: 0.1em;
text-transform: uppercase;
transition: color 0.2s ease;
}
.admin-link:hover { color: var(--brand); }
@media (max-width: 760px) {
.post-item__link { grid-template-columns: 1fr; }
.post-item__media { aspect-ratio: 16 / 9; min-height: 0; }
.post-item__body { padding: 22px; }
.pagehead { padding-block: 44px 24px; }
.article__hero { margin-block: 28px; }
.article__cta { padding: 26px 20px; }
.pcards { grid-template-columns: 1fr; }
.pgallery { grid-template-columns: 1fr; }
}