/* SkyLark Marketing — shared design system (tokens, nav, footer, components) */
:root {
  --bg: #faf9f5; --bg-2: #f4f0e6; --ink: #17140d;
  --ink-80: rgba(23,20,13,0.8); --ink-60: rgba(23,20,13,0.6); --ink-40: rgba(23,20,13,0.4);
  --line: rgba(23,20,13,0.1); --line-gold: rgba(177,138,51,0.28);
  --gold: #b18a33; --gold-deep: #7a5f1a; --gold-bright: #d4af5e; --champagne: #ecdfc0;
  --serif: "Marcellus", Georgia, serif; --sans: "Manrope", system-ui, sans-serif;
  --glass: rgba(255,255,255,0.62); --r-lg: 20px; --r-md: 14px;
  --shadow-soft: 0 24px 60px -24px rgba(23,20,13,0.18);
  --gold-grad: linear-gradient(105deg, #8a6a1f 0%, #c9a24b 38%, #f0dfae 50%, #c9a24b 62%, #8a6a1f 100%);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 96px; }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: var(--sans);
  font-size: 16px; line-height: 1.65; text-wrap: pretty; overflow-x: clip; -webkit-font-smoothing: antialiased; }
a { color: var(--gold-deep); } a:hover { color: var(--gold); }
img { display: block; max-width: 100%; }
::selection { background: rgba(201,162,75,0.3); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 72px); }
.serif { font-family: var(--serif); font-weight: 400; }
.gold-text { background: var(--gold-grad); background-size: 220% 100%; -webkit-background-clip: text;
  background-clip: text; color: transparent; animation: sheen 8s ease-in-out infinite; }
@keyframes sheen { 0%,100% { background-position: 0% 0; } 50% { background-position: 100% 0; } }
.micro { font-size: 11.5px; font-weight: 700; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold-deep); }
.micro .dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-grad); margin-right: 12px; vertical-align: 1.5px; }
html.js [data-reveal] { opacity: 0; transform: translateY(30px); }
html.js [data-reveal].in { opacity: 1; transform: none;
  transition: opacity 0.9s cubic-bezier(.22,.6,.2,1), transform 0.9s cubic-bezier(.22,.6,.2,1);
  transition-delay: var(--rd, 0ms); }
@media (prefers-reduced-motion: reduce) { html.js [data-reveal] { opacity: 1; transform: none; transition: none; } }
#progress { position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: var(--gold-grad); background-size: 200% 100%; z-index: 200; }
.skip { position: absolute; left: -9999px; top: 8px; z-index: 300; background: var(--ink); color: #fffdf6;
  padding: 10px 18px; border-radius: 999px; font-size: 13px; font-weight: 700; }
.skip:focus { left: 8px; }

/* buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-size: 13.5px; font-weight: 700; letter-spacing: 0.06em;
  padding: 15px 30px; border-radius: 999px; text-decoration: none; cursor: pointer;
  border: 0; white-space: nowrap; position: relative; overflow: hidden;
  transition: transform 0.35s cubic-bezier(.22,.6,.2,1), box-shadow 0.35s ease, background 0.35s ease, color 0.3s ease; }
.btn-gold { background: linear-gradient(105deg, #a07a24, #cfa64c 50%, #a07a24); background-size: 200% 100%;
  color: #fffdf6; box-shadow: 0 14px 34px -14px rgba(158,122,38,0.65), inset 0 1px 0 rgba(255,255,255,0.35); }
.btn-gold:hover { background-position: 100% 0; transform: translateY(-2px); color: #fffdf6;
  box-shadow: 0 20px 44px -14px rgba(158,122,38,0.75), inset 0 1px 0 rgba(255,255,255,0.35); }
.btn-line { border: 1px solid var(--line-gold); color: var(--ink); background: rgba(255,255,255,0.5); }
.btn-line:hover { border-color: var(--gold); color: var(--gold-deep); transform: translateY(-2px);
  box-shadow: 0 14px 30px -18px rgba(23,20,13,0.3); }

/* ── mega nav ── */
.mnav { position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; gap: clamp(16px, 2.2vw, 32px);
  padding: 14px max(clamp(20px,5vw,72px), calc((100% - 1280px)/2 + clamp(20px,5vw,72px)));
  background: transparent; transition: background 0.5s ease, box-shadow 0.5s ease, backdrop-filter 0.5s ease; }
