:root {
  --orange: #e55b14;
  --orange-deep: #c84a09;
  --orange-soft: #ffefe6;
  --white: #ffffff;
  --ink: #1f1f1f;
  --muted: #4a4a4a;
  --line: rgba(0, 0, 0, 0.12);
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fff7f2 0%, #ffffff 32%, #fff5ee 100%);
  line-height: 1.55;
}

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

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

.top-cta {
  background: var(--orange);
  color: var(--white);
  text-align: center;
  padding: 0.55rem 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.top-cta a {
  text-decoration: underline;
}

.site-header,
main,
.site-footer {
  width: min(1160px, 94vw);
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
}

.brand-mark {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 0.82rem;
}

.brand-text {
  font-size: 1.02rem;
}

.menu-toggle {
  display: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.5rem 0.85rem;
  font: inherit;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
}

.site-nav a:hover {
  color: var(--orange);
}

.btn {
  border: 0;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  padding: 0.7rem 1.2rem;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}

.btn:hover {
  background: var(--orange-deep);
  transform: translateY(-1px);
}

.btn-nav {
  padding: 0.55rem 1rem;
}

.btn-outline {
  border: 2px solid var(--orange);
  color: var(--orange);
  background: transparent;
}

.btn-outline:hover {
  background: #fff2ea;
}

.hero {
  margin-top: 0.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 1.25rem;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
}

.hero-copy {
  padding: clamp(1.25rem, 3vw, 2.5rem);
}

.kicker {
  color: var(--orange);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  margin: 0 0 0.6rem;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  line-height: 1.12;
  margin: 0 0 0.55rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.7rem);
}

.tagline {
  margin: 0;
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.32rem);
}

.lead {
  margin-top: 0.95rem;
  color: var(--muted);
  max-width: 50ch;
}

.hero-actions {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-media {
  min-height: 360px;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  margin-top: 1rem;
  border-radius: 1rem;
  overflow: hidden;
}

.section.white {
  background: var(--white);
  border: 1px solid var(--line);
}

.section.orange {
  background: var(--orange);
  color: var(--white);
}

.section-inner {
  padding: clamp(1.1rem, 2.8vw, 2rem);
}

.section.orange p {
  color: rgba(255, 255, 255, 0.94);
}

.priority-grid {
  margin-top: 1rem;
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.priority-grid article {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 0.8rem;
  padding: 1rem;
}

.split {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 0.95fr;
  align-items: start;
}

.office-list {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.8rem;
}

.office-list article {
  padding: 0.95rem;
  background: var(--orange-soft);
  border-left: 4px solid var(--orange);
  border-radius: 0.65rem;
}

.small-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--orange);
}

.photo-stack {
  display: grid;
  gap: 0.85rem;
}

.photo-stack img {
  border-radius: 0.8rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.signup-form {
  margin-top: 1rem;
  display: grid;
  gap: 0.72rem;
  max-width: 38rem;
}

.signup-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
}

input,
select {
  padding: 0.65rem 0.72rem;
  border-radius: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  font: inherit;
}

input:focus,
select:focus {
  outline: 2px solid rgba(255, 255, 255, 0.75);
  border-color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--orange);
}

.btn-white:hover {
  background: #fff2ea;
  color: var(--orange-deep);
}

.form-note {
  min-height: 1.2rem;
  font-weight: 700;
}

.site-footer {
  color: #5a5a5a;
  padding: 1rem 0 2rem;
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem 1.1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease;
}

@media (max-width: 930px) {
  .hero,
  .split,
  .priority-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    max-height: 420px;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: 120px;
    left: 3vw;
    right: 3vw;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 0.8rem;
    box-shadow: var(--shadow);
    padding: 0.75rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    z-index: 8;
  }

  .site-nav.open {
    display: flex;
  }
}

@media (max-width: 560px) {
  .brand-text {
    font-size: 0.92rem;
  }

  .top-cta {
    font-size: 0.85rem;
  }

  .site-footer {
    font-size: 0.88rem;
  }
}
