:root {
  --ink: #10233a;
  --muted: #52677c;
  --line: #c9d8e7;
  --paper: #fffdf8;
  --soft: #edf4fb;
  --cream: #fff4dd;
  --navy: #082f5b;
  --blue: #0a5fa8;
  --blue-bright: #1686d9;
  --red: #c61f33;
  --red-dark: #921528;
  --teal: #0a5fa8;
  --gold: #e1b65a;
  --coral: #c61f33;
  --shadow: 0 18px 45px rgba(8, 47, 91, 0.18);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(10, 95, 168, .045), transparent 520px),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255, 253, 248, 0.97);
  border-bottom: 5px solid var(--red);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(8, 47, 91, .08);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
}

.brand:hover { text-decoration: none; }
.brand img {
  width: clamp(210px, 20vw, 320px);
  height: auto;
}

nav {
  display: flex;
  justify-content: center;
  gap: clamp(10px, 2vw, 24px);
  flex-wrap: wrap;
}

nav a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  padding: 7px 0 4px;
  border-bottom: 3px solid transparent;
}

nav a:hover {
  color: var(--blue);
  text-decoration: none;
  border-bottom-color: rgba(10, 95, 168, .35);
}

nav a[aria-current="page"] {
  color: var(--red);
  border-bottom-color: var(--red);
}

.header-call {
  padding: 11px 16px;
  border-radius: 8px;
  color: white;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 8px 18px rgba(198, 31, 51, .22);
  font-weight: 900;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(760px, 82vh);
  display: flex;
  align-items: center;
  padding: clamp(36px, 6vw, 82px) clamp(18px, 6vw, 80px);
  overflow: hidden;
  background: var(--navy);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(4, 30, 60, .92) 0%, rgba(4, 30, 60, .72) 43%, rgba(4, 30, 60, .22) 75%, rgba(198, 31, 51, .2) 100%),
    linear-gradient(0deg, rgba(8, 47, 91, .48), transparent 45%);
}

.hero-copy {
  max-width: 720px;
  padding: clamp(28px, 4vw, 54px);
  color: white;
  background: rgba(8, 47, 91, .7);
  border-left: 7px solid var(--red);
  border-radius: 0 12px 12px 0;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .28);
  backdrop-filter: blur(5px);
}

.hero h1, .page-hero h1 {
  margin: 0;
  max-width: 840px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: .98;
  letter-spacing: 0;
}

.hero p, .page-hero p {
  max-width: 720px;
  font-size: 20px;
}

.hero figure {
  position: absolute;
  inset: 0;
  z-index: -2;
  margin: 0;
  overflow: hidden;
}

.hero figure img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero .eyebrow { color: #ffd4da; }
.hero-copy > p:not(.eyebrow) { color: rgba(255,255,255,.9); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 800;
}

.button.primary {
  color: white;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 8px 18px rgba(198, 31, 51, .2);
}
.button.secondary { color: var(--navy); background: white; border: 1px solid rgba(255,255,255,.72); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--red);
  border-block: 0;
}

.trust-band div {
  padding: 28px clamp(18px, 4vw, 54px);
  color: white;
  background: var(--navy);
}

.trust-band strong { display: block; font-size: 30px; line-height: 1; }
.trust-band span { color: rgba(255,255,255,.74); }

.section, .content-wrap, .page-hero, .post-nav {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.section { padding: clamp(48px, 7vw, 90px) 0; }

.home .section:nth-of-type(3) {
  width: 100%;
  padding-inline: max(18px, calc((100% - 1120px) / 2));
  background:
    linear-gradient(135deg, rgba(10, 95, 168, .07), transparent 55%),
    var(--soft);
}

.section-heading {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.section-heading h2, .split-section h2, .cta-strip h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.item-card {
  border: 1px solid var(--line);
  border-top: 5px solid var(--blue);
  border-radius: 8px;
  overflow: hidden;
  background: white;
  transition: transform .18s ease, box-shadow .18s ease;
}

.item-card:nth-child(even) { border-top-color: var(--red); }

.item-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.item-card a { display: block; height: 100%; color: inherit; }
.item-card a:hover { text-decoration: none; }
.item-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; background: var(--soft); }
.item-card span { display: block; margin: 18px 18px 6px; color: var(--red); font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.item-card h3 { margin: 0 18px 8px; line-height: 1.15; }
.item-card p { margin: 0 18px 22px; color: var(--muted); }

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(44px, 7vw, 90px) clamp(18px, 6vw, 80px);
  color: white;
  background:
    linear-gradient(135deg, var(--navy), #0b4d89 72%, var(--red-dark));
}

.split-section p:not(.eyebrow) { color: rgba(255,255,255,.82); }
.split-section .eyebrow { color: #ffd4da; }

.split-section img {
  width: 100%;
  aspect-ratio: 5 / 3.7;
  object-fit: cover;
  object-position: left center;
  border: 7px solid white;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.brand-story {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
  padding: clamp(56px, 8vw, 100px) clamp(18px, 6vw, 80px);
  color: var(--navy);
  background:
    linear-gradient(180deg, rgba(255,255,255,.35), transparent),
    var(--cream);
  border-block: 10px solid var(--red);
}

.brand-story h2 {
  margin: 0 0 18px;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1;
}

.brand-story-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.vintage-mark {
  margin: 30px 0 0;
  border: 5px solid var(--navy);
  border-radius: 10px;
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow);
}

.vintage-mark img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: center center;
}

.brand-story-gallery {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 18px;
  align-items: stretch;
}

.brand-story-gallery figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  background: white;
  border: 5px solid var(--navy);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.brand-story-gallery figure:nth-child(2) { border-color: var(--red); }

.brand-story-gallery img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  background: white;
}

.brand-story-gallery .rack-card {
  object-fit: contain;
  padding: 12px;
  background: #f4f1e8;
}

.brand-story-gallery .dog-ad { object-position: center center; }

.brand-story-gallery figcaption {
  flex: 1;
  padding: 13px 16px;
  color: white;
  background: var(--navy);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .04em;
  text-align: center;
  text-transform: uppercase;
}

.brand-story-gallery figure:nth-child(2) figcaption { background: var(--red); }

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

blockquote {
  margin: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--red);
  border-radius: 8px;
  background: white;
}

