:root {
  --canal: #102a3f;
  --canal-2: #18394f;
  --canal-3: #254b61;
  --copper: #bb6d45;
  --copper-deep: #97563a;
  --mist: #dbe4eb;
  --paper: #f4f1eb;
  --paper-2: #ebe4d8;
  --paper-3: #d7cbbb;
  --ink: #162330;
  --ink-soft: #5b6873;
  --edge: #8d98a3;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(10, 26, 41, 0.12);
  --font-display: "Bricolage Grotesque", ui-sans-serif, system-ui, sans-serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink-soft);
  background:
    radial-gradient(circle at top right, rgba(24, 57, 79, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 241, 235, 0.98));
  background-color: var(--paper);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.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;
}

.container {
  width: min(1180px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.display,
.display-xl,
.section-title,
.promo-title,
.footer-title,
.assistant-title {
  font-family: var(--font-display);
  color: var(--ink);
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin: 0;
}

.display-xl {
  font-weight: 800;
}

.section-title {
  font-size: clamp(2.3rem, 5vw, 4.6rem);
}

.hero-title {
  font-size: clamp(3.3rem, 9.5vw, 7.8rem);
  color: var(--white);
  max-width: 12ch;
}

.hero-intro,
.section-copy p,
.narrow-copy p,
.footer-copy,
.assistant-copy {
  font-size: 1rem;
}

.eyebrow,
.serial {
  display: inline-block;
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.7rem;
  font-weight: 700;
}

.eyebrow {
  color: var(--copper);
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.86);
}

.serial {
  color: var(--edge);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-solid {
  background: rgba(244, 241, 235, 0.92);
  backdrop-filter: blur(16px);
  border-bottom-color: rgba(22, 35, 48, 0.08);
}

.nav-shell {
  width: min(1280px, calc(100% - 2.5rem));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand-mark {
  display: inline-flex;
  flex-direction: column;
  gap: 0.1rem;
  color: var(--white);
  font-family: var(--font-display);
  line-height: 0.95;
}

.brand-mark span {
  font-size: 1.35rem;
  font-weight: 800;
}

.brand-mark small {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.9;
}

.site-header.is-solid .brand-mark {
  color: var(--canal);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-link,
.nav-contact {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  position: relative;
}

.nav-link::after,
.nav-contact::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.42rem;
  height: 2px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}

.nav-link:hover::after,
.nav-contact:hover::after,
.nav-link-active::after {
  transform: scaleX(1);
}

.site-header.is-solid .nav-link,
.site-header.is-solid .nav-contact {
  color: var(--ink-soft);
}

.site-header.is-solid .nav-link-active,
.site-header.is-solid .nav-link:hover,
.site-header.is-solid .nav-contact:hover {
  color: var(--canal);
}

.menu-toggle,
.menu-close {
  display: none;
  border: 0;
  background: transparent;
  color: var(--white);
  font-weight: 700;
  cursor: pointer;
}

.site-header.is-solid .menu-toggle {
  color: var(--canal);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(180deg, #0d2437 0%, #102a3f 100%);
  transform: translateY(-100%);
  transition: transform 0.35s ease;
  padding: 1.5rem 1.25rem 2rem;
}

.mobile-nav.is-open {
  transform: translateY(0);
}

.mobile-nav-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-mark-mobile {
  color: var(--white);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 3rem;
}

.mobile-nav-link {
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(2rem, 9vw, 3.3rem);
  line-height: 1;
}

.mobile-nav-meta {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.98rem;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--canal);
}

.hero-media,
.hero-overlay,
.hero-clarity {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.hero-overlay {
  background:
    linear-gradient(to right, rgba(16, 42, 63, 0.94), rgba(16, 42, 63, 0.78) 38%, rgba(16, 42, 63, 0.38) 100%),
    linear-gradient(to bottom, rgba(8, 21, 31, 0.3), transparent 34%, transparent 72%, rgba(8, 21, 31, 0.82));
}

.hero-clarity {
  background:
    radial-gradient(circle at 72% 34%, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 30%, transparent 70%, rgba(255, 255, 255, 0.04));
  mix-blend-mode: screen;
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: flex;
  align-items: end;
  padding: 8.5rem 0 4.5rem;
}

.hero-copy {
  max-width: 49rem;
}

.hero-intro,
.hero-meta {
  color: rgba(255, 255, 255, 0.82);
  max-width: 42rem;
}

.hero-meta {
  margin-top: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.77rem;
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.btn-primary,
.btn-ghost,
.card-link,
.assistant-suggestion {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.3rem;
  padding: 0.95rem 1.4rem;
  border: 1px solid transparent;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn-primary {
  background: var(--copper);
  color: var(--white);
  border-color: var(--copper);
}

.btn-primary:hover {
  background: var(--copper-deep);
  border-color: var(--copper-deep);
}

.btn-ghost {
  background: transparent;
  color: var(--canal);
  border-color: rgba(16, 42, 63, 0.18);
}

.btn-ghost:hover {
  border-color: var(--canal);
  background: rgba(16, 42, 63, 0.04);
}

.btn-ghost-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-ghost-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.section {
  padding: 6rem 0;
}

.section-muted {
  background:
    linear-gradient(180deg, rgba(235, 228, 216, 0.58), rgba(255, 255, 255, 0.5)),
    var(--paper-2);
  border-top: 1px solid rgba(22, 35, 48, 0.05);
  border-bottom: 1px solid rgba(22, 35, 48, 0.05);
}

.quote-card,
.panel-card,
.promo-card,
.form-shell,
.assistant-panel,
.contact-panel {
  box-shadow: var(--shadow);
}

.quote-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 244, 237, 0.94));
  border: 1px solid rgba(22, 35, 48, 0.08);
  padding: 3rem;
  text-align: center;
}

.quote-card blockquote {
  font-size: clamp(1.7rem, 3.8vw, 2.8rem);
  margin: 0 auto 1.2rem;
  max-width: 22ch;
}

.quote-card figcaption {
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 700;
}

.quote-line {
  width: 3rem;
  height: 1px;
  background: rgba(141, 152, 163, 0.65);
  display: block;
  margin: 0 auto 1.6rem;
}

.split-head,
.section-band,
.two-col,
.contact-layout,
.footer-grid {
  display: grid;
  gap: 2rem;
}

.split-head,
.section-band {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: start;
  margin-bottom: 2.5rem;
}

.section-copy p,
.narrow-copy p,
.card-body p,
.card-body li,
.gallery-body p,
.contact-panel li {
  color: var(--ink-soft);
}

.card-grid {
  display: grid;
  gap: 1.35rem;
}

.card-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.panel-card,
.promo-card,
.form-shell {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 244, 237, 0.96));
  border: 1px solid rgba(22, 35, 48, 0.08);
  border-top: 3px solid rgba(187, 109, 69, 0.8);
}

.card-image img,
.gallery-image img,
.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(24, 57, 79, 0.1), rgba(24, 57, 79, 0.2));
}

