/* Cormorant Garamond – luxury serif | Beach vibe: light blue, calm pink, no teal tint */
:root {
  --light-blue: #a8d4e6;
  --light-blue-deep: #7eb8d0;
  --pink-calm: #e8c4c4;
  --pink-soft: #f5e1e1;
  --pink-border: #d4a5a5;
  --pink-accent: #c99b9b;
  --sand: #f7f3ef;
  --white: #ffffff;
  --gray-dark: #1a1a1a;
  --gray: #333;
  --gray-mid: #666;
  --gray-light: #999;
  --font-sans: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.08);
  --radius: 6px;
  --max-width: 1200px;
  --frame-width: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.5;
  color: var(--gray);
  background: var(--white);
}

a {
  color: var(--pink-accent);
  text-decoration: none;
}

a:hover {
  color: var(--pink-border);
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

main {
  background: var(--white);
}

/* ========== Top bar: light blue (beach vibe) ========== */
.header-utility {
  position: relative;
  background: var(--light-blue);
  color: var(--gray-dark);
  font-size: 13px;
  padding: 12px 24px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.header-utility-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
}

/* Established in 2006: all the way to the right edge of the screen */
.header-established-teal {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--gray-dark);
}

@media (max-width: 768px) {
  .header-established-teal {
    font-size: 0.875rem;
  }
}

/* Site title / logo in top-center with load animation */
@keyframes logo-flash {
  0%   { opacity: 0; transform: scale(0.94); filter: brightness(1.4); }
  50%  { opacity: 1; transform: scale(1.03); filter: brightness(1.15); }
  100% { opacity: 1; transform: scale(1);    filter: brightness(1); }
}

.site-title-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--gray-dark);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.site-title-link img {
  display: block;
  height: 55px;
  width: auto;
  max-width: 286px;
  object-fit: contain;
  animation: logo-flash 0.9s ease-out forwards;
}

.site-title-link:hover {
  color: var(--pink-border);
  text-decoration: none;
}

/* Disney-like magical load: scale bounce + pink shimmer sweep */
@keyframes disney-title-in {
  0% {
    opacity: 0;
    transform: scale(0.82);
  }
  55% {
    transform: scale(1.04);
  }
  75% {
    transform: scale(0.98);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Pink shimmer sweeps across text on load (magical reveal) */
@keyframes shimmer-sweep {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

/* Soft pink glow that pulses after load (Disney fairy-dust feel) */
@keyframes title-glow {
  0%, 100% {
    filter: drop-shadow(0 0 4px rgba(212, 165, 165, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 12px rgba(212, 165, 165, 0.5)) drop-shadow(0 0 24px rgba(232, 196, 196, 0.3));
  }
}


/* ========== COSMO HEADER: Main nav ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
}

.header-inner {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}


/* Nav centered */
.main-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  padding: 8px 12px;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--gray-dark);
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--pink-accent);
  text-decoration: none;
}


/* ========== Skip to content ========== */
.skip-link {
  position: absolute;
  top: -100px;
  left: 24px;
  background: var(--pink-accent);
  color: var(--white);
  padding: 8px 16px;
  font-size: 14px;
  z-index: 200;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 12px;
}

/* ========== COSMO: Section title (link style) ========== */
.section-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin: 40px 0 20px;
  padding: 0 24px;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.section-title a {
  color: var(--gray-dark);
  text-decoration: none;
}

.section-title a:hover {
  color: var(--pink-accent);
  text-decoration: underline;
}

/* ========== Lead story (large feature) ========== */
.lead-story-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px 24px;
}

.lead-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .lead-story {
    grid-template-columns: 1fr;
  }
}

.lead-story .card-img-wrap {
  aspect-ratio: 4/5;
}

.lead-story .card-body {
  padding: 16px 0 0;
}

.lead-story .card-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pink-accent);
  margin-bottom: 8px;
}

.lead-story .card-body h3 {
  font-size: 1.5rem;
  line-height: 1.25;
  margin-bottom: 12px;
}

.lead-story .card-meta {
  font-size: 13px;
  color: var(--gray-mid);
  margin: 0;
}

/* Our Story block: much smaller image */
.lead-story--small-pic {
  grid-template-columns: 200px 1fr;
  gap: 28px;
}

