/* ========= RESET / BASE ========= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #2b1b1c;
  background-color: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ========= THEME VARIABLES ========= */
:root {
  --color-primary: #b83e46;
  --color-primary-dark: #8b383b;
  --color-accent: #a54548;
  --color-soft: #fbe3d3;
  --color-soft-alt: #f5f5f5;
  --color-text-main: #2b1b1c;
  --color-text-muted: #6b4a4d;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* ========= LAYOUT HELPERS ========= */
.container {
  width: min(1120px, 100% - 2.5rem);
  margin: 0 auto;
}

.section {
  padding: 7rem 0;
}

.section-alt {
  background-color: var(--color-soft-alt);
  padding: 7rem 0;
}

.center {
  text-align: center;
  margin-top: 2rem;	
}

/* ========= TYPOGRAPHY ========= */
h1, h2, h3, h4 {
  font-family: "Playfair Display", serif;
  color: var(--color-primary-dark);
  margin: 0 0 0.75rem;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 3.3rem);
}

h2 {
  font-size: clamp(1.9rem, 3vw, 2.4rem);
}

h3 {
  font-size: 1.3rem;
}

p {
  margin: 0 0 1rem;
  color: var(--color-text-main);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.eyebrow-light {
  color: #fde6e0;
}

/* ========= BUTTONS ========= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.22s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #ec7161, #b83e46);
  color: #ffffff;
  box-shadow: 0 16px 32px rgba(184, 62, 70, 0.32);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(184, 62, 70, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary-dark);
  border-color: var(--color-primary);
}

.btn-outline:hover {
  background: rgba(248, 154, 81, 0.08);
}

.btn-light {
  background-color: #ffffff;
  color: var(--color-primary-dark);
  box-shadow: var(--shadow-soft);
}

.btn-light:hover {
  transform: translateY(-1px);
}

.btn-full {
  width: 100%;
}

/* ========= HEADER / NAV ========= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(248, 154, 81, 0.2);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.9rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0%, #fbb273, #b83e46);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.95rem;
}

.logo-text {
  font-size: 0.95rem;
  text-transform: uppercase;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-main);
}

.site-nav a:hover {
  color: var(--color-primary);
}

.nav-cta {
  padding: 0.5rem 1.3rem;
  border-radius: 999px;
  border: 1px solid rgba(184, 62, 70, 0.4);
}

/* Mobile nav button */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle-line {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--color-primary-dark);
  margin: 4px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ========= HERO ========= */
.hero {
  position: relative;
  padding: 5.5rem 0 4.5rem;
  background: radial-gradient(circle at top left, #fbe3d3 0, #ffffff 52%, #f9d0c3 100%);
  overflow: hidden;
}

.hero-bg-shape {
  position: absolute;
  border-radius: 999px;
  filter: blur(50px);
  opacity: 0.6;
  pointer-events: none;
}

.hero-bg-shape-1 {
  width: 260px;
  height: 260px;
  background: #fbb273;
  top: -60px;
  right: 2%;
}

.hero-bg-shape-2 {
  width: 220px;
  height: 220px;
  background: #ec7161;
  bottom: -80px;
  left: -40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-sub {
  max-width: 480px;
  color: var(--color-text-muted);
}

.hero-highlight {
  background-image: linear-gradient(135deg, #ec7161, #b83e46);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin: 1.4rem 0 1rem;
  flex-wrap: wrap;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.2rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 1.5rem;
}

/* HERO VISUAL MOCKUPS */
.hero-visual {
  position: relative;
  min-height: 290px;
  /*min-height: 260px;*/
}

.mockup-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 1.1rem 1.3rem 1.3rem;
  position: relative;
  overflow: hidden;
}

.mockup-main {
  transform: translateY(0);
  animation: floatMain 7s ease-in-out infinite;
}

.secondary-wrapper {
  position: absolute;
  bottom: -1.2rem;   /* sit near the bottom of the white card */
  right: -0.75rem;   /* slight offset to the right for that layered effect */
  width: 70%;        /* a bit narrower so it doesn’t cover as much */
  z-index: 5;	
  /*position: absolute;
  top: 60%;
  right: -0.75rem;
  width: 72%;
  transform: translateY(-50%);
  z-index: 5;*/
}

.mockup-secondary {
	background: #2f1416;
  color: #fff;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-md);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);

  animation: floatSecondary 7s ease-in-out infinite;
/*  position: absolute;
  top: 60%;
  right: -0.75rem;
  width: 72%;
  border-radius: var(--radius-md);
  background: #2f1416;          /* rich dark, not pure black 
  color: #ffffff;
  padding: 0.9rem 1.1rem;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
  animation: floatSecondary 8s ease-in-out infinite;
  transform: translateY(-50%);*/
/*  position: absolute;
  bottom: -1.2rem;
  right: -1rem;
  width: 70%;
  border-radius: var(--radius-md);
  background: #2b1b1c;
  color: #ffffff;
  padding: 0.9rem 1.1rem;
  animation: floatSecondary 8s ease-in-out infinite;*/
}

.mockup-secondary h4 {
  margin: 0 0 0.3rem;
  font-size: 0.95rem;
  color: #ffffff;
}

.mockup-secondary-text {
  margin: 0;
  font-size: 0.8rem;
  color: #fbe3d3;
}

.mockup-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #fbb273;
  margin-bottom: 0.35rem;
}

.mockup-header {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 0.8rem;
}

.mockup-header .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background-color: #fbb273;
}

.mockup-body h3 {
  margin-top: 0.2rem;
  font-size: 1.1rem;
}

.mockup-body p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.mockup-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.7rem;
  font-size: 0.75rem;
  border-radius: 999px;
  background: rgba(236, 113, 97, 0.08);
  color: var(--color-primary-dark);
  margin-bottom: 0.5rem;
}

