/* Lash Out Loud — Brand Stylesheet */

:root {
  --bg: #FAF7F2;
  --bg-soft: #F0E9DE;
  --bg-rose: #FCEEEF;
  --ink: #2A2622;
  --ink-soft: #4A453F;
  --mute: #8B847B;
  --line: #E5DDD0;
  --pink: #E89BA8;
  --pink-deep: #D87085;
  --pink-hot: #FF6F8E;
  --gold: #C9A961;
  --white: #FFFFFF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink-soft);
  font-family: 'Lato', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

/* Typography */
.display, h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

h1 { font-size: clamp(40px, 6vw, 76px); font-weight: 500; }
h2 { font-size: clamp(34px, 4.5vw, 56px); }
h3 { font-size: clamp(22px, 2.5vw, 30px); }
h4 { font-size: clamp(18px, 1.6vw, 20px); }

.script {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--pink-deep);
  letter-spacing: 0.005em;
}

.eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pink-deep);
}

p { color: var(--ink-soft); }

/* Layout */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
}

section { padding: 100px 0; }

@media (max-width: 768px) {
  section { padding: 64px 0; }
}

/* ------ NAV ------ */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 76px;
  width: auto;
  display: block;
}

@media (max-width: 600px) {
  .logo img { height: 60px; }
}

/* Legacy logo styles (kept for backwards compatibility on inner pages) */
.logo-mark {
  width: 52px;
  height: 52px;
  border: 1.5px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-mark svg { width: 38px; height: auto; }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.005em;
}

.logo-sub {
  font-family: 'Lato', sans-serif;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--pink-deep);
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a:hover { color: var(--pink-deep); }

.nav-links a.active { color: var(--pink-deep); }

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -22px; left: 0; right: 0;
  height: 2px;
  background: var(--pink-deep);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--pink-deep);
  color: var(--white);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn:hover {
  background: var(--ink);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(216, 112, 133, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--white);
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
}

/* ------ HERO ------ */
.hero {
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

.hero-eyebrow {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-eyebrow .line {
  width: 36px;
  height: 1.5px;
  background: var(--pink-deep);
}

.hero h1 {
  margin-bottom: 18px;
}

.hero h1 .script {
  display: block;
  margin-top: 4px;
}

.hero-lede {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-phone {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--ink);
  border-bottom: 1px solid var(--mute);
  padding-bottom: 2px;
  transition: border-color 0.2s ease;
}

.hero-phone:hover { border-color: var(--pink-deep); }

.hero-image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(42, 38, 34, 0.18);
  aspect-ratio: 4/3;
  background: var(--bg-soft);
}

.hero-image img,
.hero-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-badge {
  position: absolute;
  bottom: -28px;
  left: -28px;
  background: var(--white);
  padding: 22px 28px;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(42, 38, 34, 0.12);
  border-top: 3px solid var(--pink-deep);
}

@media (max-width: 768px) {
  .hero-badge { left: 0; bottom: -20px; padding: 16px 22px; }
}

.hero-badge .num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
}

.hero-badge .lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 6px;
}

/* ------ WELCOME / INTRO SECTION ------ */
.welcome {
  text-align: center;
  padding: 120px 0 100px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-rose) 100%);
}

.welcome .eyebrow {
  margin-bottom: 24px;
  display: inline-block;
}

.welcome h2 {
  max-width: 800px;
  margin: 0 auto 32px;
}

.welcome-text {
  max-width: 680px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.8;
}

/* ------ SERVICES GRID ------ */
.services-section { background: var(--bg); }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .section-head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; }
}

.section-head .right {
  text-align: right;
}

@media (max-width: 768px) {
  .section-head .right { text-align: left; }
}

.section-head .eyebrow { margin-bottom: 14px; display: block; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

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

@media (max-width: 580px) {
  .services-grid { grid-template-columns: 1fr; }
}

.service-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(42, 38, 34, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(42, 38, 34, 0.12);
}

.service-card-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bg-soft);
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-card-img img { transform: scale(1.04); }

.service-card-body {
  padding: 26px 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--pink-deep);
  margin-bottom: 8px;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.service-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 16px;
  flex: 1;
}

.service-card-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pink-deep);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s ease;
}

.service-card-link:hover { gap: 14px; }

/* ------ ABOUT TEASER ------ */
.about-section {
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}

.about-image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 20px 60px rgba(42, 38, 34, 0.15);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-image-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.94);
  padding: 18px 22px;
  border-left: 3px solid var(--pink-deep);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.about-image-overlay .label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink-deep);
}

