/* Oriflamme Auto — light neo-brutalist spec-sheet */
:root {
  --w: #FFFFFF;
  --k: #111111;
  --y: #FFD400;
  --g1: #F2F2EF;
  --g2: #8A8A86;
  --bd: 3px solid var(--k);
  --bd-thick: 4px solid var(--k);
  --sh: 6px 6px 0 var(--k);
  --sh-lg: 10px 10px 0 var(--k);
  --mono: "Space Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  --disp: "Archivo Black", "Arial Black", Impact, sans-serif;
  --sans: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --pad: clamp(16px, 4vw, 56px);
  --max: 1360px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--w); color: var(--k); font-family: var(--sans); font-size: clamp(15px, 1.05vw, 17px); line-height: 1.6; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
[hidden] { display: none !important; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--disp); font-weight: 400; line-height: 1.02; margin: 0; letter-spacing: -.01em; }
p { margin: 0 0 1em; }
mark { background: var(--y); color: var(--k); padding: 0 .12em; box-decoration-break: clone; -webkit-box-decoration-break: clone; }
:focus-visible { outline: 3px solid var(--k); outline-offset: 3px; box-shadow: 0 0 0 7px var(--y); }
.orf-sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.orf-skip { position: absolute; left: -999px; top: 8px; z-index: 100; background: var(--y); border: var(--bd); padding: 8px 14px; font-family: var(--mono); }
.orf-skip:focus { left: 8px; }

.orf-label { font-family: var(--mono); font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin: 0 0 14px; }

/* ---------- ticker ---------- */
.orf-ticker { background: var(--k); color: var(--y); font-family: var(--mono); font-size: .72rem; letter-spacing: .1em; overflow: hidden; white-space: nowrap; border-bottom: var(--bd); }
.orf-ticker__track { display: inline-flex; gap: 22px; padding: 7px 0; animation: orf-scroll 38s linear infinite; }
@keyframes orf-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- header ---------- */
.orf-header { position: sticky; top: 0; z-index: 50; background: var(--w); border-bottom: var(--bd-thick); display: flex; align-items: stretch; justify-content: space-between; min-height: 68px; }
.orf-logo { display: flex; align-items: center; gap: 12px; padding: 0 var(--pad); text-decoration: none; border-right: var(--bd); }
.orf-logo__mark { display: grid; place-items: center; width: 42px; height: 42px; background: var(--y); border: var(--bd); box-shadow: 3px 3px 0 var(--k); font-family: var(--disp); font-size: 1rem; }
.orf-logo__txt { font-family: var(--disp); font-size: 1.1rem; letter-spacing: .02em; }
.orf-logo__txt b { font-weight: 400; background: var(--k); color: var(--y); padding: 0 6px; margin-left: 6px; }
.orf-nav { display: flex; align-items: stretch; }
.orf-nav a { display: flex; align-items: center; padding: 0 clamp(12px, 1.4vw, 22px); font-family: var(--mono); font-size: .8rem; font-weight: 700; text-transform: uppercase; text-decoration: none; border-left: var(--bd); transition: background .15s; }
.orf-nav a:hover { background: var(--y); }
.orf-nav .orf-nav__cta { background: var(--k); color: var(--y); }
.orf-nav .orf-nav__cta:hover { background: var(--y); color: var(--k); }
.orf-burger { display: none; width: 68px; border: 0; border-left: var(--bd); background: var(--y); cursor: pointer; flex-direction: column; justify-content: center; align-items: center; gap: 6px; }
.orf-burger span { display: block; width: 28px; height: 4px; background: var(--k); transition: transform .2s, opacity .2s; }
.orf-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.orf-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.orf-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

/* ---------- buttons ---------- */
.orf-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 52px; padding: 12px 22px; font-family: var(--mono); font-weight: 700; font-size: .9rem; text-transform: uppercase; letter-spacing: .03em; text-decoration: none; border: var(--bd); border-radius: 0; box-shadow: var(--sh); cursor: pointer; transition: transform .12s, box-shadow .12s; color: var(--k); background: var(--w); }
.orf-btn:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 var(--k); }
.orf-btn:active { transform: translate(6px, 6px); box-shadow: 0 0 0 var(--k); }
.orf-btn--yellow { background: var(--y); }
.orf-btn--black { background: var(--k); color: var(--y); box-shadow: 6px 6px 0 var(--y), 6px 6px 0 3px var(--k); }
.orf-btn--black:hover { box-shadow: 8px 8px 0 var(--y), 8px 8px 0 3px var(--k); }
.orf-btn--ghost { background: var(--w); }
.orf-btn--sm { min-height: 42px; padding: 8px 16px; font-size: .78rem; box-shadow: 4px 4px 0 var(--k); }