.mockup-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #fbb273;
  margin-bottom: 0.4rem;
}

/* Float animations */
@keyframes floatMain {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes floatSecondary {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ========= WHO YOU HELP ========= */
.who-you-help h2 {
  max-width: 580px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.pill {
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  background-color: #ffe9e2;
}

/* ========= SERVICES ========= */
.section-header {
  max-width: 640px;
  margin-bottom: 3.8rem;
}

.grid {
  display: grid;
  gap: 2.6rem;
}

.services-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Services hero – soft gradient blobs like home hero */
.section-services-hero {
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
  padding-bottom: 4rem;
  background:
    radial-gradient(circle at top left, rgba(248, 212, 196, 0.9) 0, transparent 55%),
    radial-gradient(circle at 85% 10%, rgba(248, 154, 81, 0.35) 0, transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(184, 62, 70, 0.12) 0, transparent 60%),
    #fff9f6;
}

/* make sure the content sits above the blobs */
.section-services-hero .container {
  position: relative;
  z-index: 1;
}

/* optional: give the right-side pill blocks a slightly frosted look */
.section-services-hero .pill-list .pill-block {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}


.card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 2.3rem 2.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.card ul {
  padding-left: 1.1rem;
  margin: 0 0 0.8rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.card h3 {
	margin-bottom: 0.9rem;
}

.card p {
	margin-bottom: 1.2rem;
}


.card-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-accent);
  margin-top: auto;
  padding-top: 0.8rem;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.12);
}

/* Service card header */
.service-card .service-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.65rem;
}

.service-card .service-header h3 {
  margin: 0;
}


/* ========= PORTFOLIO ========= */
.portfolio-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.portfolio-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transform: translateY(0);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;	
  /*transition: transform 0.2s ease, box-shadow 0.2s ease;*/
}

.portfolio-card:hover {
  /*transform: translateY(-6px);
  box-shadow: 0 20px 35px rgba(0,0,0,0.08);	
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);*/
	transform: translateY(-10px);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.16);
  border-color: rgba(184, 62, 70, 0.24);
}

/* Portfolio-specific alignment for "View project →" */
.portfolio-card .card-link {
  margin-top: 0.6rem;        /* pushes link to the bottom of the card content */
  white-space: nowrap;     /* keeps "View project →" on one line */
}

.portfolio-thumb {
  height: 150px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, filter 220ms ease;
}

/* Zoom the image slightly on hover */
.portfolio-card:hover .portfolio-thumb {
  transform: scale(1.04);
}

