/* ============================================================
   TK Estate Co. — Main Stylesheet
   tkestateco.com
   ============================================================ */

/* ------------------------------------------------------------
   Custom Properties — Theme: Estate Classic (default)
   ------------------------------------------------------------ */
:root {
  --slate:      #0C1F45;
  --slate-deep: #071330;
  --linen:      #FAF5EC;
  --linen-warm: #EFE5D4;
  --gold:       #E8612A;
  --gold-light: #F08050;
  --ink:        #050D20;
  --mist:       #FBF7F0;
  --chalk:      #FEFCF8;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-sc:      'Cormorant SC', 'Cormorant Garamond', Georgia, serif;

  --max-width: 1100px;
  --section-pad: 6rem 2rem;
  --section-pad-sm: 4rem 1.5rem;

  --transition: 0.25s ease;
}

/* ── BLUES ─────────────────────────────────────────────────── */

/* Theme: Royal Navy — deep saturated navy, white, bright gold */
html[data-theme="royal-navy"] {
  --slate:      #0C1F45;
  --slate-deep: #071330;
  --linen:      #F7F9FF;
  --linen-warm: #DDE6F2;
  --gold:       #D4AF37;
  --gold-light: #E8CC6A;
  --ink:        #050D20;
  --mist:       #EEF3FA;
  --chalk:      #F7F9FF;
}

/* Theme: Midnight Prestige — deep blue-black, warm cream, rich gold */
html[data-theme="midnight"] {
  --slate:      #1A2744;
  --slate-deep: #0F1A30;
  --linen:      #F0EAD8;
  --linen-warm: #E2D9C4;
  --gold:       #D4A843;
  --gold-light: #E8C46A;
  --ink:        #080E1C;
  --mist:       #F8F4EC;
  --chalk:      #FBF7EE;
}

/* Theme: Storm Blue — moody slate-blue, cool gray, silver-blue */
html[data-theme="storm"] {
  --slate:      #1E3A5F;
  --slate-deep: #102540;
  --linen:      #E8EFF7;
  --linen-warm: #D0DCE8;
  --gold:       #7CA3C4;
  --gold-light: #A0C0D8;
  --ink:        #0A1929;
  --mist:       #F0F4F9;
  --chalk:      #F6F9FC;
}

/* Theme: Aegean — Mediterranean blue, sandy cream, warm gold */
html[data-theme="aegean"] {
  --slate:      #2B5797;
  --slate-deep: #1A3D70;
  --linen:      #F0EDE0;
  --linen-warm: #E0D8C4;
  --gold:       #C8A951;
  --gold-light: #DDBF72;
  --ink:        #0F2040;
  --mist:       #F5F3EC;
  --chalk:      #FAFAF5;
}

/* ── BOLD / FUNKY ───────────────────────────────────────────── */

/* Theme: Emerald Estate — deep forest green, ivory, gold */
html[data-theme="emerald"] {
  --slate:      #1B4332;
  --slate-deep: #0D2B1F;
  --linen:      #F4F8F5;
  --linen-warm: #D8EAE0;
  --gold:       #B7954A;
  --gold-light: #D4B472;
  --ink:        #081A10;
  --mist:       #EEF5F0;
  --chalk:      #F7FCF8;
}

/* Theme: Burgundy Prestige — deep wine, champagne, gold */
html[data-theme="burgundy"] {
  --slate:      #5C1A2E;
  --slate-deep: #3D0E1E;
  --linen:      #FBF4EE;
  --linen-warm: #F0E2D4;
  --gold:       #C9A76D;
  --gold-light: #DEC090;
  --ink:        #200812;
  --mist:       #FAF3F0;
  --chalk:      #FEF9F5;
}

/* Theme: Obsidian & Gold — near black, white, electric gold */
html[data-theme="obsidian"] {
  --slate:      #111111;
  --slate-deep: #000000;
  --linen:      #FFFFFF;
  --linen-warm: #EEEEEE;
  --gold:       #D4AF37;
  --gold-light: #EDD060;
  --ink:        #000000;
  --mist:       #F5F5F5;
  --chalk:      #FFFFFF;
}

