/* HERO */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 95px 24px 55px;
  position: relative;
  margin-bottom: 0;
  background: url('https://images.unsplash.com/photo-1520975958225-8f3c0c8c0b6d?auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.25);
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 750px;
  transform: translateY(-35px);
}

.hero h1,
.about-section h2,
.cta h2 {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -1px;
  line-height: 1.05;
}

/* 
How to adjust clamp (MIN, FLUID, MAX)
38px → smallest size (mobile)
4.2vw → how aggressively it scales
52px → max size (desktop) 
ex:
too big = clamp(36px, 3.8vw, 48px);
too small = clamp(42px, 4.8vw, 56px);
just a little tweak = clamp(40px, 4.3vw, 50px);

How to tune letter-spacing
-0.8px   softer 
-1.2px   tighter
-1.5px   bold/editorial
*/
.hero h1 {
  font-size: clamp(27px, 5.5vw, 60px);
  letter-spacing: -2px;
  line-height: 1.02;
  white-space: nowrap;
  color: #111;
}

.hero p {
  margin-top: 18px;
  font-size: 18px;
  color: var(--muted);
}

.hero-buttons {
  margin-top: var(--component-gap);
}

/*Tuning Guide for Hero Word Spacing
width: 10px = tighter
width: 14px = balanced/recommended
width: 20px = more editorial / airy
*/
.spacer {
  display: inline-block;
  width: 14px;
}

#photos {
  scroll-margin-top: 60px;
}

.section > .container > .btn {
  margin-top: var(--component-gap);
}

/* ABOUT */
.about-section {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 50px;
  align-items: center;
}

.about-section img {
  width: 100%;
  max-height: 240px;
  object-fit: cover;
  border-radius: 18px;
}

.about-section p {
  color: var(--muted);
  font-size: 15px;
  margin-top: 16px;
}

/* CTA */
.cta {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 10%;
  margin-top: var(--hero-gap);
  margin-bottom: var(--hero-gap);
  background: var(--bg);
}

.cta p {
  color: var(--muted);
  margin-top: 16px;
  margin-bottom: var(--component-gap);
}
