:root {
  --brand-navy: #1f2a44;
  --brand-navy-dark: #172030;
  --brand-gold: #c9a24a;
  --brand-gold-soft: #e6d2a3;
  --stone: #ede8de;
  --parchment: #f7f4ed;
  --ink: #2e2a27;
  --slate: #5c5a57;
  --white: #ffffff;
  --max-width: 1180px;
  font-size: 16px;
}

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

body {
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  background: var(--parchment);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

.skip-link {
  position: absolute;
  top: 0.5rem;
  left: -999px;
  padding: 0.65rem 1.1rem;
  background: var(--brand-navy);
  color: var(--white);
  border-radius: 999px;
  font-weight: 600;
  transition: left 0.2s ease;
  z-index: 1000;
}

.skip-link:focus,
.skip-link:focus-visible {
  left: 1rem;
}

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

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: none;
  background: transparent;
  padding: 0.4rem;
  cursor: pointer;
  transition: transform 0.3s ease;
  gap: 0.35rem;
}

.nav-toggle span {
  display: block;
  width: 1.55rem;
  height: 2px;
  background: var(--slate);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--brand-gold);
  outline-offset: 4px;
}

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

a:hover {
  color: var(--brand-gold);
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(23, 32, 48, 0.06);
  overflow: visible;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.brand img {
  width: 140px;
  height: 140px;
  filter: drop-shadow(0 22px 45px rgba(23, 32, 48, 0.28));
  transition: transform 0.4s ease;
}

.logo-large {
  width: 180px;
  height: 180px;
}

.brand:hover img {
  transform: translateY(-3px) scale(1.01);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand-name {
  font-family: "Playfair Display", "Times New Roman", serif;
  letter-spacing: 0.28em;
  font-size: 1.65rem;
  text-transform: uppercase;
  color: var(--brand-navy);
}
.brand-tagline {
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.62rem;
  font-weight: 600;
  color: rgba(31, 42, 68, 0.7);
}

.site-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.site-nav li.nav-cta {
  margin-left: 1.25rem;
}

.site-nav a,
.site-nav .btn-nav {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--slate);
  position: relative;
  transition: color 0.3s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 100%;
  height: 2px;
  background: var(--brand-gold);
  opacity: 0;
  transform: scaleX(0.6);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-nav a.active {
  color: var(--brand-navy);
}

.site-nav .btn-nav::after {
  display: none;
}

.site-nav .btn-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.6rem;
  border-radius: 999px;
  background: var(--brand-gold);
  color: var(--brand-navy);
  letter-spacing: 0.16em;
  border: 1px solid transparent;
  box-shadow: 0 16px 32px rgba(201, 162, 74, 0.28);
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.site-nav .btn-nav:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 22px 44px rgba(201, 162, 74, 0.32);
}

.site-nav .btn-nav.active,
.site-nav .btn-nav:focus-visible {
  outline: none;
  border-color: rgba(31, 42, 68, 0.18);
  box-shadow: 0 24px 48px rgba(31, 42, 68, 0.18);
}

.hero {
  position: relative;
  padding: 7.5rem 0 6.5rem;
  color: var(--white);
  overflow: hidden;
 isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
 background: linear-gradient(118deg, rgba(12, 20, 36, 0.92) 8%, rgba(23, 35, 58, 0.78) 52%, rgba(31, 42, 68, 0.82) 100%),
    url("../images/Framing.JPEG") center/cover no-repeat;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(201, 162, 74, 0.28), transparent 40%),
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.2), transparent 48%);
  mix-blend-mode: screen;
  z-index: -1;
  opacity: 0.7;
}

.hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.hero .tagline {
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.82);
  padding: 0.6rem 1.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.36);
  backdrop-filter: blur(6px);
}

.hero h1 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 3.6rem;
  max-width: 840px;
  line-height: 1.05;
  text-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
}

.hero p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.12rem;
}

.cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.85rem 2.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--brand-gold);
  color: var(--brand-navy);
  box-shadow: 0 18px 38px rgba(201, 162, 74, 0.28);
}

.btn-primary:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.btn-secondary:hover {
  border-color: var(--white);
  transform: translateY(-2px);
}

main {
  padding: 3.75rem 0 4.75rem;
}

.section {
  padding: 4rem 0;
}

.section-heading {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 2.65rem;
  text-align: center;
  color: var(--brand-navy);
  margin-bottom: 1.4rem;
  letter-spacing: -0.01em;
}