.office-card-image {
  aspect-ratio: 4 / 3;
}

.card-body,
.gallery-body,
.form-shell,
.contact-panel {
  padding: 1.5rem;
}

.card-body h3,
.gallery-body h3,
.contact-panel h3,
.site-footer h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  color: var(--ink);
  font-size: 1.55rem;
  line-height: 1.05;
}

.card-link {
  justify-content: flex-start;
  color: var(--copper);
  min-height: auto;
  padding: 0;
  margin-top: 0.9rem;
  border: 0;
  background: transparent;
}

.card-link:hover {
  color: var(--copper-deep);
}

.stat-grid,
.gallery-grid,
.pill-list {
  display: grid;
  gap: 1rem;
}

.stat-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.stat-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(22, 35, 48, 0.08);
  padding: 1.35rem 1.1rem;
}

.stat-card strong {
  display: block;
  margin-bottom: 0.3rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--ink);
}

.stat-card span {
  display: block;
  font-size: 0.88rem;
}

.promo-card {
  padding: 2rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
}

.promo-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 0.8rem;
}

.two-col {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.stacked-media {
  display: grid;
  gap: 1rem;
}

.image-frame {
  overflow: hidden;
  background: rgba(24, 57, 79, 0.08);
  border: 1px solid rgba(22, 35, 48, 0.08);
}

.image-frame.tall {
  aspect-ratio: 4 / 5;
}

.image-frame.wide {
  aspect-ratio: 16 / 9;
}

.feature-list,
.footer-list {
  margin: 0;
  padding-left: 1rem;
}

.feature-list {
  display: grid;
  gap: 0.45rem;
}

.feature-list-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 1.15rem;
}

.narrow-copy {
  max-width: 54rem;
}

