/* Contact */
.contact {
  background: #111;
  color: #eee;
  padding: 60px 0;
}
.contact .container {
  max-width: 1000px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: start;
}
.contact-title {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 400;
  font-size: clamp(2.2rem, 6vw, 4rem);
  color: #f3f3f3;
  margin: 0 0 18px;
}
.button-inverse {
  color: #eee;
  border-color: #eee;
}
.button-inverse:hover {
  background: #1d1d1d;
}
.contact-right {
  line-height: 1.9;
}
.contact-right p {
  color: #fff;
}
.contact-link {
  color: #eaeaea;
  text-decoration: none;
}
.contact-link:hover {
  text-decoration: underline;
}
@media (max-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
:root {
  --text: #0f0f0f;
  --muted: #5a5a5a;
  --accent: #dc5f45;
  /* terracotta */
  --border: #222;
  --bg: #fff;
  --maxw: 1100px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  font-size: 18px;
}

body {
  margin: 0;
  font-family: "montserrat", Inter, system-ui, -apple-system, Segoe UI, Roboto,
    Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Full-height layout for contact page */
.contact-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.contact-body main {
  flex: 1 0 auto;
}
.contact-body footer {
  flex-shrink: 0;
}

body.no-scroll {
  overflow: hidden;
}

h1,
h2,
h3 {
  font-family: "Montserrat", Georgia, "Times New Roman", serif !important;
  line-height: 1.15;
  margin: 0 0 0.5rem;
}

h1 {
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: 0.2px;
}

h2 {
  font-weight: 400;
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--bg);
}

.header-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 14px 0;
  position: relative;
}

.flex-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.brand {
  grid-column: 2;
  justify-self: center;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
}

.brand-logo {
  height: 28px;
  width: auto;
  display: inline-block;
  margin-left: 0 !important;
}

.logo-placeholder {
  display: inline-block;
  width: 180px;
  height: 28px;
}

.door {
  width: 20px;
  height: 28px;
  border-radius: 6px 6px 10px 10px;
  background: #111;
  position: relative;
  display: inline-block;
}

.door::after {
  content: "";
  position: absolute;
  right: 5px;
  bottom: 8px;
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
}

.nav {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 18px;
}

/* Fullscreen state for nav when toggled open (works across breakpoints) */
.nav.is-open {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.18);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35),
    0 8px 40px rgba(0, 0, 0, 0.12);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

/* Prevent horizontal overflow */
html,
body {
  overflow-x: hidden;
}

.nav-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  position: relative;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--text);
}

.nav-link.active {
  color: var(--text);
  font-weight: 600;
}

/* Hamburger */
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  background: #fff;
  color: #111;
  font-size: 22px;
  cursor: pointer;
  margin-right: 25px !important;
}

.menu-toggle:focus {
  outline: 2px solid #bbb;
  outline-offset: 2px;
}

