/* ============================================================
   CAREN-JO COUTURE – styles.css  (Editorial Redesign)
   Font: Cormorant Garamond (editorial display) + Inter (body)
   Colors: rose pink #e91e8c, deep plum #1a0a14, blush #fdf6fa
   ============================================================ */

:root {
  --pink: #e91e8c;
  --pink-light: #f06abd;
  --pink-dark: #b5166c;
  --pink-blush: #fce8f3;
  --dark: #1a0a14;
  --mid: #2d1224;
  --light: #fdf6fa;
  --warm: #f5ede8;
  /* warm off-white, like template tan */
  --white: #ffffff;
  --text: #3d1a2e;
  --text-muted: #7a5068;
  --radius: 10px;
  --shadow: 0 8px 40px rgba(233, 30, 140, 0.10);
  --t: 0.3s ease;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-block;
  background: var(--pink);
  color: var(--white);
  padding: 13px 36px;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 2px solid var(--pink);
  transition: var(--t);
  cursor: pointer;
}

.btn-primary:hover {
  background: transparent;
  color: var(--pink);
  transform: translateY(-2px);
}

.btn-hero {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 13px 36px;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.7);
  transition: var(--t);
  margin-top: 36px;
}

.btn-hero:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

.btn-lg {
  padding: 16px 48px;
  font-size: 0.88rem;
}

/* ============================================================
   LABELS & TAGS
   ============================================================ */
.label-tag {
  display: block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.label-tag.pink {
  color: var(--pink);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
  background: rgba(255, 255, 255, 0.0);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  padding: 14px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 70px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: var(--t);
}

.navbar.scrolled .nav-logo img {
  filter: none;
}

/* Right cluster: links + button together */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

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

.nav-links a {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  transition: color 0.25s;
}

.navbar.scrolled .nav-links a {
  color: var(--text);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--pink);
  transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--pink-light);
}

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
  color: var(--pink);
}

.btn-nav {
  background: var(--pink);
  color: var(--white);
  padding: 10px 22px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: var(--t);
  white-space: nowrap;
  border: 2px solid var(--pink);
  margin-left: 16px;
}

.btn-nav:hover {
  background: transparent;
  color: var(--pink);
}

.navbar.scrolled .btn-nav:hover {
  color: var(--pink);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: 16px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--t);
}

.navbar.scrolled .hamburger span {
  background: var(--dark);
}
.hamburger.active span {
  background: var(--white) !important;
}

/* ============================================================
   HERO – Full bleed with massive display title (template style)
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform-origin: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(26, 10, 20, 0.85) 0%,
      rgba(26, 10, 20, 0.45) 45%,
      rgba(26, 10, 20, 0.15) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px 80px;
  max-width: 900px;
}

.hero-eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 16px;
}

.hero-content h1 {
  font-family: var(--serif);
  font-size: clamp(4.5rem, 10vw, 9rem);
  font-weight: 300;
  line-height: 0.92;
  color: var(--white);
  letter-spacing: -2px;
}

.hero-content h1 em {
  font-style: italic;
  color: var(--pink-light);
  font-weight: 300;
}

.hero-sub-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
}

.hero-rule {
  width: 50px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}

.hero-sub-row p {
  font-family: var(--sans);
  font-size: 0.88rem;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 48px;
  right: 48px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  writing-mode: vertical-lr;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.3
  }
}

/* ============================================================
   ABOUT – Asymmetric 2-image editorial layout (matches template)
   ============================================================ */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  min-height: 700px;
  background: var(--warm);
  position: relative;
}

.about-left {
  position: relative;
  overflow: hidden;
}

.about-img-tall {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-caption {
  position: absolute;
  bottom: 40px;
  left: 36px;
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}

.about-right {
  display: flex;
  flex-direction: column;
  padding: 60px 60px 60px 50px;
  gap: 40px;
  background: var(--warm);
}

.about-img-sm {
  width: 65%;
  aspect-ratio: 4/3;
  object-fit: cover;
  align-self: flex-end;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.about-text-block h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 20px;
}

.about-text-block h2 em {
  color: var(--pink);
  font-style: italic;
}

.about-text-block p {
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 32px;
  max-width: 460px;
}

.about-stats {
  display: flex;
  gap: 36px;
  margin-bottom: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(233, 30, 140, 0.15);
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--pink);
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ============================================================
   SERVICES – with oversized background text
   ============================================================ */
.services {
  position: relative;
  background: var(--dark);
  padding: 120px 0 100px;
  overflow: hidden;
}

.services-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-size: clamp(8rem, 18vw, 18rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.02);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -4px;
  user-select: none;
}

.services-header {
  margin-bottom: 60px;
  position: relative;
}

.services-header h2 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}

.services-header h2 em {
  font-style: italic;
  color: var(--pink-light);
}

.services-header p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 500px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.service-card {
  padding: 40px 32px;
  background: var(--dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--t);
  animation-delay: var(--delay, 0s);
}

.service-card:hover {
  background: rgba(233, 30, 140, 0.07);
}

.service-icon {
  font-size: 1.3rem;
  color: var(--pink);
  margin-bottom: 18px;
  display: block;
}

.service-card h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
}

/* ============================================================
   GALLERY / COLLAGE – Mosaic (matches template style)
   ============================================================ */
.gallery {
  position: relative;
  background: var(--white);
  padding: 80px 0 120px;
  overflow: hidden;
}

.gallery-bg-text {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: clamp(7rem, 18vw, 18rem);
  font-weight: 700;
  color: rgba(26, 10, 20, 0.04);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -6px;
  user-select: none;
  text-transform: lowercase;
  line-height: 1;
}