.lead-story--small-pic .card-img-wrap {
  aspect-ratio: 1;
  max-width: 200px;
}

.lead-story--small-pic .card-body {
  padding: 0;
}

@media (max-width: 640px) {
  .lead-story--small-pic {
    grid-template-columns: 1fr;
  }
  .lead-story--small-pic .card-img-wrap {
    max-width: 180px;
    margin: 0 auto;
  }
}

/* ========== COSMO: Story grid (4-up) ========== */
.story-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: var(--max-width);
  margin: 0 auto 40px;
  padding: 0 24px;
}

.story-grid--three {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1024px) {
  .story-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .story-grid--three {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .story-grid {
    grid-template-columns: 1fr;
  }
  .story-grid--three {
    grid-template-columns: 1fr;
  }
}

.story-grid .card {
  background: none;
  box-shadow: none;
  border-radius: 0;
}

.story-grid .card:hover {
  transform: none;
  box-shadow: none;
}

.story-grid .card-img-wrap {
  aspect-ratio: 3/4;
  margin-bottom: 12px;
}

.story-grid .card-body h3 {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 6px;
}

.story-grid .card-meta {
  font-size: 14px;
  color: var(--gray-mid);
  margin: 0;
}

/* Three cards: white title centered on image, bold black description below */
.card--overlay-title {
  display: block;
  text-decoration: none;
  color: inherit;
}

.card--overlay-title:hover {
  color: inherit;
  text-decoration: none;
}

.card--overlay-title .card-img-wrap {
  position: relative;
  margin-bottom: 10px;
  overflow: hidden;
}

.card--overlay-title .card-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(212, 165, 165, 0.25);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.card--overlay-title:hover .card-img-wrap::after {
  opacity: 1;
}

.card--overlay-title .card-title-overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  padding: 16px;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 700;
  color: var(--white);
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.card--overlay-title .card-desc {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-dark);
  margin: 0;
  line-height: 1.4;
}

/* ========== Clientele carousel (one large rotating image + text) ========== */
.clientele-carousel {
  position: relative;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto 40px;
  padding: 0 24px;
}

.clientele-carousel .carousel-inner {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.carousel-slide {
  display: none;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 420px;
}

.carousel-slide.active {
  display: grid;
  animation: carousel-fade 0.5s ease;
}

@keyframes carousel-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 768px) {
  .carousel-slide {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}

.carousel-slide .slide-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  min-height: 320px;
}

.carousel-slide .slide-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Our Clients: show full image, zoomed out (no cropping) */
.carousel-slide .slide-img-wrap--contain {
  background: var(--white);
}
.carousel-slide .slide-img-wrap--contain img {
  object-fit: contain;
}

.carousel-slide .slide-caption {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.carousel-slide .slide-caption h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gray-dark);
  margin: 0 0 12px;
}

.carousel-slide .slide-caption p {
  font-size: 1.0625rem;
  color: var(--gray-mid);
  line-height: 1.6;
  margin: 0 0 16px;
}

.carousel-slide .slide-caption a {
  font-weight: 600;
  font-size: 1rem;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--gray-light);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}

.carousel-dots button:hover,
.carousel-dots button.active {
  background: var(--pink-accent);
}

/* ========== Hero: full-bleed imagery, no teal tint ========== */
.hero {
  position: relative;
  width: 100%;
  min-height: 380px;
  background: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

/* Subtle light overlay only for text readability (no teal) */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding: 40px 24px;
  max-width: 800px;
}

.hero-title-wrap {
  position: relative;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

.hero-title-wrap .star {
  position: absolute;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  opacity: 0;
  animation: star-twinkle 2s ease-in-out forwards,
             star-pulse 2.5s ease-in-out 2s infinite;
  pointer-events: none;
}

.hero-title-wrap .star-1 {
  top: -8px;
  left: 0;
  animation-delay: 0.2s;
}

.hero-title-wrap .star-2 {
  top: -8px;
  right: 0;
  animation-delay: 0.4s;
}

.hero-title-wrap .star-3 {
  bottom: -8px;
  left: 0;
  animation-delay: 0.6s;
}

.hero-title-wrap .star-4 {
  bottom: -8px;
  right: 0;
  animation-delay: 0.8s;
}

@keyframes star-twinkle {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 0.85;
    transform: scale(1);
  }
}

