:root {
  --blue: #2959a8;
  --blue-dark: #173b75;
  --green: #07743d;
  --green-dark: #05582f;
  --ink: #11151b;
  --muted: #5d6470;
  --paper: #f4f2ed;
  --white: #ffffff;
  --line: rgba(17, 21, 27, .14);
  --shell: 1180px;
  --radius: 4px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: "Open Sans", Arial, sans-serif; line-height: 1.65; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea { font: inherit; }
.shell { width: min(calc(100% - 40px), var(--shell)); margin-inline: auto; }
.section { padding: 110px 0; }
.skip-link { position: fixed; left: 12px; top: -80px; z-index: 1000; background: #fff; color: #000; padding: 10px 14px; }
.skip-link:focus { top: 12px; }

.site-header { position: fixed; inset: 0 0 auto 0; z-index: 100; transition: background .25s ease, box-shadow .25s ease; }
.site-header.scrolled { background: rgba(255,255,255,.96); box-shadow: 0 1px 0 var(--line); backdrop-filter: blur(12px); }
.nav-wrap { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand img { width: 245px; height: auto; }
.site-header:not(.scrolled) .brand img { filter: brightness(0) invert(1); }
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a { text-decoration: none; font-size: 14px; font-weight: 700; letter-spacing: .04em; }
.site-header:not(.scrolled) .site-nav a { color: #fff; }
.nav-cta { border: 1px solid var(--green); background: var(--green); color: #fff !important; padding: 10px 18px; }
.nav-cta:hover { background: var(--green-dark); border-color: var(--green-dark); }
.menu-toggle { display: none; border: 0; background: transparent; font-weight: 700; }
.site-header:not(.scrolled) .menu-toggle { color: #fff; }

.hero { min-height: 94vh; display: grid; align-items: center; position: relative; color: #fff; overflow: hidden; }
.hero-image, .hero-shade { position: absolute; inset: 0; }
.hero-image { background: url("assets/shop.jpg") center 52% / cover no-repeat; transform: scale(1.02); }
.hero-shade { background: linear-gradient(90deg, rgba(9,20,38,.86) 0%, rgba(9,20,38,.65) 45%, rgba(9,20,38,.16) 80%); }
.hero-content { position: relative; z-index: 2; padding-top: 90px; }
.eyebrow { margin: 0 0 20px; font-family: "Oswald", sans-serif; font-size: 14px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow.blue { color: var(--blue); }
h1, h2, h3 { font-family: "Oswald", sans-serif; margin-top: 0; line-height: 1.03; font-weight: 500; }
h1.eyebrow { line-height: 1.65; }
h2 { margin-bottom: 24px; font-size: clamp(42px, 5vw, 72px); letter-spacing: -.025em; }
h3 { margin-bottom: 14px; font-size: 28px; }
.hero-lead { max-width: 720px; margin: 0; font-size: clamp(18px, 2vw, 23px); line-height: 1.6; color: rgba(255,255,255,.9); }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 38px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 13px 24px; border: 1px solid transparent; border-radius: var(--radius); text-decoration: none; font-weight: 700; cursor: pointer; transition: transform .2s ease, background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-light { background: var(--green); color: #fff; }
.button-light:hover { background: var(--green-dark); }
.button-blue { background: var(--green); color: #fff; }
.button-blue:hover { background: var(--green-dark); }
.text-link { color: var(--green); font-weight: 700; text-underline-offset: 5px; }
.scroll-cue { position: absolute; right: 4vw; bottom: 34px; z-index: 3; color: #fff; font-size: 28px; text-decoration: none; }

.intro { background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.intro-grid h2 { max-width: 560px; }
.intro-copy { font-size: 18px; color: #343a43; }
.intro-copy p:first-child { margin-top: 7px; }
.capability-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 80px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.cap-card { min-height: 310px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.35); }
.cap-num { display: inline-block; margin-bottom: 80px; font-family: "Oswald", sans-serif; color: var(--green); font-size: 14px; letter-spacing: .1em; }
.cap-card p { color: var(--muted); margin-bottom: 0; }

.pressroom { background: var(--blue); color: #fff; border-top: 8px solid var(--green); }
.section-heading { display: grid; grid-template-columns: 1.4fr .6fr; gap: 80px; align-items: end; margin-bottom: 54px; }
.section-heading p:last-child { color: rgba(255,255,255,.78); font-size: 18px; }
.photo-grid { display: grid; grid-template-columns: 1.2fr .8fr; grid-template-rows: 1fr 1fr; gap: 18px; }
.photo-card { position: relative; min-height: 300px; margin: 0; overflow: hidden; background: #0c2446; }
.photo-card-large { grid-row: span 2; min-height: 620px; }
.photo-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.photo-card:hover img { transform: scale(1.025); }
.photo-card::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.72)); }
.photo-card figcaption { position: absolute; inset: auto 24px 22px; z-index: 2; }
.photo-card figcaption span { display: block; margin-bottom: 2px; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.78); }
.photo-card figcaption strong { font-family: "Oswald", sans-serif; font-size: 26px; font-weight: 500; }

.tour { position: relative; min-height: 680px; display: grid; align-items: center; color: #fff; overflow: hidden; }
.tour-photo { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,20,34,.82), rgba(11,20,34,.22)), url("assets/shop.jpg") center / cover no-repeat; }
.tour-grid { position: relative; z-index: 1; }
.tour-copy { max-width: 580px; }
.tour-copy p:not(.eyebrow) { font-size: 20px; color: rgba(255,255,255,.88); margin-bottom: 32px; }

.contact { background: #fff; }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.contact-copy p { font-size: 18px; color: var(--muted); }
.contact-details { display: grid; gap: 8px; margin-top: 35px; }
.contact-details a { font-family: "Oswald", sans-serif; font-size: 28px; color: var(--green); text-decoration: none; }
.contact-form { padding: 42px; background: var(--paper); border-top: 5px solid var(--green); }
.contact-form label { display: grid; gap: 8px; margin-bottom: 20px; font-size: 13px; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid #c9c8c3; background: #fff; padding: 13px 14px; color: var(--ink); border-radius: 2px; outline: none; text-transform: none; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(7,116,61,.12); }
.optional { font-weight: 400; color: var(--muted); text-transform: none; letter-spacing: 0; }
.form-status { min-height: 24px; margin: 16px 0 0; font-size: 14px; }
.form-status.error { color: #9a2424; }
.form-status.success { color: #1d6c3e; }

.site-footer { background: var(--blue-dark); border-top: 6px solid var(--green); color: rgba(255,255,255,.72); padding: 48px 0; }
.footer-grid { display: grid; grid-template-columns: minmax(240px, .8fr) minmax(0, 1.2fr); gap: 48px; align-items: center; font-size: 13px; }
.footer-copy { display: grid; gap: 12px; }
.footer-copy p { margin: 0; text-align: left; }
.footer-logo img { width: 320px; height: auto; object-fit: contain; object-position: left center; }

@media (max-width: 900px) {
  .section { padding: 80px 0; }
  .menu-toggle { display: block; }
  .site-nav { display: none; position: absolute; top: 75px; left: 20px; right: 20px; flex-direction: column; align-items: stretch; gap: 0; background: #fff; box-shadow: 0 12px 34px rgba(0,0,0,.14); }
  .site-nav.open { display: flex; }
  .site-nav a, .site-header:not(.scrolled) .site-nav a { color: var(--ink); padding: 15px 18px; border-bottom: 1px solid var(--line); }
  .nav-cta { border: 0; }
  .intro-grid, .section-heading, .contact-grid { grid-template-columns: 1fr; gap: 35px; }
  .capability-grid { grid-template-columns: 1fr 1fr; }
  .cap-num { margin-bottom: 48px; }
  .photo-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .photo-card, .photo-card-large { grid-row: auto; min-height: 420px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid p:last-child { text-align: left; }
}

@media (max-width: 620px) {
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .nav-wrap { min-height: 72px; }
  .brand img { width: 205px; }
  .hero { min-height: 860px; }
  .hero-shade { background: linear-gradient(90deg, rgba(9,20,38,.86), rgba(9,20,38,.57)); }
  h2 { font-size: 44px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .capability-grid { grid-template-columns: 1fr; }
  .cap-card { min-height: auto; }
  .photo-card, .photo-card-large { min-height: 330px; }
  .tour { min-height: 600px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 28px 20px; }
}

.services { background: var(--paper); padding-bottom: 0; }
.services-panel { padding: 48px; background: var(--blue); color: var(--white); border-top: 6px solid var(--green); }
.services-panel h2 { font-size: clamp(36px, 5vw, 56px); margin-bottom: 32px; }
.services-list { columns: 3; column-gap: 40px; list-style: none; padding: 0; margin: 0; }
.services-list li { break-inside: avoid; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.25); }
.form-note { font-size: 14px; color: var(--muted); }
.form-note a { overflow-wrap: anywhere; text-underline-offset: 3px; }
@media (max-width: 900px) {
  .services-list { columns: 2; }
}
@media (max-width: 620px) {
  .services-panel { padding: 28px 20px; }
  .services-list { columns: 1; }
}
