:root {
  --ink: #071a2b;
  --ink-soft: #17344d;
  --navy: #0a2942;
  --blue: #185b87;
  --orange: #cf4d0d;
  --orange-bright: #ff8a3d;
  --paper: #f7f9fb;
  --paper-warm: #e7edf2;
  --white: #fff;
  --muted: #5c6b78;
  --line: rgba(7, 26, 43, 0.15);
  --toodix-blue: #0a2748;
  --toodix-sand: #c9a470;
  --shadow: 0 24px 64px rgba(4, 20, 32, 0.17);
  --radius: 18px;
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.shell { width: var(--shell); margin-inline: auto; }
.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: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-140%);
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 6px;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease;
}
.site-header.is-scrolled {
  background: rgba(7, 25, 38, 0.96);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
}
.header-inner { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 13px; text-decoration: none; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  aspect-ratio: 1;
  border: 1px solid var(--orange-bright);
  border-radius: 50%;
  color: var(--orange-bright);
  background: rgba(7, 26, 43, 0.55);
  font: 700 20px/1 Georgia, serif;
}
.brand strong, .brand small { display: block; }
.brand strong { font: 700 18px/1.1 Georgia, "Times New Roman", serif; letter-spacing: 0.01em; }
.brand small { margin-top: 5px; color: rgba(255, 255, 255, 0.72); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a { color: rgba(255, 255, 255, 0.82); font-size: 13px; font-weight: 650; letter-spacing: 0.035em; text-decoration: none; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--white); }
.site-nav .nav-cta { padding: 11px 16px; border: 1px solid rgba(255, 255, 255, 0.48); border-radius: 999px; color: var(--white); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 50%; background: rgba(255, 255, 255, 0.1); }
.menu-toggle span:not(.sr-only) { display: block; width: 20px; height: 2px; margin: 4px auto; background: var(--white); }

