/*
Theme Name: PetLoveCaree
Theme URI: https://www.petlovecaree.online
Author: PetLoveCaree
Author URI: https://www.petlovecaree.online
Description: Premium German pet-care WordPress theme with Startseite, Über uns, Leistungen, and Kontakt. Unsplash imagery.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: petlovecaree
Tags: one-page, custom-menu, featured-images, translation-ready, pets
*/

:root {
  --linen: #f4eee4;
  --linen-deep: #e8dfd0;
  --paper: #fffaf3;
  --pine: #16382f;
  --pine-mid: #1f4d42;
  --pine-soft: #2d6a5a;
  --clay: #c45c26;
  --clay-hot: #d56b32;
  --honey: #d9a441;
  --moss: #8aa37a;
  --ink: #1b1712;
  --ink-soft: #4d463c;
  --muted: #7a7268;
  --line: rgba(22, 56, 47, 0.12);
  --shadow: 0 30px 70px rgba(22, 56, 47, 0.18);
  --shadow-soft: 0 14px 36px rgba(22, 56, 47, 0.1);
  --radius: 18px;
  --radius-lg: 28px;
  --header-h: 84px;
  --font-display: "Newsreader", Georgia, serif;
  --font-body: "Sora", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background: var(--linen);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

h1,
h2,
h3,
.logo {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: rgba(196, 92, 38, 0.12);
  color: var(--clay);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tag::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--clay);
  border-radius: 50%;
}

.tag-on-dark {
  background: rgba(255, 255, 255, 0.12);
  color: var(--honey);
}

.tag-on-dark::before {
  background: var(--honey);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 28px;
  border: none;
  background: var(--clay);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 14px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  box-shadow: 0 10px 24px rgba(196, 92, 38, 0.32);
}

.btn:hover {
  background: var(--clay-hot);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  box-shadow: none;
}

.btn-ghost:hover {
  background: #fff;
  color: var(--pine);
  border-color: #fff;
}

.btn-pine {
  background: var(--pine);
  box-shadow: 0 10px 24px rgba(22, 56, 47, 0.28);
}

.btn-pine:hover {
  background: var(--pine-mid);
  color: #fff;
}

.btn-full {
  width: 100%;
}

/* Header — full-width atelier bar, not a pill */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
}

.header-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--clay), var(--honey) 55%, var(--moss));
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--header-h);
  padding: 0 28px;
  background: rgba(244, 238, 228, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.site-header.is-scrolled .header-shell {
  background: rgba(22, 56, 47, 0.96);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 26px;
  color: var(--pine);
  letter-spacing: -0.02em;
}

.logo-paw {
  width: 26px;
  height: 26px;
  fill: var(--clay);
  flex-shrink: 0;
}

.logo-accent {
  color: var(--clay);
  font-style: italic;
}

.site-header.is-scrolled .logo {
  color: #fff;
}

.site-header.is-scrolled .logo-accent {
  color: var(--honey);
}

.site-header.is-scrolled .logo-paw {
  fill: var(--honey);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 12px;
  cursor: pointer;
  position: relative;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--pine);
  border-radius: 2px;
}

.nav-toggle span {
  top: 50%;
  transform: translateY(-50%);
}

.nav-toggle::before {
  top: 14px;
}

.nav-toggle::after {
  bottom: 14px;
}

.primary-nav ul {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-nav a {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  border-radius: 10px;
  transition: background 0.2s ease, color 0.2s ease;
}

.primary-nav a:hover,
.primary-nav a.is-active {
  background: var(--linen-deep);
  color: var(--pine);
}

.site-header.is-scrolled .primary-nav a {
  color: rgba(255, 255, 255, 0.78);
}

.site-header.is-scrolled .primary-nav a:hover,
.site-header.is-scrolled .primary-nav a.is-active {
  background: rgba(255, 255, 255, 0.1);
  color: var(--honey);
}

.header-cta {
  min-height: 44px;
  padding: 0 22px;
  font-size: 13px;
  border-radius: 12px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--header-h) + 48px) 0 72px;
  background:
    radial-gradient(1200px 500px at 10% 0%, rgba(217, 164, 65, 0.18), transparent 55%),
    linear-gradient(160deg, #122c26 0%, var(--pine) 42%, #0f241f 100%);
  color: #fff;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  right: -80px;
  bottom: -80px;
  background: radial-gradient(circle, rgba(196, 92, 38, 0.35), transparent 68%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(42px, 6vw, 72px);
  margin: 18px 0 18px;
  max-width: 12ch;
}

.hero-copy h1 em {
  font-style: italic;
  color: var(--honey);
}

.hero-copy p {
  max-width: 46ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  margin: 0 0 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.hero-metrics {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-metrics strong {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--honey);
}

.hero-metrics span {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.hero-frames {
  position: relative;
  min-height: 540px;
}

.frame {
  position: absolute;
  margin: 0;
  background: #fff;
  padding: 12px 12px 40px;
  box-shadow: var(--shadow);
  border-radius: 6px;
}

.frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.frame figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pine);
  text-align: center;
}

.frame-a {
  width: 300px;
  height: 390px;
  top: 24px;
  left: 90px;
  transform: rotate(-7deg);
  z-index: 2;
}

.frame-a img {
  height: 320px;
}

.frame-b {
  width: 210px;
  height: 280px;
  top: 0;
  right: 18px;
  transform: rotate(8deg);
  z-index: 3;
}

.frame-b img {
  height: 214px;
}

.frame-c {
  width: 190px;
  height: 250px;
  bottom: 18px;
  left: 8px;
  transform: rotate(5deg);
  z-index: 4;
}

.frame-c img {
  height: 186px;
}

.hero-orb {
  position: absolute;
  right: 36px;
  bottom: 48px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: var(--clay);
  color: #fff;
  display: grid;
  place-content: center;
  text-align: center;
  z-index: 5;
  box-shadow: 0 16px 32px rgba(196, 92, 38, 0.4);
}

.hero-orb strong {
  font-family: var(--font-display);
  font-size: 22px;
}

.hero-orb span {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Companions */
.companions {
  padding: 88px 0 40px;
}

.section-head {
  max-width: 640px;
  margin-bottom: 40px;
}

.section-head h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin: 14px 0 12px;
  color: var(--pine);
}

.section-head p {
  margin: 0;
  color: var(--ink-soft);
}

.companion-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.companion-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(22, 56, 47, 0.06);
}