.section-heading.section-heading-left {
  text-align: left;
}

.section-lead {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
  color: var(--slate);
  font-size: 1.05rem;
}

.section-lead.section-lead-left {
  text-align: left;
  margin-left: 0;
}

.story-section {
  background: var(--parchment);
}

.story-section .story-intro {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.story-section .story-intro p + p {
  margin-top: 1.25rem;
}

.story-section .story-services {
  margin-top: 3rem;
}

.story-section p {
  color: var(--slate);
}

.adu-section {
  background-color: var(--parchment);
}

.adu-overview {
  background-color: var(--parchment);
  padding-top: 0;
}

.adu-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 3rem;
  align-items: stretch;
}

.adu-copy {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.adu-copy .pill {
  align-self: flex-start;
}

.adu-copy p {
  color: var(--slate);
  font-size: 1.02rem;
}

.adu-highlights {
  list-style: none;
  display: grid;
  gap: 0.85rem;
  padding: 0;
  margin: 0;
}

.adu-highlights li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  color: var(--brand-navy);
  font-weight: 600;
}

.adu-highlights li::before {
  content: "";
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 0.45rem;
  background: var(--brand-gold);
  box-shadow: 0 0 0 4px rgba(201, 162, 74, 0.18);
}

.adu-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.75rem;
}

.adu-type-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 2.2rem 2rem;
  border: 1px solid rgba(23, 32, 48, 0.08);
  box-shadow: 0 24px 48px rgba(31, 42, 68, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.adu-type-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 36px 64px rgba(31, 42, 68, 0.14);
}

.adu-type-card h3 {
  font-size: 1.35rem;
  color: var(--brand-navy);
}

.adu-type-card p {
  color: var(--slate);
}

.adu-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 1.5rem;
}

.adu-actions .contact-link {
  font-size: 0.95rem;
}

.contact-link {
  font-weight: 600;
  color: var(--brand-navy);
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.contact-link:hover {
  color: var(--brand-gold);
}

.value-prop {
  background: linear-gradient(160deg, rgba(31, 42, 68, 0.92), rgba(23, 32, 48, 0.88));
  position: relative;
  overflow: hidden;
}

.value-prop::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 10%, rgba(201, 162, 74, 0.18), transparent 55%),
    radial-gradient(circle at 85% 20%, rgba(116, 160, 201, 0.16), transparent 55%);
  pointer-events: none;
}

.value-prop .container {
  position: relative;
  z-index: 1;
}

.value-prop .section-heading {
  color: var(--white);
  margin-bottom: 1rem;
}

.value-prop .section-lead {
  color: rgba(255, 255, 255, 0.75);
}

.value-intro {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
}

.value-prop .pill {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.value-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1.2rem;
  padding: 2.6rem 2.4rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(201, 162, 74, 0.25);
  opacity: 0.6;
  pointer-events: none;
}

.value-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--brand-gold);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.value-card p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.02rem;
  line-height: 1.8;
}

.process {
  background: var(--parchment);
}

.process-list {
  counter-reset: step;
  list-style: none;
  max-width: 820px;
  margin: 2.5rem auto 0;
  display: grid;
  gap: 1.5rem;
  padding: 0;
}

.process-list li {
  counter-increment: step;
  position: relative;
  background: var(--white);
  border-radius: 1rem;
  border: 1px solid rgba(23, 32, 48, 0.08);
  padding: 1.6rem 1.6rem 1.6rem 3.8rem;
  box-shadow: 0 22px 44px rgba(31, 42, 68, 0.1);
  font-size: 1rem;
  color: var(--slate);
}

.process-list li::before {
  content: counter(step);
  position: absolute;
  left: 1.4rem;
  top: 1.4rem;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  background: var(--brand-gold);
  color: var(--brand-navy);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px rgba(201, 162, 74, 0.35);
}

.process-list strong {
  color: var(--brand-navy);
}

.contact-cta {
  background: linear-gradient(150deg, rgba(31, 42, 68, 0.94), rgba(15, 24, 42, 0.88));
  border-radius: 1.6rem;
  padding: 3.4rem 3.6rem;
  color: var(--white);
  box-shadow: 0 42px 72px rgba(10, 15, 28, 0.36);
  display: grid;
  gap: 2.4rem;
}

.contact-cta .pill {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.contact-cta h3 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 2.35rem;
}