.hero { position: relative; min-height: 870px; color: var(--white); background: var(--ink); overflow: hidden; }
.hero-image { position: absolute; inset: 0; height: 100%; object-fit: cover; object-position: 62% center; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5, 21, 33, 0.97) 0%, rgba(5, 21, 33, 0.83) 37%, rgba(5, 21, 33, 0.2) 72%), linear-gradient(0deg, rgba(4, 18, 29, 0.7), transparent 42%); }
.hero-inner { position: relative; z-index: 2; min-height: 750px; padding-top: 190px; padding-bottom: 135px; }
.eyebrow { margin: 0 0 20px; color: #b83b00; font-size: 12px; font-weight: 800; letter-spacing: 0.17em; text-transform: uppercase; }
.eyebrow.light { color: var(--orange-bright); }
.hero h1, .section h2, .mobile-band h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 500; letter-spacing: -0.035em; line-height: 1.02; }
.hero h1 { max-width: 760px; margin: 0; font-size: clamp(54px, 7.1vw, 94px); }
.hero h1 span { display: block; color: var(--orange-bright); }
.hero-copy { max-width: 640px; margin: 30px 0 0; color: rgba(255, 255, 255, 0.8); font-size: clamp(18px, 2vw, 22px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; padding: 12px 20px; border: 1px solid transparent; border-radius: 999px; font-size: 13px; font-weight: 800; letter-spacing: 0.04em; text-decoration: none; }
.button-primary { background: var(--orange); color: var(--white); }
.button-primary:hover, .button-primary:focus-visible { background: #e55c13; }
.button-ghost { border-color: rgba(255, 255, 255, 0.42); color: var(--white); background: rgba(255, 255, 255, 0.04); }
.button-ghost:hover, .button-ghost:focus-visible { background: rgba(255, 255, 255, 0.12); }
.button-dark { margin-top: 24px; background: var(--ink); color: var(--white); }
.rate-card { position: absolute; right: 0; bottom: 94px; width: 250px; padding: 24px; border-left: 3px solid var(--orange); background: rgba(7, 26, 43, 0.9); backdrop-filter: blur(10px); }
.rate-card > span { display: block; color: rgba(255, 255, 255, 0.66); font-size: 11px; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; }
.rate-card strong { display: block; margin: 6px 0; font: 500 48px/1 Georgia, serif; color: var(--orange-bright); }
.rate-card strong small { font: 700 15px/1 Inter, sans-serif; color: var(--white); }
.rate-card p { margin: 0; color: rgba(255, 255, 255, 0.62); font-size: 12px; }
.hero-rail { position: absolute; z-index: 3; inset: auto 0 0; border-top: 1px solid rgba(255, 255, 255, 0.15); background: rgba(5, 21, 33, 0.9); }
.hero-rail::before {
  content: "";
  position: absolute;
  inset: -10px 0 auto;
  height: 10px;
  background: conic-gradient(from 90deg, var(--navy) 25%, var(--white) 0 50%, var(--navy) 0 75%, var(--white) 0) 0 0 / 20px 20px;
  opacity: 0.9;
}
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-grid div { padding: 26px 30px; border-right: 1px solid rgba(255, 255, 255, 0.12); }
.trust-grid div:first-child { padding-left: 0; }
.trust-grid div:last-child { border-right: 0; }
.trust-grid strong, .trust-grid span { display: block; }
.trust-grid strong { color: var(--white); font-family: Georgia, serif; font-size: 19px; font-weight: 500; }
.trust-grid span { margin-top: 5px; color: rgba(255, 255, 255, 0.6); font-size: 12px; }

.section { padding: 112px 0; }
.split-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr); align-items: center; gap: 90px; }
.section h2, .mobile-band h2 { margin: 0; font-size: clamp(42px, 5vw, 68px); }
.section .lead { margin-top: 28px; font-size: 19px; color: var(--ink-soft); }
.section-copy > p:not(.eyebrow) { max-width: 680px; }
.feature-pair { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-top: 42px; padding-top: 32px; border-top: 1px solid var(--line); }
.feature-pair article > span { color: #b83b00; font-size: 11px; font-weight: 900; letter-spacing: 0.14em; }
.service-card > span { color: var(--orange-bright); font-size: 11px; font-weight: 900; letter-spacing: 0.14em; }
.feature-pair h3 { margin: 10px 0 6px; font: 600 20px/1.2 Georgia, serif; }
.feature-pair p { margin: 0; color: var(--muted); font-size: 14px; }
.framed-image { position: relative; margin: 0; }
.framed-image::before { content: ""; position: absolute; inset: -20px 20px 20px -20px; z-index: -1; border: 1px solid rgba(24, 91, 135, 0.34); }
.framed-image img { aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.framed-image figcaption { position: absolute; right: -18px; bottom: 24px; max-width: 240px; padding: 15px 18px; background: var(--white); box-shadow: 0 14px 30px rgba(4, 20, 32, 0.16); font-size: 12px; font-weight: 750; }

.section-services { color: var(--white); background: var(--ink); }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.5fr); align-items: end; gap: 70px; margin-bottom: 58px; }
.section-heading > p { margin: 0 0 8px; color: rgba(255, 255, 255, 0.58); }
.section-heading.dark > p { color: var(--muted); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255, 255, 255, 0.16); border-left: 1px solid rgba(255, 255, 255, 0.16); }
.service-card { min-height: 255px; padding: 34px; border-right: 1px solid rgba(255, 255, 255, 0.16); border-bottom: 1px solid rgba(255, 255, 255, 0.16); transition: background 180ms ease, transform 180ms ease; }
.service-card:hover { background: rgba(255, 255, 255, 0.055); transform: translateY(-3px); }
.service-card h3 { margin: 24px 0 14px; font: 500 24px/1.15 Georgia, serif; }
.service-card p { margin: 0; color: rgba(255, 255, 255, 0.64); font-size: 14px; }

.mobile-band { padding: 72px 0; color: var(--white); background: linear-gradient(120deg, var(--blue), var(--navy)); }
.mobile-band-inner { display: grid; grid-template-columns: 1.1fr 0.8fr; align-items: center; gap: 100px; }
.mobile-band h2 { max-width: 680px; font-size: clamp(38px, 4.5vw, 58px); }
.mobile-band-inner > div:last-child p { color: rgba(255, 255, 255, 0.78); }
.text-link { display: inline-flex; gap: 12px; align-items: center; margin-top: 12px; font-weight: 800; text-underline-offset: 5px; }
.text-link.light { color: var(--white); }