.mnav.scrolled, .mnav:hover, .mnav:focus-within { background: var(--glass); backdrop-filter: blur(22px) saturate(1.5);
  -webkit-backdrop-filter: blur(22px) saturate(1.5); box-shadow: 0 1px 0 var(--line-gold), 0 12px 40px -20px rgba(23,20,13,0.25); }
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; text-decoration: none; color: inherit; }
.brand img { height: 46px; width: auto; }
.brand .b-name { font-family: var(--serif); font-size: 19px; letter-spacing: 0.04em; line-height: 1.1; white-space: nowrap; }
.brand .b-sub { display: block; font-family: var(--sans); font-size: 9px; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-deep); margin-top: 3px; }
.mn-links { display: flex; gap: clamp(14px, 2vw, 30px); align-items: center; }
.mn-top { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-60); text-decoration: none;
  position: relative; padding: 10px 0; transition: color 0.3s ease; white-space: nowrap; }
.mn-top::after { content: ""; position: absolute; left: 0; bottom: 4px; height: 1.5px; width: 100%;
  background: var(--gold-grad); transform: scaleX(0); transform-origin: left; transition: transform 0.4s cubic-bezier(.22,.6,.2,1); }
.mn-top:hover, .mn-item:hover .mn-top { color: var(--ink); }
.mn-top:hover::after, .mn-item:hover .mn-top::after { transform: scaleX(1); }
.mn-ch { font-size: 10px; color: var(--gold-deep); transition: transform 0.3s ease; }
.mn-item:hover .mn-ch, .mn-item.open .mn-ch { transform: rotate(180deg); }
.mn-item { position: static; }
.mega { position: absolute; left: 0; right: 0; top: 100%; z-index: 99;
  background: rgba(252,251,247,0.94); backdrop-filter: blur(26px) saturate(1.5); -webkit-backdrop-filter: blur(26px) saturate(1.5);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line-gold);
  box-shadow: 0 40px 80px -40px rgba(23,20,13,0.35);
  opacity: 0; visibility: hidden; transform: translateY(-10px); pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(.22,.6,.2,1), visibility 0.35s; }
.mn-item:hover > .mega, .mn-item:focus-within > .mega, .mn-item.open > .mega {
  opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
.mega-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 3fr) minmax(0, 3fr);
  gap: clamp(24px, 4vw, 64px); padding-top: 30px; padding-bottom: 34px; }
.mega-feat { display: block; text-decoration: none; color: #f3ecd9; background: #14110a;
  border-radius: var(--r-md); padding: 24px 26px; position: relative; overflow: hidden;
  transition: transform 0.35s cubic-bezier(.22,.6,.2,1), box-shadow 0.35s ease; }
.mega-feat::before { content: ""; position: absolute; inset: 0;
  background: radial-gradient(70% 60% at 90% 0%, rgba(212,175,94,0.22), transparent 60%); }
.mega-feat:hover { transform: translateY(-3px); box-shadow: 0 24px 50px -24px rgba(23,20,13,0.5); color: #f3ecd9; }
.mega-feat > span { position: relative; display: block; }
.mf-title { font-family: var(--serif); font-size: 24px; line-height: 1.1; margin-top: 12px; }
.mf-sub { font-size: 13px; line-height: 1.6; color: rgba(243,236,217,0.66); font-weight: 500; margin-top: 8px; }
.mf-cta { font-size: 12px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-bright); margin-top: 16px; }
.mega-head { font-size: 10.5px; font-weight: 800; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ink-40); margin: 6px 0 10px; }
.mega-col a { display: block; padding: 8px 0; font-size: 14.5px; font-weight: 600; color: var(--ink-60);
  text-decoration: none; transition: color 0.25s ease, transform 0.25s ease; }