.companion-card--2 {
  transform: translateY(28px);
}

.companion-card--4 {
  transform: translateY(28px);
}

.companion-media {
  position: relative;
  height: 220px;
}

.companion-media img {
  width: 100%;
  height: 100%;
}

.companion-chip {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 6px 12px;
  background: rgba(255, 250, 243, 0.94);
  color: var(--pine);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
}

.companion-body {
  padding: 20px 20px 24px;
}

.companion-body h3 {
  margin: 0 0 8px;
  font-size: 24px;
  color: var(--pine);
}

.companion-body p {
  margin: 0;
  font-size: 14px;
  color: var(--ink-soft);
}

/* About */
.about {
  padding: 100px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.about-collage {
  position: relative;
  min-height: 560px;
}

.about-main {
  width: 78%;
  height: 520px;
  border-radius: 180px 28px 140px 28px;
  object-fit: cover;
}

.about-float {
  position: absolute;
  width: 150px;
  height: 150px;
  object-fit: cover;
  border: 6px solid var(--linen);
  box-shadow: var(--shadow);
}

.about-float--top {
  top: 18px;
  right: 8px;
  border-radius: 50%;
}

.about-float--bottom {
  bottom: 28px;
  right: 42px;
  width: 170px;
  height: 210px;
  border-radius: 22px;
}

.about-badge {
  position: absolute;
  left: 18px;
  bottom: 36px;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: var(--pine);
  color: #fff;
  display: grid;
  place-content: center;
  text-align: center;
  box-shadow: var(--shadow);
}

.about-badge strong {
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1;
}

.about-badge span {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.8;
}

.about-copy h2 {
  font-size: clamp(32px, 4vw, 46px);
  color: var(--pine);
  margin: 14px 0 16px;
}

.about-copy > p {
  color: var(--ink-soft);
  margin: 0 0 22px;
}

.about-points {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.about-points li {
  padding-left: 28px;
  position: relative;
  color: var(--ink-soft);
  font-size: 15px;
}

.about-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--clay);
  box-shadow: inset 0 0 0 4px rgba(196, 92, 38, 0.25);
}

.about-quote {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 28px;
  padding: 16px;
  background: var(--paper);
  border-left: 4px solid var(--honey);
  border-radius: 0 16px 16px 0;
}

.about-quote img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex-shrink: 0;
}

.about-quote p {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--pine);
}

/* Services */
.services {
  padding-bottom: 40px;
}

.services-intro {
  background: var(--pine);
  color: #fff;
  padding: 72px 0 88px;
  margin-bottom: -48px;
}

.services-intro h2 {
  font-size: clamp(32px, 4vw, 48px);
  max-width: 16ch;
  margin: 14px 0 12px;
}

.services-intro p {
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.service-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 36px;
}

.service-tile {
  background: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 280px;
}

.service-tile-media {
  position: relative;
}

.service-tile-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
}

.service-num {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--clay);
  color: #fff;
  font-family: var(--font-display);
  font-size: 18px;
  border-radius: 14px;
}

.service-tile-body {
  padding: 28px 26px;
}

.service-tile-body > span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay);
}

.service-tile-body h3 {
  margin: 8px 0 10px;
  font-size: 26px;
  color: var(--pine);
}

.service-tile-body p {
  margin: 0 0 14px;
  font-size: 14px;
  color: var(--ink-soft);
}

.service-tile-body ul {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
  font-size: 13px;
  color: var(--pine-mid);
}

.service-tile-body ul li::before {
  content: "– ";
  color: var(--clay);
}

.service-tile-body a {
  font-size: 14px;
  font-weight: 600;
  color: var(--clay);
}

.photo-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}