.section-work { background: var(--white); }
.section-heading.dark h2 { color: var(--ink); }
.gallery-grid { display: grid; grid-template-columns: 1.35fr 0.65fr; grid-template-rows: repeat(2, 340px); gap: 20px; }
.gallery-grid figure { position: relative; margin: 0; overflow: hidden; border-radius: var(--radius); background: var(--ink); }
.gallery-grid .gallery-feature { grid-row: 1 / 3; }
.gallery-grid img { height: 100%; object-fit: cover; transition: transform 500ms ease; }
.gallery-grid figure:hover img { transform: scale(1.025); }
.gallery-grid figcaption { position: absolute; inset: auto 0 0; padding: 42px 30px 26px; color: var(--white); background: linear-gradient(transparent, rgba(3, 17, 27, 0.92)); }
.gallery-grid figcaption span, .gallery-grid figcaption strong { display: block; }
.gallery-grid figcaption span { color: var(--orange-bright); font-size: 10px; font-weight: 850; letter-spacing: 0.16em; text-transform: uppercase; }
.gallery-grid figcaption strong { margin-top: 7px; font: 500 24px/1.2 Georgia, serif; }
.gallery-grid figcaption p { max-width: 480px; margin: 8px 0 0; color: rgba(255, 255, 255, 0.72); font-size: 13px; }

.section-visit { background: var(--paper-warm); }
.visit-grid { display: grid; grid-template-columns: 1.05fr 0.7fr; gap: 100px; align-items: center; }
.location-card { padding: 42px; color: var(--white); background: var(--ink); box-shadow: var(--shadow); }
.location-card > span { color: var(--orange-bright); font-size: 11px; font-weight: 850; letter-spacing: 0.15em; text-transform: uppercase; }
.location-card > strong { display: block; margin: 18px 0 30px; font: 500 32px/1.25 Georgia, serif; }
.location-card dl { margin: 0; }
.location-card dl div { display: flex; justify-content: space-between; gap: 20px; padding: 14px 0; border-top: 1px solid rgba(255, 255, 255, 0.14); }
.location-card dt { color: rgba(255, 255, 255, 0.55); }
.location-card dd { margin: 0; font-weight: 750; }

.section-contact { color: var(--white); background: linear-gradient(135deg, var(--ink), var(--navy)); }
.contact-grid { display: grid; grid-template-columns: 0.78fr 1.1fr; gap: 90px; align-items: start; }
.contact-copy > p:not(.eyebrow) { color: rgba(255, 255, 255, 0.7); font-size: 18px; }
.contact-list { margin-top: 44px; border-top: 1px solid rgba(255, 255, 255, 0.15); }
.contact-list a, .contact-list div { display: block; padding: 17px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.15); text-decoration: none; }
.contact-list span, .contact-list strong { display: block; }
.contact-list span { color: rgba(255, 255, 255, 0.52); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; }
.contact-list strong { margin-top: 4px; overflow-wrap: anywhere; }
.service-form { padding: 36px; border-radius: var(--radius); background: var(--white); color: var(--ink); box-shadow: var(--shadow); }
.service-form label { display: grid; gap: 7px; margin-bottom: 17px; font-size: 12px; font-weight: 800; letter-spacing: 0.025em; }
.service-form label span { color: #b83b00; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.service-form input, .service-form select, .service-form textarea { width: 100%; border: 1px solid #cbd1d4; border-radius: 8px; background: #fbfbfa; color: var(--ink); padding: 12px 13px; outline: none; }
.service-form input:focus, .service-form select:focus, .service-form textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(207, 77, 13, 0.16); }
.service-form textarea { resize: vertical; }
.form-submit { border: 0; }
.form-note { margin: 14px 0 0; color: var(--muted); font-size: 11px; }

