@font-face {
  font-family: 'Office Code Pro';
  src: url("/assets/fonts/officecodepro-regular.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Office Code Pro';
  src: url("/assets/fonts/officecodepro-regular.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Office Code Pro';
  src: url("/assets/fonts/officecodepro-regular.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Aileron';
  src: url("/assets/fonts/aileron/Aileron-Regular.otf") format("otf");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Aileron';
  src: url("/assets/fonts/LTHoop-SemiBold.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Aileron';
  src: url("/assets/fonts/Aileron-Bold.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Poppins Bold';
  src: url("/assets/fonts/Poppins-Bold.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --cream:     #f6f4f1;
  --cream2:    #eceae6;
  --dark:      #1e1e1e;
  --dark2:     #2a2a2a;
  --orange:    #db4a2b;
  --orange2:   #e8694f;
  --text:      #1e1e1e;
  --muted:     #727068;
  --white:     #FFFFFF;
  --nav-h:     64px;
  --nav-bg:    rgba(247,244,238,0.92);
  --rule:      rgba(30,30,30,0.10);
  --white-06:  rgba(255,255,255,0.06);
  --white-20:  rgba(255,255,255,0.20);
  --white-25:  rgba(255,255,255,0.25);
  --white-35:  rgba(255,255,255,0.35);
  --white-45:  rgba(255,255,255,0.45);
  --white-55:  rgba(255,255,255,0.55);
}

body {
  font-family: 'Office Code Pro', system-ui, sans-serif;
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 { font-family: 'Poppins Bold', Georgia, serif; line-height: 1.1; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

nav .nav-links a,
.nav-cta,
.section-tag,
.footer-col a,
.footer-copy,
.footer-note,
.footer-desc { font-family: 'Aileron', system-ui, sans-serif; }

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.nav-logo-wrap { display: flex; align-items: center; gap: 10px; text-decoration: none; }

.nav-links { display: flex; align-items: center; gap: 20px; list-style: none; }
.nav-links li:not(:last-child) { display: none; }
.nav-links a { font-size: 13px; font-weight: 500; color: var(--muted); letter-spacing: 0.2px; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }

.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 600 !important;
  white-space: nowrap;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--orange2) !important; color: var(--white) !important; }

.about-hero {
  background: var(--dark);
  padding: calc(var(--nav-h) + 40px) 20px 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-tag::before { content: ''; width: 16px; height: 1.5px; background: var(--orange); }

.about-hero .section-tag { color: var(--orange2); }
.about-hero .section-tag::before { background: var(--orange2); }

.about-hero h1 {
  font-size: clamp(44px, 10vw, 72px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -2px;
  line-height: 1.02;
  margin-bottom: 20px;
}

.about-hero-lead {
  font-size: 17px;
  color: var(--white-45);
  line-height: 1.75;
  font-weight: 300;
}

.about-section {
  padding: 48px 20px;
  border-bottom: 1px solid var(--rule);
}
.about-section:last-of-type { border-bottom: none; }
.about-section.alt { background: var(--white); }
.about-section.plain { background: var(--cream); }

.paul-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

.paul-photo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.paul-text { padding-top: 8px; }

.paul-text h2 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.05;
}

.paul-text .title-tag {
  font-family: 'Aileron', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 28px;
  display: block;
}

.about-body { font-size: 16px; color: var(--muted); line-height: 1.85; margin-bottom: 18px; }
.about-body:last-child { margin-bottom: 0; }

.about-body a, 
.contact-link a { color: var(--orange); font-weight: 600; }
.about-body a:hover, 
.contact-link a:hover { text-decoration: underline; }

.contact-link { display: flex; justify-content: flex-start; align-content: center; gap: 12px; margin-bottom: 6px;}
.contact-link img {height: 24px; width: auto; }

.about-divider { height: 1px; background: var(--rule); margin: 0 20px; }

.shop-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.shop-imageoto-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--rule);
  background: var(--cream2);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
}
.shop-imageoto-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

.shop-text h2 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.05;
}

.shop-text .title-tag {
  font-family: 'Aileron', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 28px;
  display: block;
}

.shop-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 36px;
  border: 1px solid var(--rule);
  border-radius: 10px;
  overflow: hidden;
}

.shop-stat {
  padding: 18px 20px;
  background: var(--cream);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.shop-stat:nth-child(2n) { border-right: none; }
.shop-stat:nth-last-child(-n+2) { border-bottom: none; }

.shop-stat-val {
  font-family: 'Poppins Bold', Georgia, serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
  line-height: 1;
  margin-bottom: 4px;
}

.shop-stat-label {
  font-family: 'Aileron', system-ui, sans-serif;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
}

.pets-intro { max-width: 560px; margin-bottom: 48px; }

.pets-intro h2 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 12px;
}

.pets-intro p { font-size: 16px; color: var(--muted); line-height: 1.75; }

.pets-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.pet-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pet-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--rule);
  background: var(--cream2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  margin-bottom: 20px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.pet-photo img { width: 100%; height: 100%; object-fit: cover; }

.pet-title {
  font-family: 'Aileron', system-ui, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}

.pet-name {
  font-family: 'Poppins Bold', Georgia, serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: var(--text);
  margin-bottom: 8px;
}

.pet-desc { font-size: 13.5px; color: var(--muted); line-height: 1.7; max-width: 220px; }

footer {
  background: var(--dark);
  padding: 48px 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  border-top: 1px solid var(--white-06);
}

.footer-logo-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }

.footer-desc { font-size: 13px; color: var(--white-35); line-height: 1.75; }

.footer-meta { display: flex; gap: 16px; margin-top: 12px; }
.footer-meta span {
  font-family: 'Aileron', system-ui, sans-serif;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white-25);
}

.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--white-35); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 14px; color: var(--white-55); transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  background: var(--dark);
  border-top: 1px solid var(--white-06);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.footer-copy { font-size: 12px; color: var(--white-25); }
.footer-note { font-size: 11px; color: var(--white-20); line-height: 1.6; }

@media (min-width: 820px) {
  nav { padding: 0 48px; }
  .nav-links { gap: 36px; }
  .nav-links li:not(:last-child) { display: list-item; }

  .about-hero { padding: calc(var(--nav-h) + 80px) 80px 80px; }
  .about-hero-lead { max-width: 520px; }

  .about-section { padding: 100px 80px; }

  .paul-layout { grid-template-columns: 280px 1fr; gap: 72px; }
  .paul-photo-wrap { position: sticky; top: calc(var(--nav-h) + 32px); }
  .about-body { max-width: 580px; }

  .about-divider { margin: 0 80px; }

  .shop-layout { grid-template-columns: 1fr 1fr; gap: 72px; }

  .pets-intro { margin-bottom: 64px; }
  .pets-grid { display: flex; justify-content: space-between; gap: 40px; }

  footer { padding: 56px 80px; grid-template-columns: 1fr 1fr 1fr; gap: 48px; }
  .footer-desc { max-width: 240px; }

  .footer-bottom { padding: 20px 80px; flex-direction: row; justify-content: space-between; align-items: center; gap: 0; }
  .footer-note { text-align: right; max-width: 420px; }
}