.gallery-header {
  margin-bottom: 56px;
}

.gallery-header h2 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 14px;
}

.gallery-header h2 em {
  font-style: italic;
  color: var(--pink);
}

.gallery-header p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Mosaic / collage grid */
.collage-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.9fr;
  gap: 16px;
  align-items: start;
}

.collage-col-a,
.collage-col-b,
.collage-col-c {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.collage-col-b {
  margin-top: 60px;
}

.collage-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
  display: block;
}

.collage-item:hover img {
  transform: scale(1.06);
}

.ci-tall {
  height: 420px;
}

.ci-sm {
  height: 220px;
}

.ci-md {
  height: 300px;
}

.collage-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(26, 10, 20, 0.75) 0%, transparent 100%);
  color: var(--white);
  font-family: var(--serif);
  font-size: 0.95rem;
  font-style: italic;
  padding: 28px 20px 16px;
  opacity: 0;
  transition: opacity 0.3s;
}

.collage-item:hover .collage-label {
  opacity: 1;
}

/* ============================================================
   WHY US – two-column editorial
   ============================================================ */
.why-us {
  background: var(--warm);
  padding: 120px 0;
}

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

.why-left h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 24px;
}

.why-left h2 em {
  font-style: italic;
  color: var(--pink);
}

.why-left p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 36px;
}

.why-cards {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(26, 10, 20, 0.08);
}

.why-card:first-child {
  border-top: 1px solid rgba(26, 10, 20, 0.08);
}

.why-card>i {
  font-size: 1.1rem;
  color: var(--pink);
  flex-shrink: 0;
  margin-top: 3px;
  width: 20px;
}

.why-card h4 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.why-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   MANAGEMENT
   ============================================================ */
.management {
  position: relative;
  background: var(--white);
  padding: 120px 0;
  overflow: hidden;
}

.mgmt-bg-text {
  position: absolute;
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-size: clamp(6rem, 14vw, 14rem);
  font-weight: 700;
  color: rgba(233, 30, 140, 0.04);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

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

.mgmt-img-wrap {
  position: relative;
}

.mgmt-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top;
}

.mgmt-img-wrap::after {
  content: '';
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--pink);
  z-index: -1;
}

.mgmt-body h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 8px;
}

.mgmt-body h2 em {
  font-style: italic;
  color: var(--pink);
}

.mgmt-role {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 24px;
}

.mgmt-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 24px;
}

.mgmt-body blockquote {
  border-left: 3px solid var(--pink);
  padding: 10px 0 10px 20px;
  margin-bottom: 28px;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--dark);
}

.mgmt-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mgmt-tags span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--pink-dark);
  background: var(--pink-blush);
  padding: 6px 16px;
  border: 1px solid rgba(233, 30, 140, 0.2);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cta-bg-img {
  position: absolute;
  inset: 0;
}

.cta-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 10, 20, 0.9) 0%, rgba(45, 18, 36, 0.75) 100%);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 40px;
}

.cta-content h2 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
}

.cta-content h2 em {
  font-style: italic;
  color: var(--pink-light);
}

.cta-content p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  margin-bottom: 36px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  padding-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-brand img {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  transition: var(--t);
}

.social-links a:hover {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white);
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--pink);
  display: inline-block;
}

.footer-links ul li,
.footer-services ul li {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 10px;
  transition: color 0.25s;
  cursor: pointer;
}

.footer-links ul li a {
  color: inherit;
}

.footer-links ul li:hover,
.footer-links ul li a:hover {
  color: var(--pink-light);
}

.footer-contact p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 12px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.5;
}

.footer-contact p i {
  color: var(--pink);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.25s;
}

.footer-contact a:hover {
  color: var(--pink-light);
}

.reg-num {
  font-size: 0.76rem !important;
  color: rgba(255, 255, 255, 0.25) !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 40px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom a {
  color: var(--pink-light);
}

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

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
[data-animate] {
  opacity: 0;
  transition: opacity 0.75s ease, transform 0.75s ease;
  transition-delay: var(--delay, 0s);
}

[data-animate="fade-up"] {
  transform: translateY(40px);
}

[data-animate="fade-right"] {
  transform: translateX(-40px);
}

[data-animate="fade-left"] {
  transform: translateX(40px);
}

[data-animate="zoom-in"] {
  transform: scale(0.92);
}

[data-animate].animated {
  opacity: 1;
  transform: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .about-intro {
    grid-template-columns: 1fr 1.2fr;
  }

  .mgmt-inner,
  .why-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .mgmt-img-wrap img {
    height: 380px;
  }

  .mgmt-img-wrap::after {
    display: none;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .about-left {
    height: 400px;
  }

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

  .collage-col-c {
    display: none;
  }

  .collage-col-b {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {

  .nav-links,
  .btn-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(26, 10, 20, 0.98);
    justify-content: center;
    align-items: center;
    gap: 36px;
    z-index: 999;
  }

  .nav-links.open a,
  .navbar.scrolled .nav-links.open a {
    font-size: 1.2rem;
    color: var(--white);
    letter-spacing: 2px;
  }

  .hero-content {
    padding: 0 32px 64px;
  }

  .hero-scroll-indicator {
    display: none;
  }

  .about-right {
    padding: 40px 28px;
  }

  .about-img-sm {
    width: 90%;
  }

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

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

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

  .collage-col-b {
    margin-top: 0;
  }

  .ci-tall,
  .ci-sm,
  .ci-md {
    height: 240px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: clamp(3.5rem, 14vw, 5rem);
  }

  .cta-content h2 {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}