.pill-list {
  list-style: none;
  padding: 0;
  margin: 0;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.pill-list li {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(22, 35, 48, 0.08);
  padding: 0.9rem 1rem;
  font-weight: 600;
  color: var(--ink);
}

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(22, 35, 48, 0.08);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(10, 26, 41, 0.06);
}

.gallery-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.contact-layout {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
}

.contact-meta {
  margin-top: 1.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(22, 35, 48, 0.08);
}

.contact-form,
.assistant-form {
  display: grid;
  gap: 1rem;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.55rem;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(22, 35, 48, 0.12);
  padding: 1rem 1.05rem;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus {
  border-color: var(--copper);
  box-shadow: 0 0 0 4px rgba(187, 109, 69, 0.12);
}

textarea {
  min-height: 10rem;
  resize: vertical;
}

.form-status {
  margin: 0;
  color: var(--ink-soft);
}

.site-footer {
  background: linear-gradient(180deg, var(--canal-2), #0d2437);
  color: rgba(255, 255, 255, 0.76);
  padding: 4rem 0;
}

.footer-grid {
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
}

.site-footer h3 {
  color: var(--white);
  font-size: 1.1rem;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-title,
.site-footer .display {
  color: var(--white);
}

.footer-note {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}

.assistant-launcher {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 60;
  border: 0;
  background: var(--copper);
  color: var(--white);
  min-height: 3.5rem;
  padding: 0 1.25rem;
  box-shadow: 0 16px 45px rgba(151, 86, 58, 0.34);
  cursor: pointer;
  font-weight: 800;
}

.assistant-panel {
  position: fixed;
  right: 1.25rem;
  bottom: 5.25rem;
  z-index: 65;
  width: min(25rem, calc(100vw - 2rem));
  max-height: min(46rem, calc(100vh - 7rem));
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 244, 237, 0.98));
  border: 1px solid rgba(22, 35, 48, 0.08);
  border-top: 3px solid var(--copper);
  padding: 1.25rem;
  display: grid;
  gap: 0.9rem;
  transform: translateY(1rem);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.assistant-panel.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.assistant-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.assistant-title {
  font-size: 1.8rem;
}

.assistant-kicker {
  margin-bottom: 0.4rem;
}

.assistant-close {
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.assistant-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.assistant-suggestion {
  min-height: auto;
  padding: 0.7rem 0.85rem;
  background: rgba(16, 42, 63, 0.05);
  border-color: rgba(16, 42, 63, 0.08);
  color: var(--canal);
}

.assistant-suggestion:hover {
  border-color: rgba(16, 42, 63, 0.18);
}

.assistant-messages {
  min-height: 13rem;
  max-height: 20rem;
  overflow-y: auto;
  display: grid;
  gap: 0.75rem;
  padding-right: 0.2rem;
}

.assistant-bubble {
  padding: 0.9rem 1rem;
  font-size: 0.94rem;
}

.assistant-bubble.user {
  margin-left: 1.75rem;
  background: var(--canal);
  color: var(--white);
}

.assistant-bubble.assistant {
  margin-right: 1.75rem;
  background: rgba(16, 42, 63, 0.06);
  color: var(--ink);
}

.assistant-status {
  margin: 0;
  font-size: 0.82rem;
  color: var(--edge);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle,
  .menu-close {
    display: inline-flex;
  }

  .footer-grid,
  .gallery-grid,
  .card-grid-three,
  .card-grid-two,
  .contact-layout,
  .split-head,
  .section-band,
  .two-col,
  .stat-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav-shell {
    min-height: 68px;
    width: min(1280px, calc(100% - 1.4rem));
  }

  .container {
    width: min(1180px, calc(100% - 1.4rem));
  }

  .hero-inner {
    padding: 7rem 0 3rem;
  }

  .section {
    padding: 4.25rem 0;
  }

  .quote-card,
  .promo-card,
  .card-body,
  .gallery-body,
  .form-shell,
  .contact-panel,
  .assistant-panel {
    padding: 1.15rem;
  }

  .promo-card,
  .field-grid,
  .feature-list-columns {
    grid-template-columns: 1fr;
  }

  .feature-list-columns {
    display: grid;
  }

  .assistant-launcher {
    right: 0.8rem;
    bottom: 0.8rem;
  }

  .assistant-panel {
    right: 0.8rem;
    left: 0.8rem;
    width: auto;
    bottom: 4.9rem;
  }
}