.partner-strip { padding: 64px 0; border-top: 6px solid var(--toodix-sand); background: #fff; }
.partner-inner { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 70px; }
.partner-copy { max-width: 620px; }
.partner-label { margin: 0 0 10px; color: var(--toodix-sand); font-size: 11px; font-weight: 850; letter-spacing: 0.16em; text-transform: uppercase; }
.partner-copy h2 { margin: 0; color: var(--toodix-blue); font: 700 clamp(30px, 3.4vw, 45px)/1.08 Arial, sans-serif; letter-spacing: -0.025em; }
.partner-copy > p:last-child { max-width: 580px; margin: 16px 0 0; color: #455564; font-size: 15px; }
.partner-mark { display: grid; place-items: center; min-width: 260px; padding: 18px 0; }
.partner-mark img { width: clamp(260px, 28vw, 360px); height: auto; }

.site-footer { padding: 30px 0; border-top: 3px solid var(--orange); color: rgba(255, 255, 255, 0.7); background: #061521; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer-inner strong, .footer-inner span { display: block; }
.footer-inner strong { color: var(--white); font-family: Georgia, serif; }
.footer-inner span { margin-top: 4px; font-size: 11px; }
.footer-inner p { margin: 0; font-size: 11px; }
.mobile-call { display: none; }

@media (max-width: 900px) {
  :root { --shell: min(100% - 32px, 720px); }
  .header-inner { min-height: 74px; }
  .menu-toggle { display: block; position: relative; z-index: 2; }
  .site-nav { position: fixed; inset: 0; display: grid; align-content: center; justify-items: center; gap: 26px; background: rgba(5, 21, 33, 0.985); opacity: 0; visibility: hidden; transform: translateY(-16px); transition: 180ms ease; }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .site-nav a { font: 500 32px/1 Georgia, serif; }
  .site-nav .nav-cta { margin-top: 12px; font: 800 13px/1 Inter, sans-serif; }
  .hero { min-height: 820px; }
  .hero-image { object-position: 62% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(4, 18, 29, 0.95), rgba(4, 18, 29, 0.5)), linear-gradient(0deg, rgba(4, 18, 29, 0.75), transparent 55%); }
  .hero-inner { min-height: 700px; padding-top: 155px; padding-bottom: 150px; }
  .hero h1 { max-width: 620px; }
  .rate-card { position: static; width: min(100%, 280px); margin-top: 32px; }
  .trust-grid div { padding-inline: 18px; }
  .split-layout, .visit-grid, .contact-grid { grid-template-columns: 1fr; gap: 62px; }
  .split-layout { align-items: start; }
  .framed-image { width: min(100%, 560px); margin-inline: auto; }
  .framed-image img { aspect-ratio: 5 / 4; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .mobile-band-inner { grid-template-columns: 1fr; gap: 28px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 470px 290px; }
  .gallery-grid .gallery-feature { grid-row: auto; grid-column: 1 / 3; }
  .location-card { max-width: 620px; }
  .partner-inner { grid-template-columns: 1fr; gap: 36px; }
  .partner-mark { justify-content: start; }
}

@media (max-width: 620px) {
  :root { --shell: calc(100% - 28px); }
  .brand strong { font-size: 16px; }
  .brand small { font-size: 9px; }
  .brand-mark { width: 37px; }
  .hero { min-height: 900px; }
  .hero-image { object-position: 62% center; }
  .hero-shade { background: linear-gradient(180deg, rgba(4, 18, 29, 0.55), rgba(4, 18, 29, 0.91) 58%, rgba(4, 18, 29, 0.98)); }
  .hero-inner { min-height: 760px; padding-top: 135px; padding-bottom: 180px; }
  .hero h1 { font-size: clamp(46px, 15vw, 66px); }
  .hero-copy { font-size: 17px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .rate-card { width: 100%; }
  .hero-rail { background: rgba(5, 21, 33, 0.95); }
  .trust-grid { grid-template-columns: 1fr; padding-block: 8px; }
  .trust-grid div { display: grid; grid-template-columns: 0.8fr 1.2fr; align-items: center; padding: 10px 0; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.09); }
  .trust-grid div:last-child { border-bottom: 0; }
  .trust-grid span { margin: 0; }
  .section { padding: 82px 0; }
  .section h2, .mobile-band h2 { font-size: clamp(38px, 12vw, 52px); }
  .feature-pair, .service-grid, .form-row { grid-template-columns: 1fr; }
  .feature-pair { gap: 24px; }
  .framed-image::before, .framed-image figcaption { display: none; }
  .framed-image img { aspect-ratio: 4 / 5; }
  .service-card { min-height: auto; }
  .mobile-band { padding: 62px 0; }
  .gallery-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(3, 360px); }
  .gallery-grid .gallery-feature { grid-column: auto; }
  .partner-strip { padding: 48px 0; }
  .partner-mark img { width: 260px; }
  .location-card, .service-form { padding: 28px 22px; }
  .contact-grid { gap: 48px; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
  .mobile-call { position: fixed; z-index: 90; right: 16px; bottom: 16px; display: inline-flex; align-items: center; justify-content: center; min-width: 118px; min-height: 46px; padding: 10px 18px; border-radius: 999px; background: var(--orange); color: var(--white); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28); font-size: 13px; font-weight: 850; text-decoration: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}