.mega-col a:hover { color: var(--gold-deep); transform: translateX(4px); }
.mn-burger { display: none; place-items: center; gap: 5px; width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--line-gold); background: rgba(255,255,255,0.6); cursor: pointer; padding: 0; }
.mn-burger span { display: block; width: 18px; height: 2px; background: var(--ink); margin: 2px auto; border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease; }
.mn-burger.x span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.mn-burger.x span:nth-child(2) { opacity: 0; }
.mn-burger.x span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mob-menu { display: none; position: fixed; inset: 0; z-index: 95; padding: 110px clamp(24px,6vw,48px) 40px;
  background: rgba(250,249,245,0.97); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); overflow-y: auto; }
.mob-menu.open { display: block; }
.mob-menu nav > a, .mob-menu summary { display: block; font-family: var(--serif); font-size: 26px; color: var(--ink);
  text-decoration: none; padding: 14px 0; border-bottom: 1px solid var(--line); cursor: pointer; list-style: none; }
.mob-menu summary::-webkit-details-marker { display: none; }
.mob-menu details a { display: block; font-size: 16px; font-weight: 600; color: var(--ink-60);
  text-decoration: none; padding: 10px 0 10px 18px; }
.mob-menu .btn { margin-top: 22px; }
body.menu-lock { overflow: hidden; }
@media (max-width: 1160px) { .mn-links, .mn-cta { display: none; } .mn-burger { display: grid; } }

