:root {
  --ink: #111718;
  --paper: #f5f5f0;
  --white: #ffffff;
  --red: #e20101;
  --red-dark: #af0101;
  --slate: #54504f;
  --line: #d9ddda;
  --muted: #697578;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: Arial, Helvetica, sans-serif; line-height: 1.6; }
body, button, input, textarea { font-size: 16px; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
button, a, input, textarea { outline-offset: 4px; }
:focus-visible { outline: 3px solid var(--red); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 100; top: 10px; left: 10px; transform: translateY(-150%); padding: .7rem 1rem; background: var(--ink); color: white; }
.skip-link:focus { transform: none; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.eyebrow { margin: 0 0 .7rem; color: var(--red); font-size: .76rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(3rem, 7vw, 6.7rem); }
h2 { font-size: clamp(2rem, 4.2vw, 4.1rem); }
h3 { font-size: clamp(1.35rem, 2vw, 2rem); }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: .75rem 1.4rem; border: 1px solid var(--ink); background: var(--white); color: var(--ink); font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; transition: background .2s, color .2s, transform .2s; }
.button:hover { background: var(--red); border-color: var(--red); color: white; transform: translateY(-2px); }
.button--dark { background: var(--ink); color: white; }
.button--ghost { background: transparent; color: white; border-color: rgba(255,255,255,.65); }
.button--small { min-height: 46px; padding-inline: 1.1rem; }

.site-header { position: sticky; z-index: 30; top: 0; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(17,23,24,.08); backdrop-filter: blur(14px); }
.header-inner { display: flex; min-height: 92px; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: flex; align-items: center; gap: 1.4rem; flex-shrink: 0; }
.brand-name { font-size: 1.3rem; font-weight: 900; line-height: .98; letter-spacing: .04em; text-transform: uppercase; }
.brand-tagline { padding-left: 1.4rem; border-left: 1px solid var(--line); font-size: .82rem; font-weight: 700; line-height: 1.25; }
.main-nav { display: flex; align-items: center; gap: clamp(.8rem, 1.7vw, 1.6rem); }
.main-nav > a:not(.button) { font-size: .85rem; font-weight: 700; }
.main-nav > a:not(.button):hover { color: var(--red); }
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); background: white; }
.menu-toggle span:not(.sr-only) { display: block; width: 20px; height: 2px; margin: 5px auto; background: var(--ink); }