/* Theme: Copper & Smoke — near black, warm off-white, copper */
html[data-theme="copper"] {
  --slate:      #1C1410;
  --slate-deep: #0E0A07;
  --linen:      #F5F0E8;
  --linen-warm: #E8DFD0;
  --gold:       #B87333;
  --gold-light: #D4944A;
  --ink:        #0A0705;
  --mist:       #F2EDE4;
  --chalk:      #FBF7F2;
}

/* ── ORANGE ─────────────────────────────────────────────────── */

/* Theme: Hermès — deep navy anchor, warm cream, mandarin orange */
html[data-theme="hermes"] {
  --slate:      #0C1F45;
  --slate-deep: #071330;
  --linen:      #FAF5EC;
  --linen-warm: #EFE5D4;
  --gold:       #E8612A;
  --gold-light: #F08050;
  --ink:        #050D20;
  --mist:       #FBF7F0;
  --chalk:      #FEFCF8;
}

/* Theme: Mandarin Midnight — near black, warm linen, bright mandarin */
html[data-theme="mandarin"] {
  --slate:      #1A1410;
  --slate-deep: #0D0A07;
  --linen:      #F5EFE0;
  --linen-warm: #EAE0CC;
  --gold:       #E07534;
  --gold-light: #EE9A5A;
  --ink:        #0A0705;
  --mist:       #F8F3E8;
  --chalk:      #FBF8F2;
}

/* Theme: Saffron & Slate — classic slate base, linen, warm saffron-orange */
html[data-theme="saffron"] {
  --slate:      #2D3A4A;
  --slate-deep: #1C2530;
  --linen:      #F5EFE4;
  --linen-warm: #EAE0D0;
  --gold:       #F0920A;
  --gold-light: #F8B040;
  --ink:        #101820;
  --mist:       #F8F4EC;
  --chalk:      #FDFAF4;
}

/* ------------------------------------------------------------
   Reset & Base
   ------------------------------------------------------------ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 18px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--ink);
  background: var(--chalk);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ------------------------------------------------------------
   Typography Scale
   ------------------------------------------------------------ */
.label {
  font-family: var(--font-sc);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

.display {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
}

h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.2rem, 4.5vw, 3.75rem);
  line-height: 1.15;
  color: var(--ink);
}

h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.2;
  color: var(--ink);
}

h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: var(--slate);
}

p {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--ink);
}

.lead {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--slate-deep);
}

/* Gold rule divider */
.gold-rule {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}

.gold-rule--center {
  margin: 1.5rem auto;
}

/* ------------------------------------------------------------
   Layout Utilities
   ------------------------------------------------------------ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.container--narrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: var(--section-pad);
}

.section--linen {
  background: var(--linen);
}

.section--mist {
  background: var(--mist);
}

.section--slate {
  background: var(--slate);
  color: var(--linen);
}

.section--slate .label {
  color: var(--gold-light);
}

.section--slate h2,
.section--slate p,
.section--slate .lead {
  color: var(--linen);
}

.section--ink {
  background: var(--ink);
  color: var(--linen);
}

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

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

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

/* ------------------------------------------------------------
   Horizontal Logo (final brand mark)
   ------------------------------------------------------------ */
.logo--nav {
  width: 160px;
  height: auto;
  display: block;
  flex-shrink: 0;
}

.logo--hero {
  width: 100%;
  max-width: 380px;
  height: auto;
  display: block;
}

.logo--footer {
  width: 360px;
  height: auto;
  display: block;
  margin: 0 auto 1.75rem;
}

/* ------------------------------------------------------------
   Navigation
   ------------------------------------------------------------ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(7, 19, 48, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(232, 97, 42, 0.2);
  padding: 0 2rem;
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  text-decoration: none;
}

.nav__wordmark {
  font-family: var(--font-sc);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: var(--linen);
  line-height: 1;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__links a {
  font-family: var(--font-sc);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 245, 236, 0.75);
  transition: color var(--transition);
  text-decoration: none;
}

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

.nav__cta {
  font-family: var(--font-sc);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--linen) !important;
  background: var(--gold);
  padding: 0.6rem 1.25rem;
  border: 1px solid var(--gold);
  transition: background var(--transition), color var(--transition) !important;
}

.nav__cta:hover {
  background: transparent !important;
  border-color: var(--gold) !important;
  color: var(--gold) !important;
}

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--linen);
  transition: var(--transition);
}

/* ------------------------------------------------------------
   Hero
   ------------------------------------------------------------ */