/* ── shared page pieces ── */
.phero { padding: 160px 0 clamp(36px, 5vw, 56px); }
.phero h1 { font-family: var(--serif); font-size: clamp(42px, 5.6vw, 84px); line-height: 1.06; margin: 16px 0 0; font-weight: 400; }
.phero .lede { max-width: 62ch; font-size: 16.5px; line-height: 1.75; color: var(--ink-60); font-weight: 500; margin: 18px 0 0; }
.crumbs { font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-40); margin-bottom: 18px; }
.crumbs a { color: var(--gold-deep); text-decoration: none; } .crumbs a:hover { color: var(--gold); }
.crumbs .sep { margin: 0 8px; opacity: 0.5; }
.sec-title { font-family: var(--serif); font-size: clamp(34px, 4.2vw, 60px); line-height: 1.06; margin: 18px 0 0; font-weight: 400; }
.sec-sub { font-size: 15.5px; color: var(--ink-60); font-weight: 500; max-width: 60ch; margin: 16px 0 0; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { font: inherit; font-size: 13px; font-weight: 700; padding: 11px 18px; border-radius: 999px;
  border: 1px solid var(--line); background: rgba(255,255,255,0.6); cursor: pointer;
  transition: all 0.3s cubic-bezier(.22,.6,.2,1); text-decoration: none; color: var(--ink); }
.chip:hover { border-color: var(--gold); color: var(--gold-deep); transform: translateY(-2px); }
.chip.active { background: linear-gradient(105deg, #a07a24, #cfa64c 50%, #a07a24); background-size: 200% 100%;
  color: #fffdf6; border-color: transparent; box-shadow: 0 10px 24px -10px rgba(158,122,38,0.6); }
.fact { padding: 10px 18px; border-radius: 999px; border: 1px solid rgba(240,223,174,0.35);
  background: rgba(20,16,8,0.4); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #f0dfae; }

/* cards — projects */
.pcard { display: block; text-decoration: none; color: inherit;
  transition: transform 0.45s cubic-bezier(.22,.6,.2,1); }
.pcard:hover { transform: translateY(-6px); }
.pcard .ph { position: relative; aspect-ratio: 4 / 3.2; overflow: hidden; border-radius: var(--r-lg);
  background: var(--bg-2); box-shadow: var(--shadow-soft); }
.pcard .ph image-slot, .pcard .ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s cubic-bezier(.19,.6,.22,1); }
.pcard:hover .ph image-slot, .pcard:hover .ph img { transform: scale(1.06); }
.pcard .badge { position: absolute; top: 16px; left: 16px; z-index: 2; padding: 8px 16px;
  border-radius: 999px; background: rgba(20,16,8,0.5); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(240,223,174,0.3); color: #f0dfae;
  font-size: 10px; font-weight: 800; letter-spacing: 0.24em; text-transform: uppercase; }
.pcard .price-chip { position: absolute; bottom: 16px; left: 16px; z-index: 2; padding: 9px 16px;
  border-radius: 999px; background: rgba(255,253,246,0.82); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  font-size: 12px; font-weight: 800; letter-spacing: 0.04em; color: var(--ink); font-feature-settings: "tnum" 1; }
.pcard .p-body { padding: 18px 8px 0; }
.pcard .p-loc { display: block; font-size: 10.5px; font-weight: 800; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold-deep); }
.pcard .p-title { font-family: var(--serif); font-size: 26px; line-height: 1.1; margin: 8px 0 0; display: inline-block; position: relative; font-weight: 400; }
.pcard .p-title::after { content: ""; position: absolute; left: 0; bottom: -5px; height: 1.5px; width: 100%;
  background: var(--gold-grad); transform: scaleX(0); transform-origin: left; transition: transform 0.5s cubic-bezier(.22,.6,.2,1); }
.pcard:hover .p-title::after { transform: scaleX(1); }
.pcard .p-specs { font-size: 13.5px; line-height: 1.6; color: var(--ink-60); margin: 10px 0 0; font-weight: 500; }

/* cards — blog */
.post-card { display: block; text-decoration: none; color: inherit; transition: transform 0.45s cubic-bezier(.22,.6,.2,1); }
.post-card:hover { transform: translateY(-6px); }
.post-card .ph { position: relative; aspect-ratio: 16 / 10; overflow: hidden; border-radius: var(--r-lg);
  background: var(--bg-2); box-shadow: var(--shadow-soft); }
.post-card .ph image-slot { position: absolute; inset: 0; width: 100%; height: 100%; }
.post-card .pc-meta { display: flex; gap: 14px; align-items: baseline; margin: 16px 8px 0; }
.post-card .pc-cat { font-size: 10.5px; font-weight: 800; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-deep); }
.post-card .pc-date { font-size: 12px; font-weight: 600; color: var(--ink-40); font-feature-settings: "tnum" 1; }
.post-card .pc-title { font-family: var(--serif); font-size: 24px; line-height: 1.2; margin: 8px 8px 0; font-weight: 400;
  display: inline-block; position: relative; }
.post-card .pc-title::after { content: ""; position: absolute; left: 0; bottom: -5px; height: 1.5px; width: 100%;
  background: var(--gold-grad); transform: scaleX(0); transform-origin: left; transition: transform 0.5s cubic-bezier(.22,.6,.2,1); }
.post-card:hover .pc-title::after { transform: scaleX(1); }
.post-card .pc-ex { font-size: 14px; line-height: 1.65; color: var(--ink-60); font-weight: 500; margin: 10px 8px 0; }

/* FAQ accordion */
.faq details { border-bottom: 1px solid var(--line); }
.faq details:first-of-type { border-top: 1px solid var(--line); }
.faq summary { display: grid; grid-template-columns: 1fr auto; align-items: baseline; gap: 20px;
  padding: 22px 4px; cursor: pointer; list-style: none; font-family: var(--serif); font-size: 20px; line-height: 1.3; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--sans); color: var(--gold-deep); font-size: 24px;
  font-weight: 500; line-height: 1; transition: transform 0.3s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .a { padding: 0 4px 24px; max-width: 74ch; color: var(--ink-60); font-size: 15px; line-height: 1.75; font-weight: 500; }
.faq .a a { font-weight: 700; }

/* tables */
.unit-table { width: 100%; border-collapse: collapse; margin-top: 28px; font-feature-settings: "tnum" 1; }
.unit-table th { text-align: left; font-size: 10.5px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-deep); padding: 0 14px 12px 4px; border-bottom: 1px solid var(--line-gold); }
.unit-table td { padding: 16px 14px 16px 4px; border-bottom: 1px solid var(--line); font-size: 14.5px; font-weight: 600; }
.unit-table tr:hover td { background: rgba(255,255,255,0.6); }
.unit-table th:last-child, .unit-table td:last-child { text-align: right; padding-right: 4px; white-space: nowrap; }