/* ---------- hero ---------- */
.orf-hero { border-bottom: var(--bd-thick); }
.orf-marquee { overflow: hidden; border-bottom: var(--bd-thick); background: var(--y); white-space: nowrap; }
.orf-marquee__track { display: inline-flex; align-items: center; gap: clamp(16px, 2vw, 36px); padding: 6px 0 2px; font-family: var(--disp); font-size: clamp(64px, 13vw, 220px); line-height: .95; animation: orf-scroll 30s linear infinite; }
.orf-marquee__track i { font-style: normal; font-size: .45em; }
.orf-outline { color: transparent; -webkit-text-stroke: 3px var(--k); }

.orf-hero__grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); grid-template-areas: "copy frame" "spec frame"; max-width: var(--max); margin: 0 auto; }
.orf-hero__copy { grid-area: copy; padding: clamp(28px, 4vw, 56px) var(--pad); border-right: var(--bd-thick); }
.orf-hero__copy h1 { font-size: clamp(34px, 4.6vw, 72px); margin-bottom: 20px; }
.orf-hero__sub { font-size: 1.05em; max-width: 52ch; }
.orf-hero__btns { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 26px; }
.orf-frame { grid-area: frame; margin: 0; padding: clamp(16px, 2.4vw, 32px); background: repeating-linear-gradient(0deg, transparent 0 23px, #e9e9e6 23px 24px), repeating-linear-gradient(90deg, var(--g1) 0 23px, #e9e9e6 23px 24px); display: flex; flex-direction: column; justify-content: center; }
.orf-frame img { border: var(--bd-thick); border-top: 0; box-shadow: var(--sh-lg); width: 100%; aspect-ratio: 16 / 10; object-fit: cover; object-position: 50% 70%; }
.orf-frame__bar { display: flex; justify-content: space-between; gap: 8px; background: var(--k); color: var(--w); font-family: var(--mono); font-size: .72rem; letter-spacing: .08em; padding: 6px 12px; border: var(--bd-thick); border-bottom: 0; }
.orf-frame__bar span:first-child { color: var(--y); }
.orf-spec { grid-area: spec; border-right: var(--bd-thick); border-top: var(--bd-thick); padding: clamp(20px, 2.6vw, 36px) var(--pad); background: var(--w); }
.orf-spec__title { font-family: var(--mono); font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 12px; display: inline-block; background: var(--y); border: var(--bd); padding: 2px 10px; }
.orf-spec table, .orf-coords__t { width: 100%; border-collapse: collapse; font-family: var(--mono); font-size: .84rem; border: var(--bd); }
.orf-spec th, .orf-spec td, .orf-coords__t th, .orf-coords__t td { border: 2px solid var(--k); padding: 8px 12px; text-align: left; vertical-align: top; }
.orf-spec th, .orf-coords__t th { width: 38%; background: var(--g1); font-weight: 700; text-transform: uppercase; font-size: .74rem; letter-spacing: .05em; }
.orf-spec small { color: #555; }

/* ---------- sections ---------- */
.orf-section { padding: clamp(56px, 8vw, 120px) var(--pad); }
.orf-section > * { max-width: var(--max); margin-left: auto; margin-right: auto; }
.orf-shead { margin-bottom: clamp(28px, 4vw, 56px); }
.orf-shead h2 { font-size: clamp(30px, 5vw, 76px); max-width: 18ch; }
.orf-shead__lead { max-width: 64ch; margin-top: 18px; font-size: 1.05em; }
.orf-shead--inv h2 { color: var(--w); }
.orf-shead--inv .orf-label { color: var(--y); }

/* about */
.orf-about__grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: clamp(24px, 4vw, 64px); align-items: start; }
.orf-about__text { border-left: 10px solid var(--y); padding-left: clamp(16px, 2vw, 28px); font-size: 1.05em; }
.orf-figures { display: grid; grid-template-columns: 1fr 1fr; margin: 0; border: var(--bd-thick); box-shadow: var(--sh-lg); }
.orf-fig { padding: clamp(18px, 2.4vw, 32px); border: 2px solid var(--k); background: var(--w); }
.orf-fig dt { font-family: var(--mono); font-size: .76rem; text-transform: uppercase; letter-spacing: .08em; }
.orf-fig dd { margin: 6px 0 0; font-family: var(--disp); font-size: clamp(40px, 5vw, 76px); line-height: 1; }
.orf-fig--y { background: var(--y); }
.orf-fig--k { background: var(--k); color: var(--y); }

.orf-hatch { height: 38px; border-top: var(--bd-thick); border-bottom: var(--bd-thick); background: repeating-linear-gradient(-45deg, var(--y) 0 18px, var(--k) 18px 36px); }

/* services table */
.orf-services { background: var(--w); }
.orf-table { border: var(--bd-thick); box-shadow: var(--sh-lg); background: var(--w); }
.orf-table__head, .orf-row { display: grid; grid-template-columns: 84px 120px minmax(180px, 1.1fr) minmax(0, 2fr) 150px; align-items: stretch; }
.orf-table__head { background: var(--k); color: var(--y); font-family: var(--mono); font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; }
.orf-table__head span { padding: 10px 14px; border-right: 2px solid #333; }
.orf-row { border-top: var(--bd); transition: background .15s; }
.orf-row:hover { background: #FFF6C2; }
.orf-row > * { padding: 18px 14px; border-right: 2px solid var(--k); margin: 0; }
.orf-row > *:last-child { border-right: 0; }
.orf-row__ico { font-size: 2rem; display: grid; place-items: center; background: var(--y); }
.orf-row__ref { font-family: var(--mono); font-weight: 700; font-size: .8rem; display: flex; align-items: center; }
.orf-row h3 { font-size: clamp(18px, 1.6vw, 24px); display: flex; align-items: center; }
.orf-row p { font-size: .95em; }
.orf-row__go { display: flex; align-items: center; justify-content: center; font-family: var(--mono); font-weight: 700; text-transform: uppercase; font-size: .8rem; text-decoration: none; }
.orf-row__go:hover { background: var(--k); color: var(--y); }

/* why — masonry */
.orf-why { background: var(--k); background-image: radial-gradient(#2c2c2c 1.5px, transparent 1.6px); background-size: 22px 22px; }
.orf-masonry { columns: 3 300px; column-gap: 28px; }
.orf-card { break-inside: avoid; margin: 0 0 28px; background: var(--w); border: var(--bd-thick); box-shadow: 8px 8px 0 var(--y); display: inline-block; width: 100%; }
.orf-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-bottom: var(--bd-thick); }
.orf-card--tall img { aspect-ratio: 4 / 5; }
.orf-card__body { padding: 20px 20px 8px; }
.orf-card h3 { font-size: clamp(20px, 1.8vw, 26px); margin: 10px 0 10px; }
.orf-tag { display: inline-block; font-family: var(--mono); font-weight: 700; font-size: .72rem; letter-spacing: .1em; border: 2px solid var(--k); padding: 1px 8px; background: var(--y); }
.orf-card--y { background: var(--y); }
.orf-card--y .orf-tag { background: var(--w); }
.orf-card--k { background: #1c1c1c; color: var(--w); border-color: var(--y); }
.orf-card--k img { border-bottom-color: var(--y); }
.orf-card--k .orf-tag { color: var(--k); }

/* reviews */
.orf-reviews__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.orf-review { margin: 0; border: var(--bd-thick); box-shadow: var(--sh); background: var(--w); display: flex; flex-direction: column; }
.orf-review:nth-child(2) { transform: translateY(28px); }
.orf-review__top { display: grid; grid-template-columns: 96px 1fr; border-bottom: var(--bd-thick); background: var(--g1); }
.orf-review__top img { width: 96px; height: 96px; object-fit: cover; border-right: var(--bd-thick); }
.orf-review__top > div { padding: 12px 14px; }
.orf-review__top p { margin: 0; }
.orf-review__name { font-family: var(--disp); font-size: 1.2rem; }
.orf-review__city { font-family: var(--mono); font-size: .78rem; }
.orf-stars { font-size: 1rem; letter-spacing: 2px; }
.orf-stars__off { color: #c8c8c2; }
.orf-review blockquote { margin: 0; padding: 20px; flex: 1; }
.orf-review__meta { font-family: var(--mono); font-size: .74rem; text-transform: uppercase; letter-spacing: .08em; padding: 8px 20px; border-top: var(--bd); background: var(--y); }

/* contact */
.orf-contact { background: var(--g1); border-top: var(--bd-thick); }
.orf-contact__grid { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr); gap: clamp(24px, 3vw, 44px); align-items: start; }
.orf-form { background: var(--w); border: var(--bd-thick); box-shadow: var(--sh-lg); padding: 0 0 26px; }
.orf-form__bar { display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap; background: var(--y); border-bottom: var(--bd-thick); padding: 10px 20px; font-family: var(--mono); font-weight: 700; font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; }
.orf-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; padding: 24px 20px; }
.orf-form > .orf-btn { margin-left: 20px; }
.orf-field { display: flex; flex-direction: column; min-width: 0; }
.orf-field--full { grid-column: 1 / -1; }
.orf-field label { font-family: var(--mono); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 6px; }
.orf-opt { font-weight: 400; text-transform: none; }
.orf-field input, .orf-field select, .orf-field textarea { font: inherit; font-size: 1rem; width: 100%; border: var(--bd); border-radius: 0; background: var(--w); padding: 12px 12px; color: var(--k); appearance: none; -webkit-appearance: none; }
.orf-field select { background-image: linear-gradient(45deg, transparent 50%, var(--k) 50%), linear-gradient(-45deg, transparent 50%, var(--k) 50%); background-position: calc(100% - 20px) 55%, calc(100% - 14px) 55%; background-size: 6px 6px; background-repeat: no-repeat; padding-right: 36px; }
.orf-field input:focus, .orf-field select:focus, .orf-field textarea:focus { outline: none; box-shadow: 5px 5px 0 var(--y), 5px 5px 0 3px var(--k); }
.orf-field [aria-invalid="true"] { background: #FFF0F0; border-color: #B00020; }
.orf-err { color: #B00020; font-family: var(--mono); font-size: .76rem; margin: 4px 0 0; min-height: 1em; }
.orf-check { flex-direction: row; flex-wrap: wrap; align-items: flex-start; gap: 12px; }
.orf-check input { width: 26px; height: 26px; flex: 0 0 26px; padding: 0; margin: 0; cursor: pointer; }
.orf-check input:checked { background: var(--y); background-image: linear-gradient(var(--k), var(--k)); background-size: 12px 12px; background-position: center; background-repeat: no-repeat; }
.orf-check label { flex: 1; text-transform: none; font-family: var(--sans); font-size: .9rem; font-weight: 400; letter-spacing: 0; min-width: 0; }
.orf-check .orf-err { flex-basis: 100%; }
.orf-success { margin: 22px 20px 0; border: var(--bd-thick); background: var(--y); padding: 16px; font-family: var(--mono); display: grid; gap: 4px; }
.orf-success:focus { outline: none; }
.orf-coords { display: grid; gap: 24px; }
.orf-coords__t { background: var(--w); box-shadow: var(--sh); border-width: 4px; }
.orf-coords__t caption { text-align: left; font-family: var(--disp); font-size: 1.5rem; padding-bottom: 8px; }
.orf-coords__t--y td { background: #FFF6C2; }
.orf-coords__t a { font-weight: 700; word-break: break-word; }
.orf-coords__note { font-family: var(--mono); font-size: .8rem; border: 2px dashed var(--k); padding: 12px; margin: 0; }

/* footer */
.orf-footer { background: var(--k); color: var(--w); padding: 0 var(--pad) 28px; border-top: 8px solid var(--y); overflow: hidden; }
.orf-footer__big { font-family: var(--disp); font-size: clamp(56px, 16vw, 260px); line-height: .8; color: transparent; -webkit-text-stroke: 2px var(--y); margin: 20px 0 30px; white-space: nowrap; text-align: center; }
.orf-footer__grid { display: grid; grid-template-columns: 1.2fr 1.2fr 1fr; gap: 24px; max-width: var(--max); margin: 0 auto; border-top: 2px solid #333; padding-top: 24px; font-size: .92rem; }
.orf-footer__brand { font-family: var(--disp); color: var(--y); font-size: 1.4rem; margin-bottom: 6px; }
.orf-footer a { color: var(--w); }
.orf-footer a:hover { color: var(--y); }
.orf-footer__legal { display: flex; flex-direction: column; gap: 6px; align-items: flex-start; font-family: var(--mono); font-size: .82rem; }
.orf-linkbtn { background: none; border: 0; padding: 0; color: var(--w); font: inherit; text-decoration: underline; cursor: pointer; }
.orf-linkbtn:hover { color: var(--y); }
.orf-footer__copy { max-width: var(--max); margin: 24px auto 0; font-family: var(--mono); font-size: .76rem; color: #aaa; }

/* cookie — full-width bottom strip */
.orf-cookie { position: fixed; left: 0; right: 0; bottom: 0; z-index: 80; background: var(--y); border-top: var(--bd-thick); padding: 14px var(--pad); display: flex; align-items: center; justify-content: space-between; gap: 16px 28px; flex-wrap: wrap; font-size: .9rem; }
.orf-cookie[hidden] { display: none; }
.orf-cookie p { margin: 0; max-width: 820px; flex: 1 1 360px; }
.orf-cookie strong { font-family: var(--mono); }
.orf-cookie__btns { display: flex; gap: 14px; }

/* reveal */
.js .orf-rv { opacity: 0; transform: translateY(24px); transition: opacity .5s ease, transform .5s ease; }
.js .orf-rv.is-in { opacity: 1; transform: none; }
.js .orf-review:nth-child(2).orf-rv.is-in { transform: translateY(28px); }

/* ---------- breakpoints ---------- */
@media (max-width: 1180px) {
  .orf-table__head, .orf-row { grid-template-columns: 72px 100px minmax(160px, 1fr) minmax(0, 1.6fr) 120px; }
}
@media (max-width: 1024px) {
  .orf-burger { display: flex; }
  .orf-nav { position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: var(--w); border-bottom: var(--bd-thick); display: none; }
  .orf-nav.is-open { display: flex; }
  .orf-nav a { border-left: 0; border-top: var(--bd); padding: 16px var(--pad); min-height: 52px; }
  .orf-hero__grid { grid-template-columns: 1fr; grid-template-areas: "copy" "frame" "spec"; }
  .orf-hero__copy, .orf-spec { border-right: 0; }
  .orf-frame { border-top: var(--bd-thick); }
  .orf-about__grid, .orf-contact__grid { grid-template-columns: 1fr; }
  .orf-table__head { display: none; }
  .orf-row { grid-template-columns: 72px 1fr; grid-template-areas: "ico ref" "ico h" "p p" "go go"; }
  .orf-row > * { border-right: 0; }
  .orf-row__ico { grid-area: ico; border-right: var(--bd) !important; }
  .orf-row__ref { grid-area: ref; padding-bottom: 0; }
  .orf-row h3 { grid-area: h; padding-top: 4px; }
  .orf-row p { grid-area: p; border-top: 2px solid var(--k); }
  .orf-row__go { grid-area: go; border-top: 2px solid var(--k); justify-content: flex-start; background: var(--g1); }
  .orf-reviews__grid { grid-template-columns: 1fr; max-width: 640px; }
  .orf-review:nth-child(2), .js .orf-review:nth-child(2).orf-rv.is-in { transform: none; }
  .orf-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .orf-logo__txt { font-size: .95rem; }
  .orf-logo { gap: 8px; }
  .orf-logo__mark { width: 36px; height: 36px; }
  .orf-form__grid { grid-template-columns: 1fr; }
  .orf-figures { grid-template-columns: 1fr 1fr; }
  .orf-hero__btns .orf-btn { width: 100%; }
  .orf-card--tall img { aspect-ratio: 4 / 3; }
  .orf-frame__bar span:last-child { display: none; }
  .orf-spec th, .orf-spec td { padding: 7px 8px; }
  .orf-footer__grid { grid-template-columns: 1fr; }
  .orf-cookie__btns { width: 100%; }
  .orf-cookie__btns .orf-btn { flex: 1; }
  .orf-marquee__track { -webkit-text-stroke-width: 2px; }
  .orf-outline { -webkit-text-stroke-width: 2px; }
  .orf-form > .orf-btn { margin: 0 20px; width: calc(100% - 40px); }
}
@media (max-width: 380px) {
  .orf-logo__txt { font-size: .85rem; }
  .orf-logo__txt b { margin-left: 4px; padding: 0 4px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .orf-rv { opacity: 1; transform: none; }
}
