:root {
    --bg: #101214;
    --panel: #171A1D;
    --panel-soft: #1B1E22;
    --ink: #F4EFE8;
    --muted: rgba(244,239,232,.68);
    --muted-soft: rgba(244,239,232,.52);
    --line: rgba(255,255,255,.10);
    --line-soft: rgba(255,255,255,.075);
    --gold: #C8A75A;
    --gold-soft: rgba(200,167,90,.32);
    --shadow: 0 24px 60px rgba(0,0,0,.30);
    --container: 1180px;
  }

  * { box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  .site {
    display: flex;
    flex-direction: column;
  }

  .site > .container:first-child { order: 1; }
  main { order: 2; }
  #services { order: 3; }
  #about { order: 4; }
  #projects { order: 5; }
  #why { order: 6; }
  #faq { order: 7; }
  #contact { order: 8; }
  footer { order: 9; }

  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }

  .container {
    width: min(100% - 40px, var(--container));
    margin: 0 auto;
  }

  /* Header */
  header {
    min-height: 96px;
    padding: 16px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-bottom: 1px solid var(--line);
    position: relative;
    z-index: 30;
  }

  .brand {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    min-width: 0;
    padding: 4px 0;
  }

  .brand img {
    width: clamp(225px, 22.5vw, 312px);
    height: auto;
  }

  .subline-bar {
    padding: 12px 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .brand-subline {
    display: block;
    width: 100%;
    white-space: normal;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold);
  }

  nav {
    display: flex;
    align-items: center;
    gap: clamp(14px, 2vw, 28px);
    font-size: 13px;
    font-weight: 700;
    color: rgba(244,239,232,.78);
  }

  nav a { padding: 10px 0; white-space: nowrap; }
  nav a:hover { color: var(--ink); }

  nav .nav-cta {
    padding: 12px 20px;
    border: 1px solid var(--gold-soft);
    background: rgba(200,167,90,.08);
    border-radius: 999px;
    color: var(--ink);
  }

  .menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: transparent;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .menu-toggle span,
  .menu-toggle::before,
  .menu-toggle::after {
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ink);
    position: relative;
    transition: transform .2s ease, opacity .2s ease;
  }

  .menu-toggle::before { transform: translateY(-6px); }
  .menu-toggle::after { transform: translateY(6px); }

  .menu-toggle.open span { opacity: 0; }
  .menu-toggle.open::before { transform: translateY(0) rotate(45deg); }
  .menu-toggle.open::after { transform: translateY(-2px) rotate(-45deg); }

  /* Hero */
  .hero-media {
    position: relative;
    margin-top: 24px;
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
  }

  .hero-photo {
    width: 100%;
    height: clamp(315px, 46.5vw, 510px);
    object-fit: cover;
    display: block;
  }

  .hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(6,7,8,.86) 0%, rgba(6,7,8,.55) 32%, rgba(6,7,8,0) 62%);
    pointer-events: none;
  }

  .hero-media-label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 22px clamp(20px, 4vw, 48px) clamp(26px, 4vw, 44px);
  }

  .hero-media-label small {
    display: block;
    font-family: "Sora", Arial, sans-serif;
    font-size: clamp(24px, 3.4vw, 40px);
    line-height: 1.12;
    letter-spacing: -.03em;
    text-transform: none;
    font-weight: 650;
    color: var(--gold);
    margin-bottom: 6px;
  }

  .hero-media-label strong {
    display: block;
    font-family: "Sora", Arial, sans-serif;
    font-size: clamp(24px, 3.4vw, 40px);
    line-height: 1.12;
    letter-spacing: -.03em;
    font-weight: 650;
    color: #fff;
    max-width: 780px;
  }

  .hero-summary {
    padding: clamp(30px, 5vw, 54px) 0 clamp(36px, 6vw, 68px);
    border-top: 1px solid var(--line-soft);
  }

  .hero-summary-panel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 36px 0;
    border-top: 1px solid var(--gold-soft);
    border-bottom: 1px solid var(--gold-soft);
  }

  h1 {
    font-family: "Sora", Arial, sans-serif;
    margin: 0;
    color: #fff;
    font-size: clamp(34px, 5.4vw, 50px);
    line-height: 1.06;
    letter-spacing: -.04em;
    font-weight: 650;
    max-width: 720px;
  }

  .victoria-gold { color: var(--gold); }

  .hero-summary-right p {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.65;
    max-width: 620px;
  }

  .summary-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
  }

  .summary-actions .btn {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    transition: transform .2s ease;
  }
  .btn:hover { transform: translateY(-2px); }

  .btn-primary {
    background: var(--gold);
    color: #14110B;
    border: 1px solid var(--gold);
  }

  .btn-secondary {
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255,255,255,.28);
  }

  /* Sections */
  section { padding: clamp(56px, 9vw, 96px) 0; border-top: 1px solid var(--line-soft); }

  .section-head {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .eyebrow {
    display: block;
    margin-bottom: 14px;
    font-family: "Sora", Arial, sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold);
  }

  h2 {
    font-family: "Sora", Arial, sans-serif;
    margin: 0;
    color: var(--ink);
    font-size: clamp(28px, 4.6vw, 42px);
    line-height: 1.08;
    letter-spacing: -.035em;
    font-weight: 640;
    max-width: 720px;
  }

  h2 span { color: var(--gold); }

  .section-head p {
    margin: 0;
    font-size: 17px;
    line-height: 1.65;
    color: var(--muted);
    max-width: 640px;
  }

  /* Services */
  .expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
  }

  .expertise-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    background: var(--panel);
    box-shadow: 0 18px 46px rgba(0,0,0,.22);
  }

  .card-photo { width: 100%; height: 210px; object-fit: cover; }

  .card-copy { padding: 22px 20px 24px; }

  .card-copy small {
    display: block;
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 12px;
  }

  .card-copy h3 {
    font-family: "Sora", Arial, sans-serif;
    color: var(--ink);
    font-size: 21px;
    line-height: 1.2;
    font-weight: 650;
    margin: 0 0 10px;
  }

  .card-copy p {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--muted);
  }

  /* About split */
  .split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: stretch;
  }

  .split-image {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--line);
    height: 100%;
    min-height: 320px;
    align-self: stretch;
  }

  .split-photo { width: 100%; height: 100%; min-height: 320px; object-fit: cover; }

  .split-copy { display: flex; flex-direction: column; justify-content: center; }

  .lead {
    margin: 0 0 8px;
    font-size: 19px;
    line-height: 1.6;
    color: rgba(244,239,232,.8);
    max-width: 600px;
  }

  .step-list {
    margin-top: 30px;
    border-top: 1px solid var(--line-soft);
  }

  .step {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .step span {
    font-family: "Sora", Arial, sans-serif;
    color: var(--gold);
    font-weight: 800;
  }

  .step strong {
    display: block;
    font-family: "Sora", Arial, sans-serif;
    font-size: 18px;
    letter-spacing: -.02em;
    margin-bottom: 6px;
  }

  .step p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
    font-size: 14.5px;
  }

  /* Project types */
  .project-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .project-type {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: var(--bg);
    box-shadow: 0 16px 42px rgba(0,0,0,.2);
    isolation: isolate;
    display: flex;
    flex-direction: column;
  }

  .project-photo { width: 100%; aspect-ratio: 4 / 3; height: auto; object-fit: cover; display: block; }

  .project-type h3 {
    font-family: "Sora", Arial, sans-serif;
    color: #fff;
    padding: 16px 18px;
    font-size: 17px;
    line-height: 1.25;
    font-weight: 650;
    margin: 0;
    background: var(--panel);
    text-align: center;
  }

  @media (min-width: 700px) {
    .project-grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (min-width: 960px) {
    .project-grid { grid-template-columns: repeat(3, 1fr); }
    .project-photo { aspect-ratio: 4 / 3; }
  }

  /* Why values */
  .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
  }

  .value {
    padding: 28px;
    min-height: 180px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 14px 36px rgba(0,0,0,.16);
  }

  .value strong {
    display: block;
    font-family: "Sora", Arial, sans-serif;
    font-size: 21px;
    letter-spacing: -.03em;
    margin-bottom: 10px;
  }

  .value p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.58; }


  /* FAQ — Phase 1 SEO, matched to the approved visual system */
  .faq-list {
    display: grid;
    gap: 12px;
    max-width: 920px;
  }

  .faq-item {
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--panel);
    overflow: hidden;
  }

  .faq-item summary {
    cursor: pointer;
    list-style: none;
    position: relative;
    padding: 20px 54px 20px 22px;
    font-family: "Sora", Arial, sans-serif;
    color: var(--ink);
    font-size: 17px;
    line-height: 1.35;
    font-weight: 600;
  }

  .faq-item summary::-webkit-details-marker { display: none; }

  .faq-item summary::after {
    content: "+";
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 24px;
    font-weight: 400;
  }

  .faq-item[open] summary::after { content: "−"; }

  .faq-item p {
    margin: 0;
    padding: 0 22px 22px;
    max-width: 820px;
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.65;
  }

  .faq-action { margin-top: 22px; }

  /* CTA */
  .cta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--line);
  }

  .cta-photo-wrap { min-height: 260px; }
  .cta-photo { width: 100%; height: 100%; min-height: 260px; object-fit: cover; }

  .cta-copy { padding: clamp(26px, 5vw, 44px); background: var(--panel); }

  .cta h2 { color: var(--ink); }
  .cta p { color: rgba(244,239,232,.78); max-width: 560px; font-size: 18px; }
  .cta .hero-actions { margin-top: 22px; }

  /* Footer */
  footer { border-top: 1px solid var(--gold-soft); background: var(--bg); }

  .footer-main { padding: 56px 0 40px; }

  .footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--line-soft);
  }

  .footer-address {
    max-width: 380px;
    padding: 26px;
    border: 1px solid var(--gold-soft);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(20,23,27,.9), rgba(9,11,14,.98));
    box-shadow: 0 18px 42px rgba(0,0,0,.2);
  }

  .footer-logo { width: 200px; height: auto; margin-bottom: 14px; }

  .footer-brand-details {
    margin: 0;
    color: var(--ink);
    font-size: 14.5px;
    line-height: 1.65;
    font-weight: 600;
  }

  .footer-contact-list {
    list-style: none;
    margin: 14px 0 0;
    padding: 12px 0 0;
    border-top: 1px solid var(--line-soft);
    display: grid;
    gap: 11px;
  }

  .footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--ink);
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.5;
  }

  .footer-contact-list svg {
    flex: 0 0 auto;
    margin-top: 2px;
    width: 16px;
    height: 16px;
    color: var(--gold);
  }

  .footer-contact-list a { color: var(--ink); }
  .footer-contact-list a:hover { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

  .footer-contact-btn {
    margin-top: 18px;
    display: inline-flex;
  }

  .footer-link-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .footer-link-group h4 {
    margin: 0 0 14px;
    font-family: "Sora", Arial, sans-serif;
    color: var(--gold);
    font-size: 13px;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-weight: 800;
  }

  .footer-link-group ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }

  .footer-link-group a {
    color: rgba(244,239,232,.82);
    font-size: 13.5px;
    font-weight: 600;
  }
  .footer-link-group a:hover { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

  .footer-legal { padding: 22px 0 30px; }

  .footer-legal-inner {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .footer-legal-links { display: flex; flex-wrap: wrap; gap: 18px; }

  .footer-legal a, .footer-legal span {
    color: rgba(244,239,232,.62);
    font-size: 13px;
    font-weight: 600;
  }
  .footer-legal a:hover { color: var(--gold); }

  /* Tablet+ */
  @media (min-width: 700px) {
    .footer-link-grid { grid-template-columns: repeat(4, 1fr); }
    .hero-summary-panel { grid-template-columns: 1fr 1fr; align-items: center; }
    .split { grid-template-columns: 1fr 1fr; }
    .cta { grid-template-columns: minmax(280px, 420px) 1fr; }
    .footer-legal-inner { flex-direction: row; align-items: center; justify-content: space-between; }
  }

  @media (min-width: 860px) {
    .footer-top { grid-template-columns: .9fr 1.4fr; }
  }

  @media (min-width: 960px) {
    nav { display: flex; }
    .menu-toggle { display: none; }
    .section-head { grid-template-columns: 1.1fr .8fr; align-items: end; }
  }

  @media (max-width: 959px) {
    nav {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      flex-direction: column;
      align-items: stretch;
      gap: 2px;
      background: var(--panel);
      border-bottom: 1px solid var(--line);
      padding: 10px 0 16px;
      z-index: 25;
    }
    nav.open { display: flex; }
    nav a { padding: 14px 24px; width: 100%; }
    nav .nav-cta { margin: 8px 24px 0; text-align: center; justify-content: center; }
    .menu-toggle { display: inline-flex; }
  }

  @media (min-width: 640px) {
    .hero-media-label strong,
    .hero-media-label small { font-size: clamp(28px, 4vw, 42px); }
  }

/* SEO landing pages — deliberately uses the existing Corlendis visual language. */
.service-more {
  display: inline-flex;
  margin-top: 16px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
}
.service-more:hover { text-decoration: underline; text-underline-offset: 4px; }

.seo-page main { order: 2; }
.seo-page .seo-hero { padding: 64px 0 48px; border-bottom: 1px solid var(--line); }
.seo-page .breadcrumbs { margin-bottom: 22px; color: var(--muted-soft); font-size: 13px; }
.seo-page .breadcrumbs a { color: var(--muted); }
.seo-page .breadcrumbs a:hover { color: var(--gold); }
.seo-page .seo-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: center; }
.seo-page .seo-kicker { margin: 0 0 12px; color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.seo-page h1 { margin: 0; font-family: "Sora", "Inter", sans-serif; font-size: clamp(38px, 5.3vw, 68px); line-height: 1.04; letter-spacing: -.035em; }
.seo-page h1 span, .seo-page h2 span { color: var(--gold); }
.seo-page .seo-intro { margin: 24px 0 0; max-width: 760px; color: var(--muted); font-size: clamp(17px, 1.65vw, 20px); line-height: 1.72; }
.seo-page .seo-hero-image { width: 100%; min-height: 410px; height: 100%; object-fit: cover; border-radius: 20px; box-shadow: var(--shadow); }
.seo-page .seo-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.seo-page .seo-section { padding: 72px 0; border-bottom: 1px solid var(--line-soft); }
.seo-page .seo-section.soft { background: rgba(255,255,255,.018); }
.seo-page .seo-section-head { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 46px; align-items: start; margin-bottom: 36px; }
.seo-page .seo-section h2 { margin: 0; font-family: "Sora", "Inter", sans-serif; font-size: clamp(30px, 4vw, 46px); line-height: 1.12; letter-spacing: -.025em; }
.seo-page .seo-section p { color: var(--muted); }
.seo-page .seo-section-head > p { margin: 2px 0 0; font-size: 17px; line-height: 1.75; }
.seo-page .seo-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.seo-page .seo-card-grid.two { grid-template-columns: repeat(2, 1fr); }
.seo-page .seo-card { padding: 26px; border: 1px solid var(--line); border-radius: 18px; background: var(--panel); }
.seo-page .seo-card small { display: block; margin-bottom: 12px; color: var(--gold); font-weight: 800; letter-spacing: .08em; }
.seo-page .seo-card h3 { margin: 0 0 10px; font-family: "Sora", "Inter", sans-serif; font-size: 20px; line-height: 1.3; }
.seo-page .seo-card p { margin: 0; font-size: 15px; line-height: 1.7; }
.seo-page .seo-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.seo-page .seo-list li { position: relative; padding-left: 24px; color: var(--muted); }
.seo-page .seo-list li::before { content: ""; position: absolute; left: 0; top: .72em; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.seo-page .seo-callout { padding: 30px; border: 1px solid var(--gold-soft); border-radius: 20px; background: linear-gradient(135deg, rgba(200,167,90,.10), rgba(255,255,255,.025)); }
.seo-page .seo-callout strong { display: block; margin-bottom: 8px; font-family: "Sora", "Inter", sans-serif; font-size: 21px; }
.seo-page .seo-callout p { margin: 0; }
.seo-page .seo-faq { display: grid; gap: 12px; }
.seo-page .seo-faq details { border: 1px solid var(--line); border-radius: 14px; background: var(--panel); padding: 0 20px; }
.seo-page .seo-faq summary { cursor: pointer; padding: 19px 0; font-weight: 750; }
.seo-page .seo-faq details p { margin: 0 0 20px; }
.seo-page .related-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.seo-page .related-links a { display: block; padding: 18px; border: 1px solid var(--line); border-radius: 14px; background: var(--panel); font-weight: 700; }
.seo-page .related-links a:hover { border-color: var(--gold-soft); color: var(--gold); }
.seo-page .page-cta { padding: 52px 0 74px; }
.seo-page .page-cta-box { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; padding: 34px; border-radius: 22px; background: var(--panel-soft); border: 1px solid var(--line); }
.seo-page .page-cta-box h2 { margin: 0 0 8px; font-size: clamp(28px, 4vw, 42px); }
.seo-page .page-cta-box p { margin: 0; color: var(--muted); }
.seo-page .founder-note { margin-top: 22px; padding: 18px 20px; border-left: 3px solid var(--gold); background: rgba(255,255,255,.025); color: var(--muted); font-size: 14px; }

@media (max-width: 900px) {
  .seo-page .seo-hero-grid,
  .seo-page .seo-section-head { grid-template-columns: 1fr; gap: 26px; }
  .seo-page .seo-hero-image { min-height: 320px; max-height: 480px; }
  .seo-page .seo-card-grid,
  .seo-page .related-links { grid-template-columns: 1fr 1fr; }
  .seo-page .page-cta-box { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .seo-page .seo-hero { padding: 42px 0 36px; }
  .seo-page .seo-section { padding: 54px 0; }
  .seo-page .seo-card-grid,
  .seo-page .seo-card-grid.two,
  .seo-page .related-links { grid-template-columns: 1fr; }
  .seo-page .seo-hero-image { min-height: 250px; }
}

/* Lean SEO information pages */
.seo-essential-list{max-width:900px;margin:0;padding:0;list-style:none;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px 28px}.seo-essential-list li{position:relative;padding:12px 0 12px 22px;border-bottom:1px solid rgba(255,255,255,.10)}.seo-essential-list li:before{content:"—";position:absolute;left:0;color:var(--gold)}@media(max-width:720px){.seo-essential-list{grid-template-columns:1fr}}


/* v5 simple photo-and-copy SEO pages */
.seo-page .seo-simple { padding: 56px 0 72px; }
.seo-page .seo-simple .breadcrumbs { margin-bottom: 24px; color: var(--muted-soft); font-size: 13px; }
.seo-page .seo-simple .breadcrumbs a { color: var(--muted); }
.seo-page .seo-simple .breadcrumbs a:hover { color: var(--gold); }
.seo-page .seo-simple-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 40px; align-items: center; }
.seo-page .seo-simple-media img { display: block; width: 100%; height: 100%; min-height: 360px; object-fit: cover; border-radius: 20px; box-shadow: var(--shadow); }
.seo-page .seo-simple-copy { max-width: 620px; }
.seo-page .seo-simple-copy h1 { margin: 0; font-family: "Sora", "Inter", sans-serif; font-size: clamp(34px, 4.5vw, 58px); line-height: 1.06; letter-spacing: -.03em; }
.seo-page .seo-simple-copy .seo-kicker { margin: 0 0 14px; color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.seo-page .seo-simple-copy .seo-intro { margin: 22px 0 0; color: var(--muted); font-size: 17px; line-height: 1.78; }
.seo-page .seo-mini-list { margin: 22px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.seo-page .seo-mini-list li { position: relative; padding-left: 22px; color: var(--muted); line-height: 1.65; }
.seo-page .seo-mini-list li::before { content: ""; position: absolute; left: 0; top: .72em; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.seo-page .seo-simple-copy .seo-actions { margin-top: 28px; }
@media (max-width: 920px) { .seo-page .seo-simple-grid { grid-template-columns: 1fr; gap: 26px; } .seo-page .seo-simple-media img { min-height: 280px; } }
@media (max-width: 640px) { .seo-page .seo-simple { padding: 42px 0 58px; } .seo-page .seo-simple-media img { min-height: 220px; } }
