/* --------------------------------------------------
   CSS VARIABLES (LAYOUT + TYPE ONLY)
-------------------------------------------------- */
:root {
  /* Spacing scale */
  --space-2xs: 0.25rem;
  --space-xs: 0.5rem;
  --space-s: 0.75rem;
  --space-m: 1rem;
  --space-l: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;

  /* Typography scale */
  --step--1: 0.85rem;
  --step-0: 1rem;
  --step-1: 1.25rem;
  --step-2: 1.6rem;
  --step-3: 2rem;
  --step-4: 2.8rem;
  --step-5: 3.5rem;
  --step-6: 5rem;

  /* Layout widths */
  --container-max: 900px;
  --hero-max: 68rem;
}

/* --------------------------------------------------
   GLOBAL
-------------------------------------------------- */
body {
  margin: 0;
  font-family: system-ui, sans-serif;
  background: #fffaf4;
  color: #222;
  line-height: 1.6;
}

.intro {
  max-width: 600px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-m);
  text-align: center;
  font-size: var(--step-1);
}

/* Consistent content container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-m);
}

/* --------------------------------------------------
   TITLES
-------------------------------------------------- */
.cinematic-title {
  font-size: var(--step-6);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #111;
  margin-bottom: var(--space-m);
  line-height: 1.1;
}

.cinematic-title1 {
  font-size: var(--step-5);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #111;
  margin-bottom: var(--space-m);
  line-height: 1.1;
}

/* --------------------------------------------------
   SECTION SYSTEM
-------------------------------------------------- */
.section {
  padding: var(--space-3xl) var(--space-m);
}

.section-tight {
  padding: var(--space-xl) var(--space-m);
}

.section-spacious {
  padding: var(--space-4xl) var(--space-m);
}

/* --------------------------------------------------
   HERO SECTION
-------------------------------------------------- */
.hero {
  padding: var(--space-3xl) var(--space-l);
}

.hero-inner {
  max-width: var(--hero-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.hero-badge {
  display: inline-block;
  background: #ffe4cc;
  padding: var(--space-xs) var(--space-s);
  border-radius: 3rem;
  font-size: var(--step--1);
  color: #8a4b00;
  margin-bottom: var(--space-s);
}

.hero-title {
  font-size: var(--step-4);
  line-height: 1.1;
  margin-bottom: var(--space-m);
  text-align: center;
}

.hero-title1 {
  font-size: var(--step-5);
  line-height: 1.2;
  margin-bottom: var(--space-m);
}

.hero-title span {
  color: #ff8a3d;
}

.hero-subtitle {
  font-size: var(--step-3);
  line-height: 1.2;
  margin-bottom: var(--space-m);
  text-align: center;
}

.hero-subtitle24 {
  font-size: var(--step-2);
  line-height: 1.2;
  margin-bottom: var(--space-m);
}
.hero-indent-subtitle24 {
  font-size: var(--step-2);
  line-height: 1.2;
  margin-bottom: var(--space-m);
  padding-left: 43rem;
}
/* Buttons */
.hero-buttons {
  display: flex;
  gap: var(--space-s);
  flex-wrap: wrap;
  justify-content: center;
}

.btn-main {
  background: #ff8a3d;
  color: white;
  padding: var(--space-s) var(--space-l);
  border-radius: 62rem;
  text-decoration: none;
  font-weight: 600;
}

.btn-main:hover {
  background: #ffa05f;
}

.btn-outline {
  border: 2px solid #ff8a3d;
  color: #ff8a3d;
  padding: var(--space-s) var(--space-l);
  border-radius: 62rem;
  text-decoration: none;
  font-weight: 600;
}

.btn-outline:hover {
  background: #fff0e6;
}

/* --------------------------------------------------
   HERO IMAGE + OVERLAYS
-------------------------------------------------- */
.hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 20rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 1rem 1rem rgba(0,0,0,0.15);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay-img {
  position: absolute;
  width: 7rem;
  height: 5rem;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 1rem 1rem rgba(0,0,0,0.2);
  border: 1rem solid white;
}

.overlay-1 {
  bottom: -1rem;
  left: -1rem;
  transform: rotate(-6deg);
}

.overlay-2 {
  top: -1rem;
  right: -1rem;
  transform: rotate(5deg);
}
.small-hero-image {
  max-width: 300px;   /* adjust to taste */
  height: auto;
  margin: 0 auto 2rem auto; /* center + spacing */
  border-radius: 1rem;
  overflow: hidden;
}

.small-hero-image .hero-image {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.large-hero-image {
  max-width: 1200px;   /* adjust to taste */
  height: auto;
  margin: 0 auto 2rem auto; /* center + spacing */
  border-radius: 1rem;
  overflow: hidden;
}

.large-hero-image .hero-image {
  width: 100%;
  height: auto;
  object-fit: contain;
}
/* --------------------------------------------------
   RESPONSIVE
-------------------------------------------------- */
@media (max-width: 62rem) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-image-wrapper {
    height: 16rem;
  }
  .cinematic-title {
    font-size: var(--step-5);
  }
  .cinematic-title1 {
    font-size: var(--step-4);
  }
  .hero-title1 {
    font-size: var(--step-4);
  }
}

/* --------------------------------------------------
   ABOUT PAGE / TEXT LAYOUT
-------------------------------------------------- */
.about-container {
  text-align: left;
  padding-left: 0;
  margin-left: 0;
}

.hero-photo {
  width: 100%;
  max-width: 37rem;
  border-radius: 1rem;
}

/* --------------------------------------------------
   UTILITY CLASSES
-------------------------------------------------- */
.button-text {
  padding: var(--space-xs) var(--space-s);
}

.camera-button {
  width: 2rem;
  height: 1rem;
  background-image: url('images/camera.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  font-size: 0.1rem;
  font-weight: bold;
  color: white;
  transition: transform 0.2s ease;
}

.camera-button:hover {
  transform: scale(1.05);
}

/* Indentation utilities (cleaned) */
.indent-l {
  padding-left: 33rem;
}

.indent-xl {
  padding-left: 40rem;
}

.indented li {
  margin-bottom: var(--space-xs);
}