.mosaic-hero {
  position: relative;
  min-height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.mosaic-hero img {
  width: 100%;
  height: 100%;
  min-height: 420px;
}

.mosaic-caption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 18px 20px;
  background: rgba(22, 56, 47, 0.86);
  color: #fff;
  border-radius: 16px;
}

.mosaic-caption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
}

.mosaic-caption span {
  font-size: 13px;
  color: var(--honey);
}

.mosaic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mosaic-grid img {
  width: 100%;
  height: 202px;
  border-radius: var(--radius);
}

.strip {
  padding: 48px 0 8px;
  overflow: hidden;
}

.strip-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: drift 42s linear infinite;
  padding-left: 16px;
}

.strip-track img {
  width: 220px;
  height: 150px;
  border-radius: 16px;
  flex-shrink: 0;
}

@keyframes drift {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Contact */
.contact {
  padding: 64px 0 96px;
}

.contact-shell {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}

.contact-pane {
  background: var(--pine);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 36px 32px;
}

.contact-pane h2 {
  font-size: clamp(30px, 3.4vw, 42px);
  margin: 14px 0 12px;
  max-width: 14ch;
}

.contact-pane > p {
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 28px;
}

.contact-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-facts article {
  display: flex;
  gap: 12px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 14px;
}

.contact-facts small {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--honey);
}

.contact-facts strong {
  display: block;
  font-size: 15px;
  margin: 4px 0 2px;
}

.contact-facts p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.contact-visual img {
  width: 100%;
  height: 180px;
  border-radius: 16px 16px 0 0;
}

.contact-map {
  border-radius: 0 0 16px 16px;
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 170px;
  border: 0;
  display: block;
}

.contact-form-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(22, 56, 47, 0.06);
}

.contact-form-card h3 {
  margin: 0 0 8px;
  font-size: 32px;
  color: var(--pine);
}

.form-lead {
  margin: 0 0 24px;
  color: var(--ink-soft);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pine);
  margin-bottom: 8px;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--linen);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 15px;
  color: var(--ink);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  outline: 2px solid rgba(196, 92, 38, 0.35);
  border-color: var(--clay);
}

.form-note {
  min-height: 20px;
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--pine-soft);
}

/* Footer */
.site-footer {
  background: #0e221d;
  color: rgba(255, 255, 255, 0.7);
  padding: 72px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.25fr;
  gap: 40px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
  color: #fff;
  font-size: 30px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  font-size: 16px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
  background: var(--clay);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 22px;
  color: #fff;
  margin: 0 0 20px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 11px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-links a:hover {
  color: var(--honey);
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.55;
}

.footer-contact-item span:first-child {
  color: var(--honey);
  flex-shrink: 0;
}

.footer-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 24px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.38);
}

.footer-bar a {
  color: var(--honey);
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--pine);
  color: #fff;
  padding: 16px 24px;
  border-radius: 14px;
  z-index: 60;
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow);
  transform: translateY(120%);
  transition: transform 0.35s ease;
  border-left: 4px solid var(--honey);
}

.toast.is-visible {
  transform: translateY(0);
}

.section {
  padding: calc(var(--header-h) + 56px) 0 80px;
}

.entry-content {
  color: var(--ink-soft);
  font-size: 16px;
}

.entry-content h1,
.entry-content h2,
.entry-content h3 {
  color: var(--pine);
}

.entry-content a {
  color: var(--clay);
}

@media (max-width: 1020px) {
  .hero-grid,
  .about-grid,
  .contact-shell,
  .photo-mosaic {
    grid-template-columns: 1fr;
  }

  .hero-frames {
    min-height: 460px;
  }

  .companion-rail,
  .service-stack,
  .contact-facts,
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .companion-card--2,
  .companion-card--4 {
    transform: none;
  }

  .service-tile {
    grid-template-columns: 1fr;
  }

  .about-main {
    width: 100%;
    height: 420px;
  }
}

@media (max-width: 720px) {
  .header-shell {
    padding: 0 16px;
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 0px);
    left: 12px;
    right: 12px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 14px;
    display: none;
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: block;
  }

  .primary-nav ul {
    flex-direction: column;
  }

  .site-header.is-scrolled .primary-nav {
    background: var(--pine-mid);
  }

  .header-cta {
    display: none;
  }

  .hero-frames {
    min-height: 380px;
  }

  .frame-a {
    width: 210px;
    height: 280px;
    left: 48px;
  }

  .frame-a img {
    height: 220px;
  }

  .frame-b {
    width: 150px;
    height: 200px;
  }

  .frame-b img {
    height: 148px;
  }

  .frame-c {
    width: 140px;
    height: 180px;
  }

  .frame-c img {
    height: 128px;
  }

  .companion-rail,
  .service-stack,
  .contact-facts,
  .form-row,
  .footer-top,
  .mosaic-grid {
    grid-template-columns: 1fr;
  }

  .hero-orb {
    width: 96px;
    height: 96px;
    right: 8px;
    bottom: 12px;
  }

  .footer-bar {
    flex-direction: column;
    text-align: center;
  }
}