blockquote p { margin-top: 0; color: var(--ink); }
blockquote cite { color: var(--blue); font-style: normal; font-weight: 800; }
.center { text-align: center; margin-top: 28px; }

.cta-strip {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: clamp(30px, 5vw, 58px) clamp(18px, 6vw, 80px);
  background:
    linear-gradient(120deg, var(--red-dark), var(--red) 45%, var(--navy) 45%, var(--navy));
  color: white;
}

.cta-strip a { color: white; font-size: clamp(28px, 4vw, 48px); font-weight: 900; }

.page-hero {
  width: 100%;
  padding: clamp(52px, 7vw, 96px) max(18px, calc((100% - 1120px) / 2)) 44px;
  color: white;
  background:
    linear-gradient(120deg, var(--navy), #0b5fa8 72%, var(--red));
  border-bottom: 8px solid var(--red);
}

.page-hero h1 { font-size: clamp(38px, 5vw, 64px); }
.page-hero p { color: rgba(255,255,255,.82); }
.page-hero .eyebrow { color: #ffd4da; }

.content-wrap {
  padding: 16px 0 clamp(56px, 8vw, 100px);
}

.content-wrap.with-sidebar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 36px;
}

.prose {
  font-size: 18px;
}

.prose h2, .prose h3, .prose h4 {
  margin: 1.55em 0 .45em;
  line-height: 1.15;
  letter-spacing: 0;
}

.prose h4 { font-size: 26px; color: var(--blue); }
.prose p { margin: 0 0 1em; }
.prose ul, .prose ol { padding-left: 1.4em; }
.prose img {
  margin: 22px 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.owner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: min(100%, 900px);
  margin: 34px auto 0;
}

.employee-list {
  text-align: center;
  font-family: "Times New Roman", Times, serif;
  white-space: pre-wrap;
}

.employee-list sub {
  display: block;
  font-size: 1em;
  line-height: 1.65;
  vertical-align: baseline;
}

.owner-card {
  margin: 0;
}

.owner-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--soft);
}

.owner-card figcaption {
  margin-top: 12px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}

.date {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sidebar-card {
  align-self: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  border-top: 5px solid var(--red);
}

.sidebar-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 14px;
}

.sidebar-card h2 {
  margin-top: 0;
}

.contact-form {
  display: grid;
  gap: 10px;
}

.contact-form label {
  margin-top: 6px;
  color: var(--ink);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: white;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(18, 104, 167, .2);
  border-color: var(--blue);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form .button {
  margin-top: 10px;
  border: 0;
  cursor: pointer;
}

.contact-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.post-nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0 72px;
  border-top: 1px solid var(--line);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 6vw, 80px);
  color: white;
  background: var(--navy);
  border-top: 8px solid var(--red);
}

.site-footer p { margin: 6px 0 0; color: rgba(255,255,255,.74); }
.footer-actions { display: flex; gap: 16px; flex-wrap: wrap; align-content: start; justify-content: end; }
.site-footer a { color: white; font-weight: 800; }

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr; }
  nav { justify-content: start; }
  .header-call { justify-self: start; }
  .split-section, .section-heading, .content-wrap.with-sidebar, .brand-story { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .card-grid, .quote-grid, .trust-band { grid-template-columns: 1fr; }
  .site-footer, .cta-strip { flex-direction: column; align-items: flex-start; }
  .footer-actions { justify-content: start; }
}

@media (max-width: 520px) {
  .hero h1, .page-hero h1 { font-size: 38px; }
  .hero p, .page-hero p { font-size: 18px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .owner-grid { grid-template-columns: 1fr; }
  .brand-story-gallery { grid-template-columns: 1fr; }
  .brand-story-gallery img { height: auto; max-height: 620px; }
}