.hero {
  background: var(--slate);
  background-image: linear-gradient(rgba(7,19,48,0.78), rgba(7,19,48,0.78)), url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  padding: 10rem 2rem 7rem;
  min-height: 92vh;
  display: flex;
  align-items: center;
}

.hero .display,
.hero h1 {
  color: var(--linen);
}

.hero .label {
  color: var(--gold-light);
}

.hero .lead {
  color: rgba(250, 245, 236, 0.82);
}

.hero__tagline {
  color: var(--gold-light);
}

.hero__inner {
  max-width: 780px;
  margin: 0 auto;
  display: block;
}

.hero__text {}

.hero__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--slate);
  margin-top: 2rem;
  opacity: 0.8;
}

.hero__crest {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__headshot {
  width: 100%;
  max-width: 210px;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ------------------------------------------------------------
   Buttons
   ------------------------------------------------------------ */
.btn {
  display: inline-block;
  font-family: var(--font-sc);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2.25rem;
  border: 1px solid currentColor;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  cursor: pointer;
}

.btn--slate {
  background: var(--slate);
  color: var(--linen);
  border-color: var(--slate);
}

.btn--slate:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--linen);
}

.btn--outline {
  background: transparent;
  color: var(--slate);
  border-color: var(--slate);
}

.btn--outline:hover {
  background: var(--slate);
  color: var(--linen);
}

.btn--outline-light {
  background: transparent;
  color: var(--linen);
  border-color: var(--linen);
}

.btn--outline-light:hover {
  background: var(--linen);
  color: var(--slate);
}

.btn--orange {
  background: var(--gold);
  color: var(--linen);
  border-color: var(--gold);
}

.btn--orange:hover {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

/* ------------------------------------------------------------
   Services Overview (Home)
   ------------------------------------------------------------ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3.5rem;
}

.service-card {
  padding: 2.25rem 2rem;
  border: 1px solid var(--gold);
  background: var(--chalk);
  transition: background var(--transition);
}

.service-card:hover {
  background: var(--linen);
}

.service-card__number {
  font-family: var(--font-sc);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  display: block;
  margin-bottom: 0.875rem;
}

.service-card h3 {
  margin-bottom: 0.625rem;
}

.service-card p {
  font-size: 1rem;
  color: #5a6a7a;
  line-height: 1.7;
}

.services-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sc);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--slate);
  margin-top: 2.5rem;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color var(--transition);
}

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

/* ------------------------------------------------------------
   Differentiator Section
   ------------------------------------------------------------ */
.diff-col {
  padding: 1rem 0;
  text-align: center;
}

.diff-col h3 {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
  color: var(--slate);
}

.diff-col p {
  font-size: 0.975rem;
  color: #5a6a7a;
  line-height: 1.75;
}

/* ------------------------------------------------------------
   Page Header (inner pages)
   ------------------------------------------------------------ */
.page-header {
  background: var(--linen);
  padding: 6rem 2rem 1.5rem;
  text-align: center;
}

.page-header--photo {
  background-image: linear-gradient(rgba(7,19,48,0.72), rgba(7,19,48,0.72)), var(--photo);
  background-size: cover;
  background-position: center;
  color: var(--linen);
}

.page-header--photo .label {
  color: var(--gold-light);
}

.page-header--photo h1,
.page-header--photo .lead {
  color: var(--linen);
}

.page-header__inner {
  max-width: 680px;
  margin: 0 auto;
}

.page-header .lead {
  margin-top: 1.25rem;
}

/* ------------------------------------------------------------
   Services Page
   ------------------------------------------------------------ */
.service-block {
  padding: 2.5rem 2rem;
  border: 1px solid var(--gold);
  background: var(--chalk);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 1.5rem;
}

.service-block:last-of-type {
  margin-bottom: 0;
}

.service-block__label {
  padding-top: 0.25rem;
}

.service-block__label .label {
  color: var(--slate);
  font-size: 0.65rem;
}

.service-block__label .service-num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 3rem;
  color: var(--linen-warm);
  line-height: 1;
  margin-top: 0.5rem;
}

.service-block h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-block p {
  margin-bottom: 0.875rem;
}