.contact-cta p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.82);
}

.contact-cta .cta-body {
  display: grid;
  gap: 1.4rem;
}

.contact-cta .cta-body > div {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-cta .primary-number {
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.contact-cta .contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.4rem;
}

.contact-cta .contact-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration-color: rgba(255, 255, 255, 0.32);
  font-weight: 600;
}

.contact-cta .contact-link:hover {
  color: var(--brand-gold);
  text-decoration-color: var(--brand-gold);
}

.contact-cta .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact-cta .cta-reveal[hidden] {
  display: none !important;
}

.contact-cta .cta-reveal {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 1.2rem;
  display: flex;
  justify-content: flex-start;
}

.feature-grid,
.card-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.feature-card,
.card,
.service-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 2.5rem 2.4rem;
  border: 1px solid rgba(23, 32, 48, 0.08);
  box-shadow: 0 24px 48px rgba(31, 42, 68, 0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.feature-card::before,
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(201, 162, 74, 0.16);
  pointer-events: none;
}

.pill {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(201, 162, 74, 0.16);
  color: var(--brand-navy);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 1rem;
}

.feature-card:hover,
.service-card:hover,
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 36px 64px rgba(31, 42, 68, 0.16);
}

.feature-card h3,
.service-card h3,
.card h3 {
  font-size: 1.5rem;
  color: var(--brand-navy);
  margin-bottom: 1rem;
}

.list-check {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.list-check li {
  padding-left: 1.75rem;
  position: relative;
  color: var(--slate);
}

.list-check li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand-gold);
  font-weight: 700;
}

.info-strip {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.info-strip article {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 0.9rem;
  padding: 1.8rem;
  border: 1px solid rgba(23, 32, 48, 0.08);
}

.info-strip h4 {
  color: var(--brand-navy);
  margin-bottom: 0.5rem;
}

.page-hero {
  background: linear-gradient(135deg, rgba(23, 32, 48, 0.96), rgba(31, 42, 68, 0.72));
  color: var(--white);
  padding: 5rem 0 4rem;
  text-align: center;
}

.page-hero .section-heading {
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero .section-lead {
  color: rgba(255, 255, 255, 0.78);
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.profile-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 247, 240, 0.98));
  border-radius: 1.35rem;
  
  border: 1px solid rgba(23, 32, 48, 0.08);
  box-shadow: 0 32px 60px rgba(31, 42, 68, 0.14);
  padding: 2.9rem 2.4rem 2.6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.profile-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 50% -10%, rgba(201, 162, 74, 0.3), transparent 55%);
  opacity: 0.6;
  pointer-events: none;
  z-index: -1;
}

.profile-headshot {
  width: 184px;
  height: 184px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 6px solid rgba(201, 162, 74, 0.35);
  box-shadow: 0 22px 42px rgba(31, 42, 68, 0.15);
}