.menu-close {
  display: none;
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #e5e5e5;
  background: #fff;
  color: #111;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}
.menu-close:focus {
  outline: 2px solid #bbb;
  outline-offset: 2px;
}

/* Hero (home) */
.hero {
  padding: 40px 0 72px;
  text-align: center;
}

.hero-title {
  margin: 10px 0 28px;
}

.hero-logo {
  height: 40px;
  width: auto;
  display: inline-block;
  margin-bottom: 12px;
}

.hero-figure {
  margin: 12px auto 26px;
  max-width: 540px;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.hero-figure video {
  width: 130%;
}

.hero-figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.hero-figure:hover img {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
}

.lede {
  max-width: 680px;
  margin: 0 auto 22px;
}

.cta-wrap {
  margin: 0;
}

.button {
  display: inline-block;
  padding: 12px 26px;
  border: 1.5px solid white;
  border-radius: 28px;
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  color: white;
  background: transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  background: #f5f5f5;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* About banner */
.banner {
  background: var(--accent);
  color: #fff;
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}
.banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}
.banner > .container {
  position: relative;
  z-index: 1;
}

.banner-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: start;
}

.kicker {
  opacity: 0.95;
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
}

.banner h1 {
  color: #fff;
}

.mark {
  display: inline-block;
  margin-top: 14px;
  width: 34px;
  height: 48px;
  border-radius: 8px;
  background: #fff;
  position: relative;
}

.mark::after {
  content: "";
  position: absolute;
  right: 7px;
  bottom: 12px;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.banner p {
  color: #ffeae6;
}

/* Image-based door mark */
.mark-img {
  display: inline-block;
  height: 48px;
  width: auto;
  margin-top: 14px;
}

/* About content */
.section {
  padding: 54px 0;
}

.lead {
  max-width: 560px;
  font-size: 120%;
  line-height: 1.7;
}

.grid-2 {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 64px;
}
.grid-2 {
  max-width: 960px;
  margin: 0 auto;
}

.list {
  display: grid;
  gap: 26px;
}

.strategy-item {
  display: grid;
  grid-template-columns: 85px 1fr;
  align-items: center;
  column-gap: 16px;
  border-radius: 10px;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.strategy-icon {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.strategy-item:hover {
  transform: translateY(-2px);
  background: #fafafa;
}
.strategy-item:hover .item-title {
  color: var(--accent);
}

/* Offerings grid */
.offerings .off-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 80px;
  align-items: start;
}
.offerings .container {
  max-width: 1000px;
}
.offerings-heading {
  margin-bottom: 12%;
}
.off-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 12px;
}
.off-media {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 6px;
}
.off-media img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}
.off-card:hover {
  transform: none;
  box-shadow: none;
  background: transparent;
}
.off-card:hover .off-media img {
  transform: none;
}
.off-card:hover .off-title {
  color: var(--accent);
  font-family: inherit;
}
.off-title {
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0;
}
.off-subtitle {
  color: #666;
  margin-top: -6px;
}
.off-copy {
  color: var(--muted);
}

@media (max-width: 1024px) {
  .offerings .off-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media (max-width: 720px) {
  .offerings .off-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .off-media img {
    width: 100%;
    height: auto;
  }
}

/* Behind SR */
.behind {
  background: var(--accent);
  color: #fff;
  padding: 54px 0 40px;
}
.behind .container {
  max-width: 1000px;
}
.behind-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: end;
  margin-bottom: 24px;
  align-items: center;
}
.behind-title .kicker {
  color: #ffeae6;
}
.behind h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 400;
}
.behind-figure {
  justify-self: end;
  text-align: right;
}
.behind-figure img {
  width: 420px;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  border-radius: 6px;
}
.behind-figure figcaption {
  font-size: 12px;
  margin-top: 6px;
  color: #fff;
  opacity: 0.9;
}
.behind-text {
  display: grid;
  grid-template-rows: auto 1fr;
  align-items: start;
  row-gap: 14px;
}
.behind-text .copy p {
  color: #ffeae6;
}
.behind-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
  row-gap: 16px;
  color: #fff;
}
.behind-copy p {
  color: #ffeae6;
}
.behind-cta {
  display: flex;
  justify-content: center;
  margin: 26px 0 12px;
}
.in-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #0a66c2;
  color: #fff;
  border-radius: 6px;
  margin-left: 10px;
  font-weight: 700;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica,
    Arial;
}

@media (max-width: 860px) {
  .behind-grid {
    grid-template-columns: 1fr;
  }
  .behind-figure {
    justify-self: center;
    text-align: center;
  }
  .behind-figure img {
    width: 90%;
    max-width: 520px;
    height: auto;
  }
}
.item-title {
  font-weight: 600;
  color: #333;
}

.muted {
  color: #7a7a7a;
}

/* Footer */
footer {
  padding: 40px 0;
  color: var(--muted);
  text-align: center;
  font-size: 14px;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Responsive */
@media (max-width: 860px) {
  .banner-inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  html {
    font-size: 16px;
  }

  .header-grid {
    grid-template-columns: 1fr;
    align-items: center;
  }

  .brand {
    grid-column: 1;
    justify-self: center;
  }

  .menu-toggle {
    display: inline-flex;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 11;
    margin-right: 0 !important;
  }

  .nav {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.18);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    backdrop-filter: blur(14px) saturate(140%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35),
      0 8px 40px rgba(0, 0, 0, 0.12);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .nav.is-open .nav-link {
    font-size: 20px;
  }

  .menu-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}