/* dark close CTA */
.close { position: relative; overflow: clip; background: #14110a; color: #f3ecd9; border-radius: var(--r-lg) var(--r-lg) 0 0; }
.close::before { content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 50% at 82% 0%, rgba(212,175,94,0.22), transparent 65%),
              radial-gradient(50% 40% at 6% 100%, rgba(177,138,51,0.14), transparent 70%); }
.close .watermark { position: absolute; right: -6%; bottom: -24%; height: 135%; opacity: 0.05; pointer-events: none; filter: grayscale(1) brightness(4); }
.close .wrap { position: relative; padding-top: clamp(72px, 9vw, 110px); padding-bottom: clamp(72px, 9vw, 110px); }
.close .micro { color: var(--gold-bright); }
.close h2, .close h3 { font-family: var(--serif); font-size: clamp(38px, 4.8vw, 72px); line-height: 1.05; margin: 20px 0 0; font-weight: 400; }
.close .cta-row { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 40px; }
.close .btn-line { background: transparent; color: #f0dfae; border-color: rgba(240,223,174,0.35); }
.close .btn-line:hover { border-color: var(--gold-bright); color: #fff; }
.close-grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 56px clamp(40px, 6vw, 110px); align-items: start; }
@media (max-width: 880px) { .close-grid { grid-template-columns: 1fr; } }
.contact-lines { margin-top: 40px; font-size: 14.5px; line-height: 1.9; color: rgba(243,236,217,0.62); font-weight: 500; }
.contact-lines strong { color: #f3ecd9; font-weight: 700; }
.contact-lines a { color: #f0dfae; }
.enq { background: rgba(255,253,246,0.045); border: 1px solid rgba(240,223,174,0.22);
  border-radius: var(--r-lg); padding: clamp(28px, 3vw, 40px);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.enq .e-title { font-size: 11px; font-weight: 800; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold-bright); margin: 0 0 26px; }
.enq .field { margin-bottom: 18px; }
.enq label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(243,236,217,0.55); margin-bottom: 8px; }
.enq .input { width: 100%; font: inherit; font-size: 14.5px; font-weight: 500; color: #f3ecd9;
  background: rgba(255,253,246,0.06); border: 1px solid rgba(240,223,174,0.25);
  border-radius: 12px; padding: 13px 16px; caret-color: var(--gold-bright);
  transition: border-color 0.3s ease, background 0.3s ease; }
.enq .input::placeholder { color: rgba(243,236,217,0.32); }
.enq .input:hover { border-color: rgba(240,223,174,0.5); }
.enq .input:focus { outline: none; border-color: var(--gold-bright); background: rgba(255,253,246,0.09); }
.enq textarea.input { min-height: 96px; resize: vertical; }
.enq .btn-gold { width: 100%; }

/* ── site footer ── */
.sfoot { border-top: 1px solid var(--line-gold); background: #fbf9f3; margin-top: 0; }
.sfoot .wrap { padding-top: clamp(48px, 6vw, 72px); padding-bottom: 28px; }
.sf-grid { display: grid; grid-template-columns: minmax(0, 4fr) repeat(3, minmax(0, 2fr)); gap: 40px clamp(24px, 4vw, 56px); }
.sf-addr { font-size: 14px; line-height: 1.8; color: var(--ink-60); font-weight: 500; margin: 18px 0 0; }
.sf-addr strong { color: var(--ink); font-weight: 700; }
.sf-addr a { text-decoration: none; font-weight: 700; }
.sf-head { font-size: 10.5px; font-weight: 800; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-40); margin: 6px 0 12px; }
.sf-col a { display: block; padding: 7px 0; font-size: 14.5px; font-weight: 600; color: var(--ink-60);
  text-decoration: none; transition: color 0.25s ease; }
.sf-col a:hover { color: var(--gold-deep); }
.sf-legal { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  border-top: 1px solid var(--line); margin-top: 44px; padding-top: 22px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.04em; color: var(--ink-40); }
@media (max-width: 880px) { .sf-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .sf-grid { grid-template-columns: 1fr; } }