.profile-card .title {
  font-weight: 600;
  color: var(--brand-gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
}

.profile-card p {
  color: var(--slate);
}

.contact-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.quote-layout {
  align-items: flex-start;
}

.contact-panel {
  background: var(--white);
  border-radius: 1rem;
  border: 1px solid rgba(23, 32, 48, 0.08);
  padding: 2.5rem;
  box-shadow: 0 24px 48px rgba(31, 42, 68, 0.08);
}

.contact-panel h3 {
  font-size: 1.4rem;
  color: var(--brand-navy);
  margin-bottom: 1rem;
}

.contact-details {
  list-style: none;
  color: var(--slate);
  margin-bottom: 1.5rem;
}

.contact-details li + li {
  margin-top: 0.45rem;
}

.quote-highlights {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 1rem;
}

.quote-highlights li {
  display: grid;
  gap: 0.35rem;
}

.quote-highlights strong {
  color: var(--brand-navy);
  font-size: 1.05rem;
}

.quote-highlights span {
  color: var(--slate);
  font-size: 0.95rem;
}

.contact-note {
  margin-top: 1.5rem;
  padding: 1.25rem 1.4rem;
  border-radius: 0.75rem;
  background: rgba(201, 162, 74, 0.14);
  color: var(--brand-navy);
  font-size: 0.95rem;
}

.quote-form .form-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.quote-form .form-columns input,
.quote-form .form-columns select {
  margin-bottom: 0;
}

.quote-form textarea {
  min-height: 160px;
}

form label {
  display: block;
  font-weight: 600;
  color: var(--brand-navy);
  margin-bottom: 0.4rem;
}

form input,
form textarea,
form select {
  width: 100%;
  border-radius: 0.6rem;
  border: 1px solid rgba(31, 42, 68, 0.18);
  padding: 0.8rem 1rem;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.96);
  margin-bottom: 1.25rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

form input:focus,
form textarea:focus,
form select:focus {
  outline: none;
  border-color: var(--brand-gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 74, 0.25);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.faq-item {
  background: var(--white);
  border-radius: 1rem;
  border: 1px solid rgba(23, 32, 48, 0.08);
  padding: 2.25rem 2.1rem;
  box-shadow: 0 24px 48px rgba(31, 42, 68, 0.08);
}

.faq-item h3 {
  color: var(--brand-navy);
  margin-bottom: 0.75rem;
}

.faq-item p {
  color: var(--slate);
}

.page-section + .page-section {
  margin-top: 3rem;
}

.site-footer {
  background: linear-gradient(180deg, rgba(15, 24, 42, 1), rgba(12, 18, 32, 0.94));
  color: rgba(255, 255, 255, 0.82);
  padding: 4rem 0 3rem;
  margin-top: 5rem;
}

.footer-inner {
  display: grid;
  gap: 2.8rem;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-brandmark {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-brandmark img {
  width: 140px;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.38));
}

.footer-heading {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--brand-gold);
  font-weight: 700;
}

.footer-text {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-contact-list {
  list-style: none;
  display: grid;
  gap: 0.6rem;
  padding: 0;
  margin: 0;
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 600;
}

.footer-contact-list a:hover {
  color: var(--brand-gold);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.6rem;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .brand img {
    width: 128px;
    height: 128px;
  }

  .logo-large {
    width: 165px;
    height: 165px;
  }

  .brand-name {
    font-size: 1.45rem;
    letter-spacing: 0.24em;
  }

  .brand-tagline {
    letter-spacing: 0.22em;
    font-size: 0.58rem;
  }
  
  .site-nav ul {
    gap: 1.1rem;
  }

  .hero {
    padding: 6.2rem 0 5.4rem;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .adu-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 820px) {
  .site-header .inner {
    gap: 0.75rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(320px, 82%);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: -24px 0 48px rgba(23, 32, 48, 0.22);
    padding: 6.25rem 1.75rem 2.5rem;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 160;
    pointer-events: none;
    overflow-y: auto;
    height: 100vh;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.35rem;
  }

  .site-nav li,
  .site-nav li.nav-cta {
    width: 100%;
    margin-left: 0;
  }

  .site-nav li.nav-cta .btn-nav {
    width: 100%;
    text-align: center;
  }

  body.nav-open .site-nav {
    transform: translateX(0);
    pointer-events: auto;
  }

  body.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  body.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

@media (max-width: 640px) {
  .site-header .inner {
    flex-wrap: nowrap;
    text-align: left;
    justify-content: center;
    position: relative;
  }

  .brand {
    gap: 0.75rem;
    margin: 0 auto;
  }

  .brand img {
    width: 210px;
    height: 210px;
  }

  .logo-large {
    width: 270px;
    height: 270px;
  }

  .nav-toggle {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
  }

  .brand-name {
    font-size: 1.18rem;
    letter-spacing: 0.18em;
  }

  .brand-tagline {
    letter-spacing: 0.18em;
    font-size: 0.5rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .cta-row {
    width: 100%;
  }

  .btn-primary,
  .btn-secondary,
  .contact-cta .btn-primary {
    width: 100%;
  }

  .adu-actions {
    flex-direction: column;
    align-items: center;
  }

  .adu-actions .contact-link {
    text-align: center;
  }

  .contact-cta {
    padding: 3rem 2.4rem;
  }

  .contact-cta h3 {
    font-size: 2rem;
  }

  .contact-cta .contact-links {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-cta .cta-reveal {
    justify-content: center;
    text-align: center;
  }

  .process-list li {
    padding: 1.4rem 1.2rem 1.4rem 3.2rem;
  }

  .process-list li::before {
    left: 1rem;
  }

  .footer-inner {
    text-align: center;
  }

  .footer-columns {
    justify-items: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-brandmark img {
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .brand img {
    width: 210px;
    height: 210px;
  }

  .logo-large {
    width: 270px;
    height: 270px;
  }

  .brand-tagline {
    display: none;
  }
}