@keyframes star-pulse {
  0%, 100% {
    opacity: 0.85;
  }
  50% {
    opacity: 1;
  }
}

.hero-content .tagline {
  font-size: 1.125rem;
  opacity: 0.95;
  margin: 0;
}

/* ========== Page title block ========== */
.page-title-block {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 24px 24px;
  text-align: center;
}

.page-title-block h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.875rem);
  font-weight: 700;
  color: var(--gray-dark);
  margin: 0 0 12px;
}

.page-title-block .lead {
  font-size: 1.2rem;
  color: var(--gray-mid);
  max-width: 640px;
  margin: 0 auto;
}

/* ========== Container ========== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px 48px;
}

/* ========== Section heading (for inner pages) – pink accent ========== */
.section-heading {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-dark);
  margin: 40px 0 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--pink-border);
}

/* ========== Card grid (generic) ========== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: opacity 0.2s;
}

.card:hover {
  opacity: 0.9;
}

.card-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--pink-soft);
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  padding: 16px 0 0;
}

.card-body h3 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--gray-dark);
  line-height: 1.3;
}

.card-body p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--gray-mid);
}

/* ========== Client list sections (Clientele page) ========== */
.client-section {
  margin-bottom: 40px;
}

.client-section .section-heading {
  margin-top: 32px;
  margin-bottom: 16px;
}

.clientele-logos-img {
  max-width: 800px;
  width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
}

.client-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px 20px;
}

.client-list li {
  font-size: 0.9375rem;
  color: var(--gray);
  padding: 6px 0;
  border-bottom: 1px solid var(--pink-soft);
}


/* ========== Two-column (Services) ========== */
.two-col-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.expertise-list,
.sectors-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.expertise-list li,
.sectors-list li {
  padding: 10px 0;
  font-size: 1rem;
  color: var(--gray);
  border-bottom: 1px solid var(--pink-soft);
}

.expertise-list li:last-child,
.sectors-list li:last-child {
  border-bottom: none;
}

.note-box {
  background: var(--pink-soft);
  border-left: 4px solid var(--pink-border);
  padding: 18px 20px;
  margin-top: 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.9375rem;
  color: var(--gray);
}

/* ========== Contact info ========== */
.contact-centered {
  max-width: 700px;
  margin: 0 auto;
  padding: 48px 24px 72px;
}

.contact-info-row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  border: 1px solid var(--pink-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-info-item {
  flex: 1;
  padding: 48px 48px;
  text-align: center;
}

.contact-info-item h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-mid);
  margin: 0 0 18px;
}

.contact-info-item p {
  font-size: 1.2rem;
  color: var(--gray-dark);
  margin: 0 0 12px;
  line-height: 1.7;
}

.contact-info-item p:last-child {
  margin-bottom: 0;
}

.contact-info-item a {
  color: var(--pink-accent);
  font-size: 1.2rem;
}

.contact-divider {
  width: 1px;
  background: var(--pink-border);
  align-self: stretch;
  flex-shrink: 0;
}

@media (max-width: 560px) {
  .contact-info-row {
    flex-direction: column;
  }
  .contact-info-item {
    padding: 36px 32px;
  }
  .contact-divider {
    width: auto;
    height: 1px;
    align-self: auto;
  }
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  background: var(--pink-accent);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s;
}

.btn:hover {
  background: var(--pink-border);
}

/* ========== Newsletter – calm pink beach vibe ========== */
.newsletter-block {
  background: var(--pink-soft);
  border: 1px solid var(--pink-calm);
  padding: 48px 24px;
  margin: 40px 0;
  text-align: center;
}

.newsletter-inner {
  max-width: 560px;
  margin: 0 auto;
}

.newsletter-block h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--gray-dark);
}

.newsletter-block .newsletter-subhead {
  font-size: 1.0625rem;
  color: var(--gray-mid);
  margin: 0 0 20px;
  font-style: italic;
}

.newsletter-block p {
  margin: 0 0 20px;
  font-size: 1rem;
  color: var(--gray-mid);
}