.hero { position: relative; min-height: calc(100vh - 92px); display: grid; align-items: end; overflow: hidden; background: var(--ink); color: white; }
.hero-media { position: absolute; inset: 0; }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,14,16,.9) 0%, rgba(6,14,16,.58) 47%, rgba(6,14,16,.16) 100%); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-content { position: relative; z-index: 1; max-width: 850px; padding-block: clamp(6rem, 15vh, 10rem); }
.hero .eyebrow { color: #fe1818; }
.hero h1 { margin-bottom: 1.4rem; max-width: 780px; }
.hero-subtitle { max-width: 620px; color: rgba(255,255,255,.82); font-size: clamp(1.05rem, 2vw, 1.35rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }

.section { padding-block: clamp(5rem, 10vw, 9rem); scroll-margin-top: 90px; }
.section--paper { background: var(--paper); }
.section--dark { background: var(--ink); color: white; }
.section-heading { max-width: 760px; margin-bottom: clamp(2.5rem, 6vw, 5rem); }
.section-heading h2 { margin-bottom: 0; }
.section-heading--center { margin-inline: auto; text-align: center; }
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(3rem, 8vw, 7rem); }
.split-media { min-height: 620px; position: relative; overflow: hidden; }
.split-media img { width: 100%; height: 100%; min-height: 620px; object-fit: cover; }
.split-copy h2 { margin-bottom: 1.5rem; }
.split-copy p:not(.eyebrow) { color: var(--slate); font-size: 1.08rem; }
.split-copy .button { margin-top: 1rem; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.card { display: flex; flex-direction: column; background: white; border: 1px solid var(--line); transition: transform .25s, box-shadow .25s; }
.card:hover { transform: translateY(-5px); box-shadow: 0 22px 55px rgba(20,44,44,.12); }
.card-image { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.card:hover .card-image img { transform: scale(1.035); }
.card-body { display: flex; flex: 1; flex-direction: column; padding: 1.7rem; }
.card-body h3 { margin-bottom: .8rem; }
.card-body p { color: var(--muted); }
.text-link { width: fit-content; margin-top: auto; color: var(--red-dark); font-size: .76rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.text-link::after { content: " →"; }
.project-card { background: #182021; border-color: #334041; }
.project-card .card-body p { color: rgba(255,255,255,.68); }
.project-card .card-body h3 { color: white; }

.quote-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.quote { margin: 0; padding: 2rem; border: 1px solid var(--line); background: white; }
.quote > p { min-height: 190px; font-size: 1.04rem; }
.quote-author { display: flex; align-items: center; gap: 1rem; padding-top: 1.4rem; border-top: 1px solid var(--line); }
.quote-author img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; filter: grayscale(1); }
.quote-author strong, .quote-author span { display: block; }
.quote-author span { color: var(--muted); font-size: .85rem; }

.contact-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(3rem, 8vw, 7rem); }
.contact-details a { display: block; width: fit-content; margin-bottom: .6rem; font-size: 1.05rem; }
.contact-details .button { margin-top: 1.5rem; }
.contact-form { display: grid; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.contact-form label { display: grid; gap: .45rem; font-size: .78rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.field-label { display: inline; width: fit-content; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid #9ca6a7; background: white; padding: .9rem 1rem; color: var(--ink); text-transform: none; }
.contact-form textarea { resize: vertical; }
.checkbox-label { grid-template-columns: auto 1fr !important; align-items: start; font-weight: 500 !important; letter-spacing: 0 !important; text-transform: none !important; }
.checkbox-label input { width: 20px; height: 20px; margin-top: 2px; }
.contact-form .button { width: fit-content; }
.hp-field { position: absolute; left: -9999px; }
.form-status { min-height: 1.5rem; margin: 0; }
.form-status--success { color: #23653b; }
.form-status--error { color: #a32424; }

.page-hero { padding-block: clamp(5rem, 11vw, 9rem); background: var(--paper); }
.page-hero-inner { max-width: 900px; }
.page-hero h1 { margin-bottom: 1.2rem; font-size: clamp(3rem, 7vw, 6rem); }
.page-hero p:not(.eyebrow) { max-width: 680px; color: var(--slate); font-size: 1.2rem; }
.service-feature { display: grid; grid-template-columns: 1fr 1fr; min-height: 680px; }
.service-feature-image img { width: 100%; height: 100%; object-fit: cover; }
.service-feature-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(2.5rem, 7vw, 7rem); background: var(--ink); color: white; }
.service-feature-copy p { color: rgba(255,255,255,.76); font-size: 1.08rem; }
.service-feature-copy .button { width: fit-content; margin-top: 1.5rem; }

.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.article-card { border-bottom: 1px solid var(--line); padding-bottom: 2rem; }
.article-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; margin-bottom: 1.5rem; }
.article-meta { color: var(--red); font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.article-shell { max-width: 820px; margin-inline: auto; }
.article-shell > img { width: 100%; max-height: 560px; object-fit: cover; margin-bottom: 3rem; }
.article-content { color: #354246; font-size: 1.08rem; }
.article-content h2 { margin-top: 3.5rem; font-size: clamp(1.8rem, 4vw, 3rem); color: var(--ink); }
.article-content p { margin-bottom: 1.5rem; }

.booking-layout { display: grid; grid-template-columns: .65fr 1.35fr; align-items: start; gap: clamp(2rem, 7vw, 6rem); }
.booking-shell { min-height: 680px; position: relative; border: 1px solid var(--line); background: white; }
.booking-frame { width: 100%; min-height: 680px; border: 0; opacity: 0; }
.booking-frame.is-loaded { opacity: 1; }
.booking-loading, .booking-fallback { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; color: var(--muted); }
.booking-direct { padding: 1rem; margin: 0; border-top: 1px solid var(--line); font-size: .85rem; text-align: center; }
.booking-direct a { color: var(--red-dark); text-decoration: underline; }
.booking-shell--native { min-height: 0; padding: clamp(1.5rem, 4vw, 3rem); }
.booking-shell--native .wap-front, .booking-shell--native [class*="wap-"] { max-width: 100%; }
.form-status[hidden] { display: none; }

.cta-band { padding-block: 4rem; background: var(--red-dark); color: white; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.cta-inner h2 { max-width: 720px; margin: 0; font-size: clamp(2rem, 4vw, 3.6rem); }
.site-footer { padding-top: 5rem; background: #0e1415; color: white; }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 3rem; }
.footer-grid h2 { font-size: .75rem; letter-spacing: .13em; text-transform: uppercase; }
.footer-brand { font-size: 1.35rem; font-weight: 900; text-transform: uppercase; }
.footer-grid p, .footer-grid a { color: rgba(255,255,255,.68); }
.footer-grid a { display: block; width: fit-content; margin-bottom: .45rem; }
.footer-grid a:hover { color: white; }
.footer-bottom { margin-top: 4rem; padding-block: 1.5rem; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.58); font-size: .82rem; }
.footer-bottom p { margin: 0; }

@media (max-width: 960px) {
  .menu-toggle { display: block; }
  .main-nav { position: absolute; top: 92px; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 1.5rem 20px 2rem; border-bottom: 1px solid var(--line); background: white; }
  .main-nav.is-open { display: flex; }
  .main-nav > a:not(.button) { padding: .8rem 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .main-nav .button { margin-top: 1rem; }
  .split, .contact-layout, .booking-layout { grid-template-columns: 1fr; }
  .split-media { order: -1; min-height: 480px; }
  .split-media img { min-height: 480px; }
  .card-grid, .quote-grid { grid-template-columns: 1fr 1fr; }
  .quote:last-child { grid-column: 1 / -1; }
  .service-feature { grid-template-columns: 1fr; }
  .service-feature-image { height: 480px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .header-inner { min-height: 78px; gap: .5rem; }
  .brand { gap: .7rem; }
  .brand-name { font-size: 1.05rem; }
  .brand-tagline { padding-left: .7rem; font-size: .66rem; }
  .main-nav { top: 78px; }
  .hero { min-height: calc(100svh - 78px); }
  .hero-content { padding-block: 5rem; }
  .hero-media::after { background: linear-gradient(0deg, rgba(6,14,16,.92), rgba(6,14,16,.35)); }
  .card-grid, .quote-grid, .blog-grid, .form-row { grid-template-columns: 1fr; }
  .quote:last-child { grid-column: auto; }
  .quote > p { min-height: auto; }
  .split-media, .split-media img { min-height: 360px; }
  .service-feature-image { height: 360px; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .booking-shell, .booking-frame { min-height: 760px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
