*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #274b6d;
  --navy-light: #3a6491;
  --blue-accent: #9DC3E6;
  --blue-pale: #daeaf7;
  --white: #ffffff;
  --off-white: #F8FAFC;
  --gray-text: #555;
  --gray-light: #888;
  --gray-border: #e2e8f0;
  --charcoal: #2d3748;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: clip;
}
a:focus-visible, button:focus-visible { outline: 2px solid var(--navy-light); outline-offset: 3px; border-radius: 4px; }
img, svg { max-width: 100%; }

/* Match the existing persistent early-access control. */
.floating-cta {
  position: fixed;
  top: max(20px, env(safe-area-inset-top));
  right: max(28px, env(safe-area-inset-right));
  z-index: 200;
  display: inline-flex;
  align-items: center;
  padding: 6px 20px 6px 6px;
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 16px rgba(39,75,109,.28);
  transition: background .2s ease, transform .15s ease, box-shadow .2s ease;
}
.floating-cta:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(39,75,109,.35); }
.floating-cta-icon { width: 36px; height: 36px; border-radius: 50%; overflow: hidden; flex-shrink: 0; margin-right: 10px; display: block; }
.floating-cta-icon img { width: 100%; height: 100%; object-fit: contain; display: block; }

.interior-main { min-height: 72vh; }
.interior-hero {
  min-height: 74vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 150px 24px 100px;
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.interior-hero::before {
  content: '';
  position: absolute;
  width: min(680px, 90vw);
  height: min(680px, 90vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(157,195,230,.18) 0%, rgba(157,195,230,.06) 43%, transparent 70%);
  top: 46%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
}
.interior-hero-content { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; }
.interior-logo { width: 170px; height: auto; margin: 0 auto 30px; display: block; }
.interior-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--blue-accent); margin-bottom: 12px; }
.interior-title { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(42px, 7vw, 68px); font-weight: 600; color: var(--navy); line-height: 1.08; margin-bottom: 22px; text-wrap: balance; }
.interior-title em { font-style: italic; color: var(--navy-light); }
.interior-copy { max-width: 650px; margin: 0 auto; font-size: clamp(16px, 2vw, 19px); font-weight: 300; color: var(--gray-text); line-height: 1.8; text-wrap: balance; }
.interior-actions { margin-top: 32px; display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.btn-primary, .btn-secondary { min-height: 48px; padding: 13px 27px; border-radius: 999px; text-decoration: none; font-size: 15px; font-weight: 500; display: inline-flex; align-items: center; justify-content: center; transition: .2s ease; }
.btn-primary { background: var(--navy); color: #fff; border: 1.5px solid var(--navy); }
.btn-primary:hover { background: var(--navy-light); border-color: var(--navy-light); transform: translateY(-2px); }
.btn-secondary { color: var(--navy); border: 1.5px solid var(--navy); background: transparent; }
.btn-secondary:hover { color: #fff; background: var(--navy); transform: translateY(-2px); }

/* About page mirrors the home-page About section. */
.section-about { background: var(--off-white); padding: 120px 24px 100px; border-bottom: 1px solid rgba(39,75,109,.055); min-height: 72vh; display: flex; align-items: center; }
.about-inner { max-width: 920px; margin: 0 auto; display: grid; grid-template-columns: minmax(250px,340px) minmax(0,1fr); gap: clamp(42px,6vw,72px); align-items: center; }
.about-photo-wrap { position: relative; width: 100%; max-width: 340px; margin: 0 auto; }
.about-photo-wrap::after { content:''; position:absolute; inset:12px -12px -12px 12px; border:1px solid rgba(157,195,230,.62); border-radius:24px; z-index:0; pointer-events:none; }
.about-photo-frame { position:relative; z-index:1; width:100%; aspect-ratio:4/5; overflow:hidden; border-radius:24px; box-shadow:0 16px 42px rgba(39,75,109,.12); }
.about-photo { display:block; width:100%; height:100%; object-fit:cover; object-position:center 68%; transform:scale(1.06); transform-origin:center 66%; }
.about-copy { max-width:530px; }
.about-label { font-size:11px; font-weight:600; letter-spacing:.2em; text-transform:uppercase; color:var(--blue-accent); margin-bottom:8px; }
.about-heading { font-family:'Playfair Display',Georgia,serif; font-size:clamp(32px,4.5vw,48px); font-weight:600; color:var(--navy); line-height:1.2; margin-bottom:20px; }
.about-body { font-size:clamp(15px,1.45vw,16px); font-weight:300; color:var(--gray-text); line-height:1.78; margin:0 0 14px; }
.about-body:last-child { margin-bottom:0; }

/* Footer intentionally matches the main page. */
footer { background: var(--navy); padding: 56px 40px 40px; text-align: center; }
footer img.footer-logo { height:160px; width:auto; margin-bottom:20px; opacity:1; }
.footer-tagline { font-family:'Playfair Display',serif; font-style:italic; font-size:16px; color:rgba(255,255,255,.55); margin-bottom:28px; }
.footer-social { margin:0 auto 30px; }
.footer-social-heading { font-size:11px; font-weight:600; letter-spacing:.16em; text-transform:uppercase; color:rgba(255,255,255,.52); line-height:1.3; margin-bottom:16px; }
.footer-social-links { display:flex; justify-content:center; align-items:center; gap:16px; flex-wrap:wrap; }
.footer-social-link { position:relative; display:inline-flex; align-items:center; justify-content:center; width:44px; height:44px; border:1px solid rgba(157,195,230,.30); border-radius:50%; color:var(--blue-pale); background:rgba(255,255,255,.025); text-decoration:none; transition:color .2s ease,background .2s ease,border-color .2s ease,transform .2s ease,box-shadow .2s ease; }
.footer-social-link svg { width:20px; height:20px; display:block; fill:currentColor; }
.footer-social-link:hover { color:var(--navy); background:var(--white); border-color:var(--white); transform:translateY(-3px); box-shadow:0 8px 20px rgba(0,0,0,.18); }
.footer-social-link:focus-visible { outline:2px solid var(--white); outline-offset:4px; }
.footer-social-link::after { content:attr(data-label); position:absolute; left:50%; bottom:calc(100% + 9px); transform:translate(-50%,4px); padding:5px 8px; border-radius:6px; background:var(--white); color:var(--navy); font-size:10px; font-weight:600; letter-spacing:.02em; white-space:nowrap; opacity:0; pointer-events:none; transition:opacity .18s ease,transform .18s ease; }
.footer-social-link:hover::after,.footer-social-link:focus-visible::after { opacity:1; transform:translate(-50%,0); }
.footer-links { display:flex; gap:28px; justify-content:center; margin-bottom:28px; flex-wrap:wrap; }
.footer-links a { font-size:13px; color:var(--blue-accent); text-decoration:none; letter-spacing:.04em; transition:color .2s ease; }
.footer-links a:hover { color:var(--white); }
.footer-back-top { display:inline-flex; align-items:center; justify-content:center; width:40px; height:40px; margin:0 auto 24px; border:1px solid rgba(157,195,230,.32); border-radius:50%; color:var(--blue-pale); background:rgba(255,255,255,.025); text-decoration:none; transition:color .2s ease,background .2s ease,border-color .2s ease,transform .2s ease; }
.footer-back-top svg { width:17px; height:17px; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.footer-back-top:hover { color:var(--navy); background:var(--white); border-color:var(--white); transform:translateY(-2px); }
.footer-back-top:focus-visible { outline:2px solid var(--white); outline-offset:4px; }
.footer-copy { font-size:12px; color:rgba(255,255,255,.3); }

@media (hover:none) {
  .floating-cta:hover,.btn-primary:hover,.btn-secondary:hover,.footer-social-link:hover { transform:none; }
  .footer-social-link::after { display:none; }
}
@media (max-width:720px) {
  .section-about { padding:110px 20px 72px; }
  .about-inner { grid-template-columns:1fr; gap:34px; }
  .about-photo-wrap { max-width:310px; }
  .about-photo-wrap::after { inset:10px -10px -10px 10px; border-radius:21px; }
  .about-photo-frame { border-radius:21px; }
  .about-copy { max-width:590px; margin:0 auto; text-align:center; }
}
@media (max-width:640px) {
  .floating-cta { top:max(14px,env(safe-area-inset-top)); right:max(16px,env(safe-area-inset-right)); font-size:13px; padding:5px 16px 5px 5px; }
  .floating-cta-icon { width:30px; height:30px; margin-right:8px; }
  .interior-hero { padding:125px 18px 80px; min-height:72vh; }
  .interior-logo { width:145px; }
  footer { padding:50px 18px 36px; }
  footer img.footer-logo { width:min(260px,78vw); height:auto; }
  .footer-links { gap:16px 22px; }
}
@media (max-width:390px) {
  .floating-cta { right:max(10px,env(safe-area-inset-right)); padding-right:13px; font-size:12px; }
}
@media (max-width:340px) {
  .floating-cta { width:42px; height:42px; padding:5px; }
  .floating-cta-icon { width:32px; height:32px; margin-right:0; }
  .floating-cta-text { display:none; }
}


/* BABY SAYS Collection launch-state refinements. */
.baby-says-hero .baby-says-mark { width: 132px; margin-bottom: 24px; }
.baby-says-hero .interior-title { margin-bottom: 10px; }
.baby-says-hero .coming-soon-emphasis {
  margin: 0 auto 22px;
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 600;
  letter-spacing: .16em;
  color: var(--navy-light);
}
.interior-actions.single-action { justify-content: center; }
.footer-logo-link { display: inline-block; text-decoration: none; line-height: 0; border-radius: 12px; }
.footer-logo-link:focus-visible { outline: 2px solid var(--white); outline-offset: 5px; }
.footer-logo-link .footer-logo { transition: none; }
.footer-logo-link:hover .footer-logo { transform: none; opacity: 1; }
@media (max-width:640px) { .baby-says-hero .baby-says-mark { width: 112px; margin-bottom: 22px; } }

/* Compact footer refinement — reduces vertical footprint while preserving layout and touch targets. */
footer { padding: 44px 40px 30px; }
footer img.footer-logo { height: 125px; width: auto; margin-bottom: 14px; }
.footer-tagline { margin-bottom: 22px; }
.footer-social { margin-bottom: 24px; }
.footer-social-heading { margin-bottom: 14px; }
.footer-links { margin-bottom: 22px; }
.footer-back-top { margin-bottom: 18px; }
@media (max-width:640px) {
  footer { padding: 38px 18px 28px; }
  footer img.footer-logo { width: auto; height: 112px; margin-bottom: 12px; }
  .footer-tagline { margin-bottom: 20px; }
  .footer-social { margin-bottom: 22px; }
  .footer-links { margin-bottom: 20px; }
  .footer-back-top { margin-bottom: 16px; }
}
