:root {
  --orange: #f37a4e;
  --orange-d: #d9602f;
  --gold: #c1a01e;
  --dark: #000c17;
  --char: #36383b;
  --ink: #1c1f24;
  --mute: #6b6f76;
  --line: #e6e6e3;
  --soft: #f6f5f2;
  --paper: #ffffff;
  --wa: #1f9e55;
  --r: 2px;
  --font: "Tajawal", system-ui, -apple-system, "Segoe UI", Tahoma, sans-serif;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --geo: "Montserrat", "Century Gothic", "Futura", Arial, sans-serif;
  --wrap: min(1240px, calc(100% - 48px));
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--font); font-size: 16.5px; line-height: 1.8; color: var(--ink); background: var(--paper); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.3; font-weight: 700; color: var(--dark); }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }
[hidden] { display: none !important; }
.wrap { width: var(--wrap); margin-inline: auto; }
.ic { width: 1.1em; height: 1.1em; flex-shrink: 0; vertical-align: -.18em; }
[dir="ltr"] { unicode-bidi: isolate; }

/* ---------- Buttons ---------- */
.b { display: inline-flex; align-items: center; justify-content: center; gap: .55em; padding: .85em 1.6em; border-radius: var(--r); border: 1.5px solid transparent; font-weight: 700; font-size: .98rem; line-height: 1.2; white-space: nowrap; transition: background .2s, color .2s, border-color .2s; }
.b-orange { background: var(--orange); color: #fff; }
.b-orange:hover { background: var(--orange-d); }
.b-navy, .b-dark { background: var(--dark); color: #fff; }
.b-navy:hover, .b-dark:hover { background: var(--char); }
.b-wa { background: var(--wa); color: #fff; }
.b-wa:hover { background: #188547; }
.b-line, .b-dark-line { border-color: var(--dark); color: var(--dark); background: transparent; }
.b-line:hover, .b-dark-line:hover { background: var(--dark); color: #fff; }
.b-white-line, .b-ghost { border-color: rgba(255,255,255,.7); color: #fff; }
.b-white-line:hover, .b-ghost:hover { background: #fff; color: var(--dark); }
.b-sm { padding: .6em 1.1em; font-size: .9rem; }
.b-full { width: 100%; }
.more { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: var(--orange-d); font-size: .92rem; }
.more:hover { gap: 10px; }
.acts { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

/* ---------- Header ---------- */
.hdr { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.97); border-bottom: 1px solid var(--line); backdrop-filter: saturate(1.4) blur(8px); }
.hdr-in { display: flex; align-items: center; gap: 28px; min-height: 76px; position: relative; }
.logo { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.logo-word { font-family: var(--geo); font-weight: 700; font-size: 2rem; line-height: 1; letter-spacing: .14em; margin-right: -.14em; color: var(--orange); }
.logo-sub { display: flex; flex-direction: column; gap: 4px; padding-inline-start: 14px; border-inline-start: 1.5px solid var(--orange); line-height: 1; }
.logo-sub b { font-family: var(--geo); font-weight: 600; font-size: .78rem; letter-spacing: .34em; color: var(--dark); }
.logo-sub small { font-size: .72rem; color: var(--mute); font-weight: 500; }
.logo-light .logo-sub b { color: #fff; }
.logo-light .logo-sub small { color: #9ea3ab; }
.nav { display: flex; align-items: center; gap: 4px; margin-inline-start: auto; }
.nav > a:not(.b) { position: relative; padding: 8px 10px; font-size: .93rem; font-weight: 500; color: var(--char); white-space: nowrap; }
.nav > a:not(.b)::after { content: ""; position: absolute; inset-inline: 10px; bottom: 2px; height: 2px; background: var(--orange); transform: scaleX(0); transition: transform .2s; }
.nav > a:not(.b):hover::after, .nav > a.on::after { transform: scaleX(1); }
.nav > a.on { color: var(--dark); font-weight: 700; }
.nav-cta { display: none; }
.hdr-act { display: flex; align-items: center; gap: 14px; }
.hdr-tel { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: .92rem; color: var(--dark); white-space: nowrap; }
.hdr-tel .ic { color: var(--orange); }
.burger { display: none; width: 44px; height: 44px; border-radius: var(--r); border: 1px solid var(--line); background: transparent; color: var(--dark); align-items: center; justify-content: center; }
.burger .ic { width: 22px; height: 22px; }
.burger .i-close, .nav-open .burger .i-open { display: none; }
.nav-open .burger .i-close { display: block; }

/* ---------- Common ---------- */
.sec { padding: 104px 0; }
.sec-soft, .sec-paper { background: var(--soft); }
.sec-dark { background: var(--dark); color: #b9bec6; }
.sec-dark h2, .sec-dark h3 { color: #fff; }
.eyebrow { display: inline-flex; align-items: center; gap: 12px; font-size: .82rem; font-weight: 700; letter-spacing: .04em; color: var(--orange-d); margin-bottom: 14px; }
.eyebrow::after { content: ""; width: 36px; height: 1px; background: var(--gold); }
.head { margin-bottom: 52px; max-width: 720px; }
.head h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); }
.head p { color: var(--mute); font-size: 1.05rem; margin: 0; }
.head-c { text-align: center; margin-inline: auto; }
.head-c .eyebrow::before { content: ""; width: 36px; height: 1px; background: var(--gold); }
.head-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; max-width: none; flex-wrap: wrap; }
.head-row h2 { margin: 0; }
.muted { color: var(--mute); margin: 0; max-width: 380px; }
.ph { display: flex; align-items: flex-end; width: 100%; height: 100%; padding: 24px; color: #fff; background: linear-gradient(135deg, var(--dark), var(--char)); }
.ph b { font-family: var(--serif); font-size: 1.6rem; direction: ltr; }
.ph small { display: none; }
.media { display: block; position: relative; overflow: hidden; background: var(--soft); }
.media img { width: 100%; height: 100%; object-fit: cover; }
.note { display: flex; gap: 8px; align-items: flex-start; font-size: .86rem; color: var(--mute); margin: 18px 0 0; }
.note .ic { margin-top: .3em; color: var(--gold); }
.note a { color: var(--orange-d); text-decoration: underline; }

/* ---------- Home hero ---------- */
.hh { position: relative; min-height: min(calc(100vh - 76px), 860px); min-height: min(calc(100svh - 76px), 860px); display: flex; flex-direction: column; color: #fff; isolation: isolate; overflow: hidden; background: var(--dark); }
.hh-bg { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.hh::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(0,12,23,.25) 0%, rgba(0,12,23,.45) 45%, rgba(0,12,23,.88) 100%); }
.hh-in { flex: 1; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 80px 0 60px; }
.kick { font-family: var(--geo); font-weight: 600; font-size: .78rem; letter-spacing: .42em; color: #fff; padding: 8px 18px; border: 1px solid rgba(255,255,255,.45); margin-bottom: 26px; }
.hh h1 { color: #fff; font-size: clamp(2.4rem, 6vw, 4.6rem); line-height: 1.15; font-weight: 800; margin-bottom: 22px; }
.hh h1 em { font-style: normal; color: var(--orange); }
.hh-in p { max-width: 640px; font-size: 1.12rem; color: #e1e4e8; margin: 0; }
.hh .acts { justify-content: center; }
.hh-tabs { border-top: 1px solid rgba(255,255,255,.18); background: rgba(0,12,23,.55); backdrop-filter: blur(6px); }
.hh-tabs-in { display: grid; grid-template-columns: repeat(5, 1fr); }
.hh-tabs a { display: flex; flex-direction: column; gap: 2px; padding: 22px 20px; border-inline-start: 1px solid rgba(255,255,255,.12); transition: background .2s; }
.hh-tabs a:first-child { border-inline-start: 0; }
.hh-tabs a:hover { background: rgba(243,122,78,.18); }
.hh-tabs small { font-family: var(--geo); font-size: .72rem; color: var(--orange); letter-spacing: .2em; align-self: flex-start; }
.hh-tabs b { font-family: var(--serif); font-weight: 500; font-size: 1.2rem; color: #fff; align-self: flex-start; }
.hh-tabs span { font-size: .85rem; color: #aeb4bc; }

/* ---------- Intro ---------- */
.intro-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; }
.quote { font-size: clamp(1.7rem, 3.2vw, 2.5rem); line-height: 1.45; font-weight: 700; margin: 0; }
.intro p { color: var(--mute); font-size: 1.08rem; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); margin: 32px 0 0; border-top: 1px solid var(--line); }
.stats div { padding-top: 22px; }
.stats dd { order: -1; margin: 0; font-family: var(--geo); font-weight: 700; font-size: 2.3rem; line-height: 1.1; color: var(--orange); }
.stats div { display: flex; flex-direction: column; }
.stats dt { font-size: .88rem; color: var(--mute); }

/* ---------- Bento projects ---------- */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 270px; gap: 16px; }
.tile { position: relative; overflow: hidden; color: #fff; isolation: isolate; background: var(--dark); }
.tile-1 { grid-column: span 4; grid-row: span 2; }
.tile-2 { grid-column: span 2; grid-row: span 2; }
.tile-3, .tile-4, .tile-5 { grid-column: span 2; }
.tile-img { position: absolute; inset: 0; z-index: -2; }
.tile-img img, .tile-img .ph { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.tile:hover .tile-img img { transform: scale(1.05); }
.tile::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, transparent 35%, rgba(0,12,23,.85) 100%); }
.tile-body { position: absolute; inset: auto 0 0 0; padding: 26px; display: flex; flex-direction: column; gap: 2px; }
.tile-body em { align-self: flex-start; font-style: normal; font-size: .75rem; font-weight: 700; background: var(--orange); color: #fff; padding: 3px 10px; margin-bottom: 10px; }
.tile-body strong { align-self: flex-start; font-family: var(--serif); font-weight: 500; font-size: 1.7rem; line-height: 1.15; }
.tile-1 .tile-body strong { font-size: 2.6rem; }
.tile-body > span { font-size: .92rem; color: #d7dbe0; }
.tile-meta { display: flex; align-items: center; gap: 8px; margin-top: 8px; padding-top: 10px; border-top: 1px solid rgba(255,255,255,.2); font-weight: 700; color: #fff !important; }
.tile-meta .ic { margin-inline-start: auto; color: var(--orange); transition: transform .2s; }
.tile:hover .tile-meta .ic { transform: translateX(-4px); }

/* ---------- Compare ---------- */
.cmp-wrap { overflow-x: auto; border-top: 2px solid var(--dark); }
.cmp { width: 100%; border-collapse: collapse; min-width: 760px; }
.cmp th, .cmp td { padding: 18px 16px; text-align: right; border-bottom: 1px solid var(--line); }
.cmp thead th { font-size: .82rem; color: var(--mute); font-weight: 700; }
.cmp tbody tr:hover { background: var(--soft); }
.cmp-thumb { display: flex; align-items: center; gap: 14px; }
.cmp-thumb img { width: 64px; height: 46px; object-fit: cover; flex-shrink: 0; }
.cmp td b { display: block; font-family: var(--serif); font-weight: 500; font-size: 1.1rem; color: var(--dark); text-align: right; }
.cmp td small { color: var(--mute); }
.cmp .hl { color: var(--orange-d); font-weight: 800; font-family: var(--geo); }

/* ---------- Why ---------- */
.why { display: grid; grid-template-columns: 1.1fr .9fr; gap: 72px; align-items: center; }
.why h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 36px; }
.why-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 36px; counter-reset: w; }
.why-list li { position: relative; padding: 18px 0 18px 0; padding-inline-start: 44px; border-top: 1px solid rgba(255,255,255,.1); }
.why-list li::before { counter-increment: w; content: "0" counter(w); position: absolute; inset-inline-start: 0; top: 20px; font-family: var(--geo); font-size: .8rem; font-weight: 700; color: var(--orange); }
.why-list b { display: block; color: #fff; font-size: 1.05rem; }
.why-list span { font-size: .92rem; }
.why-list a { color: var(--orange); text-decoration: underline; }
.why-img { position: relative; margin: 0; aspect-ratio: 4 / 5; }
.why-img::before { content: ""; position: absolute; inset: -18px -18px 18px 18px; border: 1.5px solid var(--gold); z-index: 0; }
.why-img img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; counter-reset: s; border-top: 1px solid var(--line); }
.steps li { padding: 40px 36px 0; position: relative; }
.steps li + li { border-inline-start: 1px solid var(--line); }
.steps li::before { counter-increment: s; content: counter(s); display: grid; place-items: center; width: 54px; height: 54px; border-radius: 50%; border: 1.5px solid var(--orange); color: var(--orange); font-family: var(--geo); font-weight: 700; font-size: 1.2rem; margin-bottom: 20px; }
.steps h3 { font-size: 1.2rem; }
.steps p { color: var(--mute); margin: 0; }

/* ---------- FAQ ---------- */
.faq { display: grid; grid-template-columns: .8fr 1.2fr; gap: 72px; align-items: start; }
.faq h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.faq > div:first-child p { color: var(--mute); }
.qa details { border-bottom: 1px solid #dcdad3; }
.qa details:first-child { border-top: 1px solid #dcdad3; }
.qa summary { list-style: none; cursor: pointer; padding: 22px 0; font-weight: 700; font-size: 1.05rem; display: flex; justify-content: space-between; gap: 20px; color: var(--dark); }
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after { content: "+"; font-family: var(--geo); font-size: 1.4rem; line-height: 1; color: var(--orange); transition: transform .2s; flex-shrink: 0; }
.qa details[open] summary::after { transform: rotate(45deg); }
.qa details p { color: var(--mute); padding-bottom: 22px; margin: 0; }

/* ---------- Band CTA ---------- */
.band { position: relative; isolation: isolate; color: #fff; text-align: center; padding: 120px 0; overflow: hidden; background: var(--dark); }
.band-bg { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.band::before { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(0,12,23,.72); }
.band h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 3rem); }
.band p { color: #d6dae0; margin: 0; }
.band .acts { justify-content: center; }

/* ---------- Footer ---------- */
.ftr { background: var(--dark); color: #9ea3ab; padding: 80px 0 26px; font-size: .95rem; }
.ftr-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 44px; }
.ftr-brand p { margin-top: 22px; max-width: 340px; }
.ftr h4 { color: #fff; font-size: .95rem; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.1); }
.ftr li { margin-bottom: 10px; }
.ftr a:hover { color: var(--orange); }
.ftr-contact li, .ftr-contact a { display: flex; align-items: center; gap: 8px; }
.ftr-contact .ic { color: var(--orange); }
.ftr-bot { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-top: 56px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08); font-size: .85rem; }
.ftr-bot p { margin: 0; }
.ftr-bot a { text-decoration: underline; }
.ftr-bot nav { display: flex; gap: 18px; }
.ftr-bot nav a { text-decoration: none; }
.dock { display: none; }

/* ---------- Consent & lightbox ---------- */
.consent { position: fixed; z-index: 70; bottom: 18px; inset-inline-start: 18px; max-width: 440px; background: var(--paper); border-top: 3px solid var(--orange); box-shadow: 0 20px 50px -12px rgba(0,12,23,.35); padding: 18px 20px; font-size: .9rem; }
.consent p { margin: 0 0 12px; color: var(--mute); }
.consent a { color: var(--orange-d); text-decoration: underline; }
.consent div { display: flex; gap: 8px; }
.lb { position: fixed; inset: 0; z-index: 100; background: rgba(0,12,23,.96); display: flex; align-items: center; justify-content: center; padding: 60px 70px; }
.lb img { max-width: 100%; max-height: 100%; object-fit: contain; }
.lb button { position: absolute; width: 48px; height: 48px; border-radius: 50%; border: 0; background: rgba(255,255,255,.12); color: #fff; display: grid; place-items: center; }
.lb .ic { width: 24px; height: 24px; }
.lb-x { top: 16px; left: 16px; }
.lb-p { right: 16px; top: 50%; transform: translateY(-50%); }
.lb-n { left: 16px; top: 50%; transform: translateY(-50%); }

/* ================= Project page ================= */
.pj { padding: 28px 0 0; background: linear-gradient(180deg, var(--soft) 0 78%, var(--paper) 78%); }
.crumb { display: flex; flex-wrap: wrap; gap: 8px; font-size: .85rem; color: var(--mute); margin-bottom: 36px; }
.crumb a:hover { color: var(--orange-d); }
.crumb span::before { content: "/"; margin-inline-end: 8px; color: #c3c3bd; }
.pj-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 64px; align-items: center; }
.tag { display: inline-block; font-size: .78rem; font-weight: 700; color: #fff; background: var(--orange); padding: 4px 12px; margin-bottom: 18px; }
.pj h1 { font-family: var(--serif); font-weight: 500; font-size: clamp(2.5rem, 5.4vw, 4.2rem); line-height: 1.05; text-align: right; margin-bottom: 10px; }
.pj-sub { display: block; font-size: 1.08rem; color: var(--char); font-weight: 500; margin-bottom: 14px; }
.pj-loc { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: var(--dark); margin-bottom: 16px; }
.pj-loc .ic { color: var(--orange); }
.pj-txt p { color: var(--mute); font-size: 1.06rem; }
.pj-media { position: relative; aspect-ratio: 5 / 4; }
.pj-media::before { content: ""; position: absolute; inset: 22px -22px -22px 22px; background: var(--orange); z-index: 0; }
.pj-media img, .pj-media .ph { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; }
.pj-facts { display: grid; grid-template-columns: repeat(4, 1fr); margin: 64px 0 0; background: var(--dark); color: #fff; }
.pj-facts div { display: flex; flex-direction: column; padding: 26px 30px; }
.pj-facts div + div { border-inline-start: 1px solid rgba(255,255,255,.1); }
.pj-facts dd { margin: 0; font-family: var(--geo); font-weight: 700; font-size: 1.9rem; line-height: 1.1; color: var(--orange); }
.pj-facts dt { font-size: .88rem; color: #aab0b8; }

.subnav { position: sticky; top: 76px; z-index: 40; background: var(--paper); border-bottom: 1px solid var(--line); }
.subnav-in { display: flex; gap: 6px; overflow-x: auto; scrollbar-width: none; }
.subnav-in::-webkit-scrollbar { display: none; }
.subnav a { padding: 16px 14px; font-weight: 700; font-size: .93rem; color: var(--mute); white-space: nowrap; border-bottom: 2px solid transparent; }
.subnav a:hover, .subnav a.on { color: var(--dark); border-color: var(--orange); }

.psec { padding: 88px 0; scroll-margin-top: 140px; }
.split { display: grid; grid-template-columns: 1.3fr 1fr; gap: 64px; align-items: start; }
.split p, .lead { color: var(--mute); font-size: 1.06rem; }
.loc-card, .loc-list { background: var(--dark); color: #c5cad1; padding: 32px; }
.loc-card h3, .loc-list h3 { color: #fff; font-size: 1.05rem; display: flex; align-items: center; gap: 8px; }
.loc-card h3 .ic, .loc-list h3 .ic { color: var(--orange); }
.loc-card li, .loc-list li { display: flex; gap: 12px; align-items: center; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.08); font-size: .95rem; }
.loc-card li:last-child, .loc-list li:last-child { border: 0; }
.loc-card li::before, .loc-list li::before { content: ""; width: 6px; height: 6px; background: var(--orange); flex-shrink: 0; transform: rotate(45deg); }
.loc-list .b { margin-top: 16px; }

.phases { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 0; counter-reset: ph; background: var(--paper); border: 1px solid var(--line); }
.phases li { padding: 34px 30px; border-inline-start: 1px solid var(--line); }
.phases li:first-child { border-inline-start: 0; }
.phases li::before { counter-increment: ph; content: "0" counter(ph); display: block; font-family: var(--geo); font-weight: 700; font-size: 2rem; line-height: 1; color: var(--orange); margin-bottom: 18px; }
.phases h3 { font-family: var(--serif); font-weight: 500; font-size: 1.25rem; text-align: right; }
.phases p { margin: 0; color: var(--mute); font-size: .95rem; }

.ulist { border-top: 2px solid var(--dark); }
.ulist li { display: grid; grid-template-columns: 240px 1fr auto; gap: 28px; align-items: center; padding: 24px 0; border-bottom: 1px solid var(--line); }
.ulist h3 { margin: 0; font-size: 1.15rem; }
.ulist p { margin: 0; color: var(--mute); }

.amen { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.amen li { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; text-align: center; padding: 28px 14px; background: var(--paper); font-weight: 500; font-size: .95rem; }
.amen .ic { width: 26px; height: 26px; color: var(--orange); }

.gal { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 10px; }
.gal button { border: 0; padding: 0; cursor: zoom-in; }
.gal button:first-child { grid-column: span 2; grid-row: span 2; }

.pay-band { background: var(--dark); color: #b9bec6; padding: 72px 0; scroll-margin-top: 140px; }
.pay { display: grid; grid-template-columns: 1.3fr 1fr .8fr; gap: 48px; align-items: center; }
.pay h2 { color: #fff; font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
.pay-band .note { color: #9ea3ab; }
.pay-big { display: flex; gap: 36px; }
.pay-big div { display: flex; flex-direction: column; }
.pay-big b { font-family: var(--geo); font-weight: 700; font-size: 3.2rem; line-height: 1; color: var(--orange); }
.pay-big span { font-size: .9rem; margin-top: 8px; }
.pay-acts { display: grid; gap: 10px; }

.others { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.other { display: flex; flex-direction: column; }
.other .media { aspect-ratio: 4 / 3; }
.other .media img { transition: transform .5s; }
.other:hover .media img { transform: scale(1.05); }
.other-b { padding: 16px 0 0; display: flex; flex-direction: column; }
.other-b strong { font-family: var(--serif); font-weight: 500; font-size: 1.2rem; color: var(--dark); align-self: flex-start; }
.other-b span { font-size: .88rem; color: var(--mute); }

/* ================= Static & legal ================= */
.phead { background: var(--soft); padding: 72px 0 60px; border-bottom: 1px solid var(--line); }
.phead h1 { font-size: clamp(2rem, 4vw, 3rem); }
.phead p { color: var(--mute); max-width: 720px; margin: 0; font-size: 1.06rem; }
.phead-date { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: .85rem; color: var(--mute); }
.doc { display: grid; grid-template-columns: 250px 1fr; gap: 64px; padding: 64px 0 104px; align-items: start; }
.doc-toc { position: sticky; top: 100px; border-inline-start: 2px solid var(--orange); padding-inline-start: 18px; font-size: .92rem; }
.doc-toc b { display: block; margin-bottom: 10px; color: var(--dark); }
.doc-toc ol { list-style: decimal; padding-inline-start: 18px; color: var(--mute); }
.doc-toc li { margin-bottom: 6px; }
.doc-toc a:hover { color: var(--orange-d); }
.doc-body { max-width: 800px; }
.doc-body h2 { font-size: 1.35rem; margin-top: 40px; scroll-margin-top: 110px; }
.doc-body h3 { font-size: 1.05rem; margin-top: 22px; }
.doc-body p, .doc-body li { color: #464a50; }
.doc-body ul { list-style: disc; padding-inline-start: 22px; margin-bottom: 1em; }
.doc-body li { margin-bottom: 6px; }
.doc-body a { color: var(--orange-d); text-decoration: underline; }
.callout { display: flex; gap: 14px; align-items: flex-start; background: #fff5f0; border-inline-start: 3px solid var(--orange); padding: 20px 22px; margin-bottom: 32px; }
.callout .ic { width: 26px; height: 26px; color: var(--orange-d); }
.callout p { margin: 0; color: var(--ink); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.card { background: var(--paper); padding: 34px; display: flex; flex-direction: column; gap: 6px; }
.card > .ic { width: 40px; height: 40px; color: var(--orange); margin-bottom: 12px; }
.card h3 { font-size: 1.15rem; margin: 0; }
.card p { color: var(--mute); margin: 0 0 16px; flex: 1; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chips a { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; background: var(--paper); border: 1px solid var(--line); font-weight: 700; }
.chips a:hover { border-color: var(--orange); color: var(--orange-d); }

/* ================= Responsive ================= */
@media (max-width: 1480px) {
  .hdr-tel { display: none; }
}

@media (max-width: 1280px) {
  .nav > a:not(.b) { padding: 8px 7px; font-size: .88rem; }
  .logo-sub small { display: none; }
}

@media (max-width: 1080px) {
  .sec { padding: 80px 0; }
  .burger { display: inline-flex; }
  .hdr-cta { display: none; }
  .hdr-tel { display: inline-flex; }
  .logo-sub small { display: block; }
  .nav { position: absolute; top: 100%; inset-inline: -24px; flex-direction: column; align-items: stretch; gap: 0; background: var(--paper); padding: 8px 24px 24px; border-top: 1px solid var(--line); box-shadow: 0 24px 40px -24px rgba(0,12,23,.35); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: .2s; max-height: calc(100vh - 76px); overflow-y: auto; }
  .nav-open .nav { opacity: 1; visibility: visible; transform: none; }
  .nav > a:not(.b) { padding: 14px 4px; font-size: 1rem; border-bottom: 1px solid var(--line); }
  .nav > a:not(.b)::after { display: none; }
  .nav > a.on { color: var(--orange-d); }
  .nav-cta { display: inline-flex; margin-top: 16px; }

  .intro-grid, .why, .faq, .split, .pj-grid { grid-template-columns: 1fr; gap: 44px; }
  .hh-tabs-in { grid-template-columns: repeat(5, minmax(180px, 1fr)); overflow-x: auto; scrollbar-width: none; }
  .hh-tabs-in::-webkit-scrollbar { display: none; }
  .bento { grid-template-columns: 1fr 1fr; grid-auto-rows: 260px; }
  .tile-1 { grid-column: span 2; grid-row: span 1; }
  .tile-2, .tile-3, .tile-4, .tile-5 { grid-column: span 1; grid-row: span 1; }
  .tile-1 .tile-body strong { font-size: 2rem; }
  .why-img { max-width: 520px; aspect-ratio: 4 / 3; }
  .pay { grid-template-columns: 1fr 1fr; }
  .pay > div:first-child { grid-column: 1 / -1; }
  .pj { background: var(--soft); }
  .pj-media { margin-inline-end: 22px; }
  .pj-facts { grid-template-columns: 1fr 1fr; }
  .pj-facts div:nth-child(3) { border-inline-start: 0; }
  .pj-facts div:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.1); }
  .amen { grid-template-columns: repeat(3, 1fr); }
  .others { grid-template-columns: 1fr 1fr; }
  .ulist li { grid-template-columns: 1fr auto; }
  .ulist p { grid-column: 1 / -1; grid-row: 2; }
  .ftr-top { grid-template-columns: 1fr 1fr; }
  .doc { grid-template-columns: 1fr; gap: 24px; padding-top: 36px; }
  .doc-toc { position: static; }
  .cards { grid-template-columns: 1fr 1fr; }
  .gal { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 180px; }
}

@media (max-width: 640px) {
  :root { --wrap: calc(100% - 32px); }
  body { padding-bottom: 70px; font-size: 16px; }
  .hdr-in { min-height: 66px; gap: 12px; }
  .hdr-tel { display: none; }
  .logo-word { font-size: 1.6rem; }
  .logo-sub small { display: none; }
  .subnav { top: 66px; }
  .nav { inset-inline: -16px; }
  .sec { padding: 64px 0; }
  .hh { min-height: min(calc(100svh - 66px), 760px); }
  .hh-in { padding: 56px 0 40px; }
  .hh .acts .b { flex: 1; }
  .hh-tabs a { padding: 16px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stats dd { font-size: 1.9rem; }
  .bento { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .tile-1 { grid-column: span 1; }
  .why-list { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .steps li { padding: 28px 0 0; }
  .steps li + li { border-inline-start: 0; }
  .pj-facts div { padding: 18px; }
  .pj-facts dd { font-size: 1.5rem; }
  .psec { padding: 60px 0; }
  .amen { grid-template-columns: 1fr 1fr; }
  .gal { grid-template-columns: 1fr 1fr; grid-auto-rows: 140px; }
  .pay { grid-template-columns: 1fr; gap: 28px; }
  .pay-big b { font-size: 2.6rem; }
  .others { grid-template-columns: 1fr 1fr; gap: 12px; }
  .cards { grid-template-columns: 1fr; }
  .ftr-top { grid-template-columns: 1fr; }
  .ftr-bot { flex-direction: column; }
  .band { padding: 80px 0; }
  .band .acts .b { flex: 1; }
  .lb { padding: 60px 12px; }
  .lb-p, .lb-n { top: auto !important; bottom: 16px; transform: none !important; }
  .dock { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; position: fixed; z-index: 60; inset-inline: 0; bottom: 0; padding: 8px 12px calc(8px + env(safe-area-inset-bottom)); background: var(--paper); border-top: 1px solid var(--line); }
  .dock a { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px; font-weight: 800; color: #fff; }
  .dock-call { background: var(--orange); }
  .dock-wa { background: var(--wa); }
  .consent { inset-inline: 10px; bottom: 80px; max-width: none; }
  .consent .b { flex: 1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; scroll-behavior: auto !important; }
}