.newsletter-form {
  display: flex;
  gap: 8px;
  max-width: 400px;
  margin: 0 auto 16px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  font-size: 1.0625rem;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  font-family: var(--font-sans);
}

.newsletter-form .btn {
  background: var(--pink-accent);
  color: var(--white);
}

.newsletter-form .btn:hover {
  background: var(--pink-border);
}

.newsletter-block .terms {
  font-size: 13px;
  color: var(--gray-light);
  margin: 0;
}

/* ========== Brand strip – pink border accent ========== */
.brand-strip {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 24px;
  text-align: center;
  border-top: 2px solid var(--pink-calm);
  border-bottom: 2px solid var(--pink-calm);
}

.brand-strip h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gray-dark);
  margin: 0 0 12px;
}

.brand-strip p {
  font-size: 1.0625rem;
  color: var(--gray-mid);
  max-width: 640px;
  margin: 0 auto 12px;
  line-height: 1.5;
}

.brand-strip a {
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--pink-accent);
}

/* ========== COSMO FOOTER ========== */
.site-footer {
  background: var(--gray-dark);
  color: var(--white);
  padding: 40px 24px 20px;
  margin-top: 48px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px 32px;
  margin-bottom: 24px;
}

.footer-inner a {
  font-size: 15px;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
}

.footer-inner a:hover {
  color: var(--pink-calm);
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-align: center;
}

/* Legacy footer columns (Contact page etc.) */
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pink-calm);
  margin: 0 0 12px;
}

.footer-col p,
.footer-col a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.85);
  margin: 0 0 8px;
}

.footer-col a:hover {
  color: var(--pink-calm);
}

.site-footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}

/* ========== Home specific ========== */
.home-hero {
  min-height: 440px;
}

.home-tagline-strip {
  text-align: center;
  padding: 40px 24px 48px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.home-tagline-strip p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--gray-dark);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--pink-calm);
  display: inline-block;
}

.home-cards .container {
  padding: 0 24px 48px;
}

.about-intro {
  font-size: 1.125rem;
  color: var(--gray-mid);
  text-align: center;
  max-width: 680px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.established {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--gray-light);
  margin-bottom: 40px;
}

/* ========== About page: story & founder sections ========== */
.about-section {
  margin-bottom: 48px;
}

.about-section .section-heading {
  margin-top: 0;
}

.about-prose {
  max-width: 42rem;
  line-height: 1.7;
}

.about-prose p {
  margin: 0 0 1.25em;
  font-size: 1.0625rem;
  color: var(--gray);
}

.about-prose p:last-child {
  margin-bottom: 0;
}

.about-grace {
  margin-top: 48px;
  padding: 28px 32px;
  background: var(--pink-soft);
  border-left: 4px solid var(--pink-border);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.about-grace-text {
  margin: 0;
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--gray);
  line-height: 1.6;
}

/* ========== Splash screen ========== */
@keyframes splash-logo-in {
  0%   { opacity: 0; transform: scale(0.8); }
  60%  { opacity: 1; transform: scale(1.04); filter: brightness(1.3); }
  100% { opacity: 1; transform: scale(1);   filter: brightness(1); }
}

@keyframes splash-fade-out {
  0%   { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.08); pointer-events: none; }
}

#splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: splash-fade-out 0.7s cubic-bezier(0.4, 0, 0.6, 1) 1.3s forwards;
}

#splash img {
  height: clamp(100px, 22vw, 220px);
  width: auto;
  max-width: 80vw;
  object-fit: contain;
  animation: splash-logo-in 0.9s ease-out forwards;
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
  .site-title-link {
    font-size: 1.35rem;
  }
  .site-title-link img {
    height: 42px;
    max-width: 234px;
  }

  .header-inner {
    min-height: 56px;
    height: auto;
    padding: 12px 12px 14px;
    justify-content: center;
  }

  .main-nav {
    position: static;
    transform: none;
    width: 100%;
    max-width: 100%;
  }

  .main-nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2px;
  }

  .main-nav a {
    padding: 6px 8px;
    font-size: 11px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .client-list {
    grid-template-columns: 1fr;
  }
}