.service-note {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gold);
  margin-top: 0.5rem;
}

/* ------------------------------------------------------------
   About Page
   ------------------------------------------------------------ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  padding: var(--section-pad);
}

.about-grid .container {
  padding: 0;
}

.about-photo {
  background: var(--linen-warm);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a0a0a0;
  font-family: var(--font-sc);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  line-height: 1.45;
  color: var(--slate);
  padding: 2rem 0;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  margin: 2.5rem 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  padding: var(--section-pad);
  background: var(--mist);
}

.value-block h3 {
  margin-bottom: 0.75rem;
}

.value-block p {
  font-size: 0.975rem;
  color: #5a6a7a;
  line-height: 1.75;
}

/* ------------------------------------------------------------
   Contact Page
   ------------------------------------------------------------ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 5rem;
  padding: var(--section-pad);
  max-width: var(--max-width);
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-family: var(--font-sc);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--slate);
}

.form-group input:not([type="checkbox"]),
.form-group select,
.form-group textarea {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--ink);
  background: var(--chalk);
  border: 1px solid var(--linen-warm);
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--slate);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.25rem;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--ink);
}

.form-checkbox input[type="checkbox"] {
  width: 15px;
  height: 15px;
  border: 1px solid var(--linen-warm);
  background: var(--chalk);
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
  accent-color: var(--slate);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.contact-sidebar {
  padding-top: 0.5rem;
}

.contact-detail {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--linen-warm);
}

.contact-detail h3 {
  font-size: 1rem;
  margin-bottom: 0.875rem;
}

.contact-detail p {
  font-size: 0.95rem;
  color: #5a6a7a;
  line-height: 1.7;
}

.contact-detail a {
  color: var(--slate);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
}

/* ------------------------------------------------------------
   CTA Section
   ------------------------------------------------------------ */
.cta-section {
  background: var(--slate);
  padding: var(--section-pad);
  text-align: center;
}

.cta-section h2 {
  color: var(--linen);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
}

.cta-section p {
  color: var(--linen);
  opacity: 0.8;
  max-width: 560px;
  margin: 1.25rem auto 2.25rem;
}

/* ------------------------------------------------------------
   Footer
   ------------------------------------------------------------ */
.footer {
  background: var(--ink);
  padding: 3.5rem 2rem;
  text-align: center;
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer__wordmark {
  font-family: var(--font-sc);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--linen);
  display: block;
  margin: 0.875rem 0 0.375rem;
}

.footer__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gold);
  display: block;
  margin-bottom: 1.75rem;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.75rem;
}

.footer__links a {
  font-family: var(--font-sc);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: rgba(237, 232, 223, 0.5);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--linen);
}

.footer__contact {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: rgba(237, 232, 223, 0.55);
  margin-bottom: 1.5rem;
}

.footer__contact a {
  color: rgba(237, 232, 223, 0.55);
}

.footer__copy {
  font-family: var(--font-sc);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: rgba(237, 232, 223, 0.3);
}

/* ------------------------------------------------------------
   Responsive
   ------------------------------------------------------------ */
@media (max-width: 900px) {
  :root {
    --section-pad: 4rem 1.5rem;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero__crest {
    order: -1;
  }

  .gold-rule { margin-left: auto; margin-right: auto; }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 { grid-template-columns: 1fr 1fr; }

  .service-block {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-block__label .service-num {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 3rem 1.5rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  html {
    font-size: 16px;
  }

  p {
    line-height: 1.65;
  }

  .lead {
    font-size: 1.05rem;
    line-height: 1.7;
  }

  .service-block {
    padding: 1.75rem 1.25rem;
  }

  .nav__links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--mist);
    border-bottom: 1px solid var(--linen-warm);
    padding: 1rem 0;
  }

  .nav__links.open {
    display: flex;
    background: var(--slate-deep);
  }

  .nav__links a {
    padding: 0.875rem 2rem;
    display: block;
  }

  .nav__links .nav__cta {
    margin: 0.5rem 2rem 0.25rem;
    display: block;
    text-align: center;
    padding: 0.75rem 1.25rem;
  }

  .nav__toggle {
    display: flex;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }

  .hero {
    padding: 8rem 1.5rem 5rem;
    min-height: auto;
  }
}