.about-image-overlay .text {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-style: italic;
  color: var(--ink);
  margin-top: 4px;
}

.about-content .eyebrow {
  margin-bottom: 16px;
  display: block;
}

.about-content h2 { margin-bottom: 28px; }

.about-content p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 500;
  color: var(--pink-deep);
  line-height: 1;
}

.about-stat .lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 8px;
}

/* ------ FEATURED WORK / GALLERY ------ */
.gallery-section {
  background: var(--bg-rose);
  text-align: center;
}

.gallery-section h2 {
  max-width: 700px;
  margin: 0 auto 20px;
}

.gallery-section .lede {
  max-width: 600px;
  margin: 0 auto 60px;
  font-size: 16px;
  color: var(--ink-soft);
}

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

@media (max-width: 800px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

.gallery-item {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 8px 28px rgba(42, 38, 34, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-item-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(42, 38, 34, 0.7) 100%);
  padding: 60px 24px 22px;
  color: var(--white);
  text-align: left;
}

.gallery-item-label .small {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.85;
}

.gallery-item-label h4 {
  color: var(--white);
  font-size: 22px;
  margin-top: 4px;
}

/* ------ TESTIMONIALS ------ */
.testimonials-section {
  background: var(--bg);
  text-align: center;
}

.testimonials-section h2 {
  max-width: 700px;
  margin: 0 auto 60px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

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

.testimonial {
  background: var(--white);
  padding: 40px 36px;
  border-radius: 4px;
  text-align: left;
  position: relative;
  box-shadow: 0 4px 20px rgba(42, 38, 34, 0.06);
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 100px;
  line-height: 1;
  color: var(--pink);
  opacity: 0.5;
}

.testimonial-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 20px;
  line-height: 1.5;
  color: var(--ink);
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}

.testimonial-attr {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink-deep);
}

/* ------ CONTACT STRIP ------ */
.contact-strip {
  background: var(--ink);
  color: var(--bg);
  padding: 80px 0;
}

.contact-strip .container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 768px) {
  .contact-strip .container { grid-template-columns: 1fr; gap: 40px; }
}

.contact-block .lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 14px;
}

.contact-block .val {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--bg);
  line-height: 1.4;
}

.contact-block .val a {
  border-bottom: 1px solid rgba(250, 247, 242, 0.3);
  transition: border-color 0.2s ease;
}

.contact-block .val a:hover { border-color: var(--pink); }

.contact-block.hours .val {
  font-size: 14px;
  font-family: 'Lato', sans-serif;
}

.contact-block.hours .val div {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  border-bottom: 1px dotted rgba(250, 247, 242, 0.15);
}

.contact-block.hours .val span:first-child { color: var(--bg); }
.contact-block.hours .val span:last-child { color: var(--mute); }

/* ------ FOOTER ------ */
footer {
  background: var(--ink);
  padding: 60px 0 32px;
  border-top: 1px solid rgba(250, 247, 242, 0.08);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(250, 247, 242, 0.08);
}

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
}

.footer-brand .logo-name { color: var(--bg); }
.footer-brand .logo-mark { border-color: var(--bg); }
.footer-brand .logo-mark svg path { fill: var(--bg); }
.footer-brand .logo-mark svg line { stroke: var(--bg); }

.footer-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--mute);
  margin-top: 16px;
  max-width: 280px;
}

.footer-col h5 {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 10px; }

.footer-col a {
  color: var(--bg);
  font-size: 14px;
  opacity: 0.75;
  transition: opacity 0.2s ease;
}

.footer-col a:hover { opacity: 1; }

.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--mute);
  letter-spacing: 0.04em;
}

@media (max-width: 600px) {
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ------ UTILITIES ------ */
.center { text-align: center; }
.mt-0 { margin-top: 0; }

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--pink-deep);
  outline-offset: 4px;
  border-radius: 4px;
}

/* Subtle entrance animation */
@media (prefers-reduced-motion: no-preference) {
  .hero-eyebrow, .hero h1, .hero-lede, .hero-cta, .hero-image {
    opacity: 0;
    animation: rise 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  }
  .hero-eyebrow { animation-delay: 0.05s; }
  .hero h1 { animation-delay: 0.15s; }
  .hero-lede { animation-delay: 0.3s; }
  .hero-cta { animation-delay: 0.45s; }
  .hero-image { animation-delay: 0.2s; }

  @keyframes rise {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
}