/*.portfolio-thumb {
  height: 150px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 18px 18px 0 0;
  min-height: 140px;
}*/

.portfolio-content h3 {
  margin-bottom: 0.35rem;
  transition: color 160ms ease;
}

.portfolio-card:hover .portfolio-content h3 {
  color: var(--color-accent);
}

/* TEMP: gradient placeholders for thumbs – replace with background-image later */
.thumb-1 {
  background-image: linear-gradient(135deg, #fbb273, #b83e46);
}
.thumb-2 {
  background-image: linear-gradient(135deg, #ec7161, #8b383b);
}
.thumb-3 {
  background-image: linear-gradient(135deg, #e497a1, #b83e46);
}
.thumb-4 {
  background-image: linear-gradient(135deg, #f89a51, #a54548);
}
.thumb-5 {
  background-image: linear-gradient(135deg, #8b383b, #b83e46);
}
.thumb-6 {
  background-image: linear-gradient(135deg, #b83e46, #f89a51);
}
.thumb-7 {
  background-image: linear-gradient(135deg, #e39390, #b83e46);
}

.portfolio-content {
  padding: 1.2rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.portfolio-content p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.portfolio-tag {
  display: inline-block;
  margin-top: auto;
  align-self: flex-start;
  background: #ffe9e2;
  color: #b83e46;
  font-size: 0.75rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: background-color 160ms ease, color 160ms ease;
}

.portfolio-card:hover .portfolio-tag {
  background: #b83e46;
  color: #ffffff;
}

/*.portfolio-tag {
  display: inline-block;
  margin-top: 0.4rem;
  font-size: 0.8rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background-color: #ffe9e2;
}
*/
/* Start the bottom cluster here so tag + link align across cards */
.portfolio-card .small-text {
  margin-top: auto;
}

.project-card:hover h3 {
  color: var(--color-accent);
}

.project-card:hover .project-tag {
  background: rgba(184, 62, 70, 0.08);
}

/* ========= TWO-COL SECTIONS ========= */
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

/* Why work with me pills */
.pill-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-top: 3.6rem;	
}

.pill-block {
  background-color: #ffe9e2;
  border-radius: var(--radius-md);
  padding: 1rem 1.1rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.pill-block:hover {
	transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);	
}

.pill-block h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

/* ========= TESTIMONIALS ========= */
.testimonials {
  background-color: var(--color-soft);
}

.testimonial-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.8rem;
}

.testimonial-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-soft);
}

.quote {
  font-style: italic;
  color: var(--color-text-muted);
}

.client {
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 0.5rem;
  color: var(--color-primary-dark);
}

/* ========= CTA STRIP ========= */
.cta-strip {
  background: linear-gradient(135deg, #b83e46, #ec7161);
  color: #ffffff;
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-strip h2 {
  color: #ffffff;
}

/* ========= CONTACT PREVIEW ========= */
.contact-preview {
  align-items: stretch;
}

.contact-highlights {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  font-size: 0.9rem;
}

.contact-highlights li::before {
  content: "• ";
  color: var(--color-accent);
}

.contact-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 1.8rem 1.7rem;
}

.contact-note {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 1.3rem;
  text-align: center;
}


/* ========= FOOTER ========= */
.site-footer {
  background: #2d1517;
  color: #fbe3d3;
  margin-top: 3rem;
  font-size: 0.9rem;
}

/* Top area */
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.75rem;
  padding: 2.2rem 0 1.6rem;
}

/* Brand column */
.footer-brand {
  max-width: 320px;
}

.footer-brand-row {
	display: flex;
	align-items: center;
  /*display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;*/
}

.footer-logo-mark {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
}

.footer-logo {
	display: block;
	height: 48px;
	width: auto;
	opacity: 0.9;
}

/* Mobile */
@media (max-width: 768px) {
  .footer-logo {
    height: 36px;
  }
}

.footer-brand-name {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 600;
}

.footer-tagline {
  margin: 0;
  color: #f7d7cf;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Section titles */
.footer-heading {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin: 0 0 0.6rem;
  color: #ffe3d7;
}

/* Social + legal columns */
.footer-social,
.footer-links {
  min-width: 150px;
  display: flex;
  flex-direction: column;
}

.footer-social a,
.footer-links a {
  color: #fbe3d3;
  text-decoration: none;
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
  opacity: 0.9;
  position: relative;
  padding-bottom: 1px;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.footer-social a::after,
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #fbb273, #ffffff);
  transition: width 0.22s ease;
}

.footer-social a:hover,
.footer-links a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.footer-social a:hover::after,
.footer-links a:hover::after {
  width: 100%;
}

/* Bottom strip */
.footer-bottom {
  background: #1f0e10;
  padding: 0.8rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #c89a94;
  font-size: 0.8rem;
  text-align: center;
}

/* Responsive footer */
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-social,
  .footer-links {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .footer-inner {
    padding: 1.2rem 0 0.8rem;
    gap: 1.2rem;
  }

  .footer-brand-name {
    font-size: 0.75rem;
  }

  .footer-tagline {
    font-size: 0.85rem;
    line-height: 1.45;
  }

  .footer-bottom {
    padding: 0.6rem 0;
  }
}


/* ========= RESPONSIVE ========= */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    inset: 60px 0 auto 0;
    background-color: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.22s ease, opacity 0.22s ease;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.75rem 1.25rem 1.25rem;
    gap: 0.75rem;
  }

  .site-nav.nav-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .hero {
    padding-top: 4.5rem;
  }

  .hero-grid,
  .two-col,
  .cta-strip-inner {
    grid-template-columns: minmax(0, 1fr);
    display: grid;
  }

  .hero-grid {
    gap: 2.5rem;
  }

  .hero-visual {
    order: -1;
  }

  .services-grid,
  .portfolio-grid,
  .testimonial-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .cta-strip-inner {
    text-align: left;
  }
}

@media (max-width: 520px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .section {
    padding: 4rem 0;
  }

  .pill-row {
    gap: 0.5rem;
  }
}

.freebie-thumb {
 /* width: 100%;
  max-width: 80px;   /* controls size on desktop *
  margin: 0 auto;     /* centers it *
  border-radius: 18px;
  display: block;*/
/*	width: 64px;
  height: auto;
  margin-bottom: 0.25rem;*/
	max-width: 56px;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

@media (max-width: 600px) {
  .freebie-thumb {
    max-width: 340px;
  }
}

/* ========== BLOG PAGE ========== */

.blog-page .section {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

/* Hero */
.blog-hero {
  text-align: center;
}

.blog-hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 600;
  color: #aa4a48;
  margin-bottom: 0.75rem;
}

.blog-hero h1 {
  font-size: 2.4rem;
  max-width: 34rem;
  margin: 0 auto 1rem;
}

.blog-hero-intro {
  max-width: 38rem;
  margin: 0 auto 1.75rem;
  font-size: 1rem;
  color: #555;
}

.blog-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.blog-pill-row .pill {
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid #f0d8d3;
  font-size: 0.8rem;
  color: #8b383b;
  background: #fff8f5;
}

.pill--active{
	background-color: #b83e46;
	color: #fff;
}
/* Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

/* Blog cards */
.blog-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(0,0,0,0.08);
}

/* Thumbnail area */
.blog-thumb {
  position: relative;
  min-height: 180px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Mixed thumbnail styles (C): gradients + implied imagery */
.thumb-website-prep {
  background-image:
    linear-gradient(135deg, rgba(184,62,70,0.45), rgba(248,154,81,0.35)),
    url('../assets/blog/desk-planning.png'); /* swap to your own image */
}

.thumb-branding-audit {
  background-image:
    linear-gradient(135deg, rgba(255,248,245,0.10), rgba(153,56,60,0.30)),
    url('../assets/blog/moodboard-brand.png');
}

.thumb-client-ready {
  background-image:
    linear-gradient(135deg, rgba(248,154,81,0.12), rgba(139,56,59,0.25)),
    url('../assets/blog/client-meeting.png');
}

.thumb-case-study {
  background-image:
    linear-gradient(135deg, rgba(248,154,81,0.10), rgba(139,56,59,0.25)),
    url('../assets/blog/linettes-case-study-thumbnail.png');
}

/* dim the image a bit so text overlays are readable if you add them later */
.blog-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.05), rgba(0,0,0,0.25));
  opacity: 0.18;
}

/* Tiny tag in corner */
.thumb-tag {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
  background: rgba(255,248,245,0.96);
  color: #8b383b;
}

/* Card body */
.blog-card-body {
  padding: 1.4rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-meta {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #aa4a48;
  margin: 0 0 0.4rem;
}

.blog-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin: 0 0 0.6rem;
  color: #2b2221;
}

.blog-excerpt {
  font-size: 0.95rem;
  color: #555;
  margin: 0 0 1.2rem;
}

/* Push link to bottom for alignment */
.blog-read-link {
  margin-top: auto;
  font-size: 0.9rem;
  font-weight: 500;
  color: #b83e46;
  text-decoration: none;
  white-space: nowrap;
}

.blog-read-link:hover {
  text-decoration: underline;
}

/* Responsive: stack like Option 3 on small screens */
@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-card {
    max-width: 640px;
    margin: 0 auto;
  }
}

