:root {
  --color-navy: #0b1726;
  --color-navy-light: #14263b;
  --color-blue: #245b8f;
  --color-blue-dark: #18466f;
  --color-accent: #b77938;
  --color-cream: #f5f1e8;
  --color-surface: #fbfaf7;
  --color-surface-alt: #ece8df;
  --color-border: #d9d5cc;
  --color-text: #202832;
  --color-muted: #59636f;
  --color-white: #ffffff;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  --font-display: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  --shadow-soft: 0 18px 45px rgba(11, 23, 38, 0.08);
  --shadow-card: 0 12px 30px rgba(11, 23, 38, 0.07);
  --radius-small: 8px;
  --radius-medium: 14px;
  --container-width: 1200px;
  --section-spacing: clamp(72px, 8vw, 108px);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-cream);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

:focus-visible {
  outline: 3px solid rgba(183, 121, 56, 0.55);
  outline-offset: 3px;
}

.container {
  width: min(var(--container-width), 92%);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--color-white);
  color: var(--color-navy);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(217, 213, 204, 0.85);
  background: rgba(251, 250, 247, 0.96);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  flex: 0 0 auto;
}

.logo img {
  width: clamp(205px, 18vw, 260px);
  height: auto;
  aspect-ratio: 1000 / 447;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-small);
  background: var(--color-white);
  cursor: pointer;
}

.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  width: 22px;
  height: 2px;
  display: block;
  position: relative;
  background: var(--color-navy);
  transition: transform 0.2s ease, opacity 0.2s ease;
  content: "";
}

.nav-toggle-icon::before {
  position: absolute;
  top: -7px;
}

.nav-toggle-icon::after {
  position: absolute;
  top: 7px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--color-navy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

nav a {
  position: relative;
  padding-block: 12px;
}

nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

nav a:hover::after,
nav a:focus-visible::after,
nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: #e7edf4;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 2px;
  background: var(--color-accent);
  content: "";
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 26px;
  font-family: var(--font-display);
  font-size: clamp(46px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.hero p {
  max-width: 680px;
  margin-bottom: 32px;
  color: #e5eaf0;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.65;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: var(--radius-small);
  padding: 14px 22px;
  background: var(--color-blue);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.button:hover {
  background: var(--color-blue-dark);
  transform: translateY(-2px);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.button-secondary:hover {
  border-color: var(--color-white);
  background: var(--color-white);
  color: var(--color-navy);
}

.section-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-header h2,
.split h2,
.cta h2,
.process-heading,
.section-intro h2,
.gallery-heading h2,
.contact-cta h2 {
  margin-bottom: 18px;
  color: var(--color-navy);
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.section-header p,
.split p,
.category-header p,
.process-intro,
.section-intro p,
.gallery-heading p {
  color: var(--color-muted);
  font-size: clamp(16px, 1.6vw, 18px);
}

footer {
  padding: 44px 0;
  background: #07111d;
  color: var(--color-white);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 34px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer-brand {
  margin-bottom: 6px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-contact {
  color: #c7d0da;
  font-size: 14px;
}

.footer-contact div + div {
  margin-top: 5px;
}

.footer-contact a:hover {
  color: var(--color-white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mobile-call-button {
  display: none;
}

@media (max-width: 760px) {
  footer {
    padding-bottom: 126px;
  }

  header {
    background: var(--color-surface);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .header-inner {
    min-height: 72px;
  }

  .logo {
    flex: 1;
    display: flex;
    justify-content: center;
    padding-left: 48px;
  }

  .logo img {
    width: clamp(180px, 52vw, 205px);
  }

  .nav-toggle {
    display: inline-flex;
    position: relative;
    z-index: 102;
  }

  nav {
    position: fixed;
    top: 72px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 101;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    min-height: calc(100vh - 72px);
    min-height: calc(100dvh - 72px);
    padding: 18px 4% calc(28px + env(safe-area-inset-bottom));
    background: var(--color-surface);
    box-shadow: 0 18px 30px rgba(11, 23, 38, 0.18);
    transform: translateX(100%);
    transition: transform 0.25s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    visibility: hidden;
    pointer-events: none;
  }

  nav.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  nav a {
    min-height: 56px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--color-border);
    font-size: 14px;
  }

  nav a::after {
    display: none;
  }

  .hero h1 {
    max-width: 600px;
    font-size: clamp(38px, 11vw, 56px);
  }

  .mobile-call-button {
    position: fixed;
    right: 16px;
    bottom: 16px;
    left: 16px;
    z-index: 50;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-small);
    background: var(--color-blue);
    color: var(--color-white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 32px, var(--container-width));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