/* === BLOG PAGE CONTAINER === */
.blog-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
  font-family: 'Inter', sans-serif;
  color: #4a3432;
}

/* === BLOG TITLE === */
.blog-wrapper h1 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: #8b383b; /* your deep brand red */
  margin-bottom: 20px;
  line-height: 1.2;
}

/* === BLOG SUBTEXT / INTRO === */
.blog-wrapper p.intro-text {
  font-size: 18px;
  color: #6b5550;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* === BLOG HEADINGS === */
.blog-wrapper h2,
.blog-wrapper h3 {
  font-family: 'Playfair Display', serif;
  color: #8b383b;
  margin: 30px 0 10px;
  line-height: 1.3;
}

.blog-wrapper h2 {
  font-size: 28px;
}
.blog-wrapper h3 {
  font-size: 22px;
}

/* === PARAGRAPHS === */
.blog-wrapper p {
  font-size: 17px;
  line-height: 1.75;
  color: #4a3b3a;
  margin-bottom: 20px;
}

/* === NUMBER LISTS === */
.blog-wrapper ol {
  padding-left: 22px;
  margin: 20px 0;
  line-height: 1.7;
}

.blog-wrapper ol li {
  margin-bottom: 20px;
  padding-left: 5px;
  font-size: 18px;
  color: #5a4948;
}

/* === BUTTON AT BOTTOM === */
.blog-cta {
  margin-top: 50px;
  text-align: left;
}

.blog-cta a {
  background-color: #b83e46;
  color: #fff;
  padding: 14px 28px;
  display: inline-block;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.blog-cta a:hover {
  background-color: #a54548;
}

/* === SPACING BELOW NAV === */
.blog-wrapper {
  padding-top: 120px; /* so header doesn’t sit on top of title */
}

/* === MOBILE === */
@media (max-width: 768px) {
  .blog-wrapper {
    padding: 40px 16px;
  }
  .blog-wrapper h1 {
    font-size: 30px;
  }
  .blog-wrapper h2 {
    font-size: 24px;
  }
  .blog-wrapper h3 {
    font-size: 20px;
  }
}

/* ============================
   SINGLE BLOG POST LAYOUT
   ============================ */

body.blog-single {
  background: radial-gradient(circle at top left, #ffe7d7 0, #fffaf6 40%, #ffffff 100%);
}

/* outer spacing */
.blog-post-main {
  max-width: 1040px;
  margin: 120px auto 96px;
  padding: 0 24px;
}

/* card that holds the article */
.blog-post-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 56px 56px 48px;
  box-shadow:
    0 24px 60px rgba(28, 7, 0, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.7);
  position: relative;
  overflow: hidden;
}

/* soft gradient strip at the top of the card */
.blog-post-card::before {
  content: "";
  position: absolute;
  inset: 0;
  top: -40%;
  height: 120px;
  background: linear-gradient(90deg, #b83e46, #ee9b73, #fbe3d3);
  opacity: 0.16;
  pointer-events: none;
}

/* make content sit above the pseudo-element */
.blog-post-card > * {
  position: relative;
  z-index: 1;
}

/* header area */
.blog-post-header {
  margin-bottom: 32px;
}

.blog-post-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  font-weight: 600;
  color: #b83e46;
  margin: 0 0 10px;
}

.blog-post-header h1 {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  line-height: 1.25;
  color: #512b41;
  margin: 0 0 12px;
}

.blog-post-intro {
  font-size: 18px;
  line-height: 1.8;
  color: #5b4a43;
  max-width: 60ch;
}

/* body typography */
.blog-post-card h2,
.blog-post-card h3 {
  font-family: "Playfair Display", serif;
  color: #b83e46;
  margin: 32px 0 8px;
}

.blog-post-card h2 {
  font-size: 22px;
}

.blog-post-card h3 {
  font-size: 18px;
}

.blog-post-card p {
  font-size: 16px;
  line-height: 1.9;
  color: #3c2b25;
  max-width: 70ch;
}

.blog-post-card ul,
.blog-post-card ol {
  margin: 0 0 16px 1.25rem;
  padding: 0;
  color: #3c2b25;
}

/* subtle emphasis for “Final Thoughts” */
.blog-post-card .final-thoughts {
  border-top: 1px solid #f1d0c5;
  margin-top: 32px;
  padding-top: 20px;
  font-style: italic;
  color: #6a5148;
}

/* CTA box at the bottom of the post */
.blog-post-cta {
  margin-top: 40px;
  padding: 24px 28px;
  border-radius: 20px;
  background: linear-gradient(135deg, #fbe3d3, #ffe8da);
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.blog-post-cta h3 {
  margin: 0;
  font-size: 20px;
  color: #512b41;
}

.blog-post-cta p {
  margin: 0 0 10px;
  font-size: 15px;
  color: #5b4a43;
}

.blog-post-cta .btn-primary {
  display: inline-block;
}

/* reuse your main button style (tweak if needed) */
.blog-post-card .btn-primary {
  background: linear-gradient(90deg, #b83e46, #ee9b73);
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: none;
  box-shadow: 0 10px 24px rgba(184, 62, 70, 0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.blog-post-card .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(184, 62, 70, 0.4);
  filter: brightness(1.02);
}

/* ============================
   RESPONSIVE – BLOG SINGLE
   ============================ */

@media (max-width: 900px) {
  .blog-post-main {
    margin: 96px auto 72px;
    padding: 0 16px;
  }

  .blog-post-card {
    padding: 32px 22px 28px;
    border-radius: 22px;
  }

  .blog-post-header h1 {
    font-size: 28px;
  }

  .blog-post-intro {
    font-size: 16px;
  }

  .blog-post-cta {
    padding: 20px 18px;
  }
}

/* Related posts section under each blog article */
.related-posts {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #f1d0c5;
}

.related-posts h3 {
  font-size: 18px;
  margin: 0 0 12px;
  color: #512b41;
}

.related-posts-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.related-posts-list li + li {
  margin-top: 8px;
}

.related-posts-list a {
  font-size: 15px;
  color: #a54548;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.related-posts-list a:hover {
  color: #b83e46;
}

/* Next / Previous post navigation */
.post-navigation {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #f1d0c5;
  display: flex;
  justify-content: space-between;
  font-size: 15px;
}

.post-navigation a {
  color: #a54548;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.post-navigation a:hover {
  color: #b83e46;
}

.back-link {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 14px;
  color: #a54548;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.back-link:hover {
  color: #b83e46;
}

/* ---------- Branding Package Accents ---------- */

.service-card h3 {
  position: relative;
  padding-top: 0.75rem;
}

.service-card h3::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 36px;
  border-radius: 4px;
  background: var(--color-accent);
}

/* Individual accents */
.service-card.spark h3::before {
  background: #f89a51; /* soft spark */
}

.service-card.kindling h3::before {
  background: #d27778; /* warming tone */
}

.service-card.blaze h3::before {
  background: #b83e46; /* bold brand red */
}

.service-card.fire h3::before {
  background: linear-gradient(90deg, #b83e46, #f89a51);
}

#branding .services-grid {
  margin-top: 1.5rem;
}

/* ---------- About Page Pills ---------- */

/*.section-about-hero {
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
  padding-bottom: 4rem;
  background:
    radial-gradient(circle at top left, rgba(248, 212, 196, 0.9) 0, transparent 55%),
    radial-gradient(circle at 90% 5%, rgba(248, 154, 81, 0.28) 0, transparent 55%),
    radial-gradient(circle at 80% 85%, rgba(184, 62, 70, 0.12) 0, transparent 60%),
    #fffaf6;
}

.section-about-hero .container {
  position: relative;
  z-index: 1;
}

.about-page .pill {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.85),
    rgba(255, 248, 245, 0.85)
  );
  border: 1.5px solid transparent;
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-primary);
  position: relative;
  background-clip: padding-box;
}

.about-page .pill::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1.5px;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    var(--color-accent),
    var(--color-accent-light)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}*/
/* ABOUT – hero gradient + layout */
.section-about-hero {
  background: radial-gradient(circle at top right, #fbb273 0, transparent 55%),
              radial-gradient(circle at bottom left, #f89a51 0, transparent 55%),
              #ffe9df;
  padding-block: 5.5rem 4.5rem;
}

/* ABOUT – hero pill styling (so they don't blend in) */
.section-about-hero .pill-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.section-about-hero .pill-block {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 1.1rem;
  padding: 1.1rem 1.25rem;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.85); /* soft outline so they pop off the gradient */
}

.section-about-hero .pill-block h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
}

.section-about-hero .pill-block p {
  font-size: 0.9rem;
  margin: 0;
  color: var(--color-text-muted);
}

/* General pill-block polish on About-style sections */
.section.section-alt .pill-block {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1rem 1.1rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(244, 228, 222, 0.9);
}

.pill-block {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pill-block:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
}

/* ========= FREEBIES PAGE ========= */

/* Layout + spacing for the freebies grid */
.freebies-page .freebies-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 820px;
  margin: 2.5rem auto 0;
}

/* Base freebie card – slimmer, more refined */
.freebie-card {
/*  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.25rem 1.75rem;
  align-items: center;
  padding: 1.5rem 1.8rem;
  border-radius: 1.5rem;*/
	  padding: 1.75rem 1.6rem;
  border-radius: 1.25rem;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
	
}

.freebie-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.25rem;
  bottom: 1.25rem;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(180deg, #b83e46, #f89a51);
}

/* Thumbnail sits in the first column */
.freebie-card .freebie-thumb {
  grid-row: 1 / span 3;
  justify-self: flex-start;
}

/* Text column */
.freebie-card .eyebrow {
/*  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0 0 0.15rem;*/
	font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.2rem;
}

.freebie-card h3 {
 /* margin: 0 0 0.35rem;
  font-size: 1.15rem;*/
	 font-size: 1.1rem;
  line-height: 1.35;
  margin-bottom: 0.3rem;
}

.freebie-card p {
  margin: 0;
  font-size: 0.95rem;
  color: #555555;
}

/* Button – not full-width, feels lighter */
.freebie-card .btn {
  /*margin-top: 0.9rem;
  justify-self: flex-start;
  padding-inline: 1.8rem;*/
	margin-top: 0.75rem;
  align-self: flex-start;
  padding: 0.55rem 1.2rem;
  font-size: 0.85rem;
}

/* Featured version (Brand Audit) – subtle highlight */
.freebie-card.featured {
  border: 1px solid rgba(247, 170, 140, 0.35);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
}

/* Mobile: stack nicely */
@media (max-width: 700px) {
  .freebie-card {
    grid-template-columns: minmax(0, 1fr);
    text-align: left;
  }

  .freebie-card .freebie-thumb {
    grid-row: auto;
    justify-self: center;
    margin-bottom: 0.5rem;
  }

  .freebie-card .btn {
    width: auto;
  }
}

.freebie-card p:not(.eyebrow) {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.container {
  width: min(1120px, 100% - 2.5rem);
  margin: 0 auto;
}

/* Narrow containers – used on Blog + Portfolio heroes */
.container.narrow {
  width: min(720px, 100% - 2.5rem);
}

/* ========= PORTFOLIO HERO ========= */
.portfolio-hero {
  background: radial-gradient(circle at top left, #fbe3d3 0, #ffffff 55%, #ffe5dc 100%);
}

.portfolio-hero .eyebrow {
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.portfolio-hero .hero-meta {
  margin-top: 1.8rem;
}

.portfolio-tags {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.portfolio-tags span {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  white-space: nowrap;	
}

/* ---- Case Study Layout ---- */

.project-main {
  background: #fff;
}

/* Hero */
.project-hero-inner {
  align-items: center;
  gap: 3rem;
}

.project-hero-intro {
  max-width: 34rem;
}

.project-hero-media img {
  display: block;
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-lg);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.18);
}

/* tags under hero */
.project-tags {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.pill-soft {
  background: #fff7f4;
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-size: 0.85rem;
  color: var(--color-accent);
}

/* meta row */
.project-meta-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.project-meta-block h3 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 0.35rem;
}

.project-meta-block p {
  font-size: 0.98rem;
}

/* generic project sections */
.project-section h2 {
  max-width: 32rem;
}

.project-two-col {
  align-items: flex-start;
  gap: 3rem;
}

/* feature cards */
.project-feature-grid {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-feature ul {
  padding-left: 1.1rem;
  margin: 0.5rem 0 0;
}

/* gallery */
.project-gallery-grid {
  margin-top: 2rem;
  display: grid;
  gap: 1.8rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-gallery-item img {
  display: block;
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.project-gallery-item figcaption {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* results / quote */
.project-results-list {
  padding-left: 1.2rem;
  margin-top: 0.9rem;
}

.project-quote {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.7rem;
  box-shadow: var(--shadow-soft);
}

.project-quote-text {
  font-style: italic;
  margin-bottom: 0.75rem;
}

/* bottom CTA */
.project-next-cta {
  background: linear-gradient(135deg, #b83e46, #f89a51);
  color: #fff;
}

.project-next-cta h2,
.project-next-cta p {
  color: #fff;
}

.project-next-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* responsive tweaks */
@media (max-width: 960px) {
  .project-meta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-feature-grid,
  .project-gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .project-meta-grid {
    grid-template-columns: 1fr;
  }
}

.project-back-link {
  padding-top: 0;
  text-align: center;
}

.back-to-portfolio {
  font-weight: 500;
  text-decoration: none;
  color: inherit;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.back-to-portfolio:hover {
  opacity: 1;
}

/* === LOGO IMAGE === */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.site-logo {
  display: block;
  height: 48px;   /* adjust up/down to taste */
  width: auto;
}

/*@media (max-width: 600px) {
  .site-logo {
    height: 48px;
  }
}
*/
/* Tablet */
@media (max-width: 768px) {
  .site-logo {
    height: 40px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .site-logo {
    height: 34px;
  }
}

.legal-hero {
  padding: 5rem 0 3rem;
  background: linear-gradient(120deg, #fbe3d3, #ffe9df);
}

.legal-hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: #b83e46;
}

.legal-hero h1 {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}

.legal-intro {
  max-width: 40rem;
  color: #6e5450;
}

.legal-toc {
  padding-top: 0; /* since hero already has padding */
}

.legal-toc-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.legal-toc-list a {
  font-size: 0.9rem;
  text-decoration: none;
  color: #b83e46;
}

.legal-toc-list a:hover {
  text-decoration: underline;
}

.legal-main {
  padding: 2rem 0 5rem;
}

.legal-main .container {
  max-width: 760px;
}

.legal-main h2 {
  font-size: 1.35rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  color: #b83e46;
}

.legal-main h3 {
  font-size: 1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.legal-main p,
.legal-main li {
  line-height: 1.7;
  color: #4b3a36;
  font-size: 0.95rem;
}

.legal-updated {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #93726a;
  margin-top: 0.75rem;
}

.legal-updated-label {
  font-weight: 600;
  color: #b83e46;
}

.legal-callout {
  margin: 1.25rem 0;
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  background: #fff7f3;
  border: 1px solid #f3c3b7;
  font-size: 0.9rem;
}

