:root {
  /* Colors matching the background image - warm browns/oranges */
  --accent: #f0b33d; /* warm yellow/gold */
  --muted: #e9f1ec; /* light green/cream */
  --bg-gradient: #6a3b1f;
  --text-white: #ffffff;
  --text-shadow: rgba(0, 0, 0, 0.6);
  
  /* Hero spacing - all content fits within image height */
  --hero-pad-top: clamp(20px, 4vh, 50px); /* space from top to logo */
  --gap-logo-verse: 10px;   /* small space from logo to verse */
  --gap-verse-date: 40px;   /* bigger space to date */
  --gap-date-button: 18px;  /* medium space to button */
  --hero-pad-bottom: calc(40px + env(safe-area-inset-bottom, 0px));
  
  --max-width: 1100px;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--muted);
  background: var(--bg-gradient);
  -webkit-font-smoothing: antialiased;
}

/* HERO SECTION - fits within background image */
.hero {
  min-height: 100vh;
}

.hero-image {
  width: 100%;
  height: 100vh;
  height: 100dvh; /* Dynamic viewport height for mobile */
  min-height: 100vh;
  min-height: 100dvh; /* Dynamic viewport height for mobile */
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  padding: var(--hero-pad-top) 20px var(--hero-pad-bottom);
  pointer-events: none;
  display: flex;
  flex-direction: column;
}

/* CORNER LAYOUT - top left and top right */
.hero-corners {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 12px 0 4px;
  pointer-events: auto;
  z-index: 10;
}

.corner.left {
  display: block;
  text-align: left;
}

.company-logo {
  height: clamp(120px, 20vh, 200px);
  max-height: 24vh;
  width: auto;
  object-fit: contain;
  object-position: left top;
  filter: drop-shadow(0 4px 12px var(--text-shadow));
  margin-left: -4px;
  margin-right: auto;
  display: block;
}

.hero-title {
  font-weight: 900;
  color: var(--text-white);
  text-transform: uppercase;
  text-align: right;
  line-height: 1.2;
  letter-spacing: 0.8px;
  font-size: clamp(16px, 2.8vw, 32px);
  text-shadow: 0 4px 12px var(--text-shadow);
  margin: 0;
}

.hero-title .line1,
.hero-title .line2 {
  display: block;
}

/* CENTER STACKED CONTENT */
.hero-body {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
  padding-top: clamp(20px, 3vh, 40px);
  pointer-events: auto;
  width: 100%;
  max-width: 100%;
}

.acamp-logo.bigger {
  height: clamp(340px, 55vh, 720px);
  object-fit: contain;
  filter: drop-shadow(0 8px 20px var(--text-shadow));
  display: block;
}

.verse {
  color: var(--text-white);
  text-align: center;
  font-weight: 600;
  font-size: clamp(14px, 2vw, 20px);
  line-height: 1.3;
  text-transform: uppercase;
  margin: 0;
  margin-top: -20px;
  letter-spacing: 0.6px;
  text-shadow: 0 4px 16px var(--text-shadow);
  max-width: 95%;
}

.verse .ref {
  display: block;
  font-size: 0.7em;
  margin-top: 6px;
  opacity: 0.95;
  text-transform: none;
}

.hero-dates {
  color: var(--text-white);
  font-weight: 900;
  margin-top: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: clamp(28px, 5.5vw, 64px);
  text-align: center;
  text-shadow: 0 4px 16px var(--text-shadow);
  letter-spacing: 1px;
}

.cta-wrapper {
  pointer-events: auto;
  margin-bottom: 60px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.btn {
  border: 0;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  font-size: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  pointer-events: none;
}

.btn:disabled:hover {
  transform: none;
}

.btn.primary {
  background: var(--accent);
  color: #0b1b18;
  text-transform: uppercase;
  font-size: clamp(18px, 2.2vw, 24px);
  padding: 16px 32px;
  font-weight: 900;
  box-shadow: 0 8px 24px rgba(240, 179, 61, 0.4);
  min-width: 200px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn.secondary {
  background: transparent;
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn.outlined {
  background: transparent;
  color: var(--text-white);
  border: 2px solid var(--accent);
  text-transform: uppercase;
  font-size: clamp(18px, 2.2vw, 24px);
  padding: 16px 32px;
  font-weight: 900;
  box-shadow: 0 4px 16px rgba(240, 179, 61, 0.2);
  min-width: 200px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn.outlined:hover {
  background: rgba(240, 179, 61, 0.1);
  box-shadow: 0 6px 20px rgba(240, 179, 61, 0.3);
}

/* DETAILS SECTION - below the hero */
/* DETAILS SECTION - redesigned */
.details {
  max-width: var(--max-width);
  margin: 48px auto;
  padding: 40px 24px;
  overflow: hidden;
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
}

.details h2 {
  color: var(--accent);
  margin: 0 0 32px 0;
  font-size: clamp(28px, 4vw, 36px);
  text-align: center;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin: 0;
  position: relative;
  z-index: 1;
}

.detail-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 28px;
  color: var(--muted);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.detail-icon {
  font-size: 36px;
  margin-bottom: 12px;
  display: block;
}

.detail-card h3 {
  color: var(--accent);
  margin: 0 0 16px 0;
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.detail-card p {
  margin: 8px 0;
  line-height: 1.6;
  font-size: 16px;
}

.detail-card p a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s, text-decoration 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.detail-card p a:hover {
  color: var(--text-white);
  text-decoration: underline;
}

.contact-item {
  display: flex;
  align-items: center;
}

.whatsapp-icon {
  flex-shrink: 0;
  color: #25D366;
  transition: transform 0.2s;
}

.detail-card p a:hover .whatsapp-icon {
  transform: scale(1.1);
}

.detail-card .address {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 16px;
}

.detail-card .address a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s, text-decoration 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.detail-card .address a:hover {
  color: var(--text-white);
  text-decoration: underline;
}

/* Date Card */
.date-card {
  background: linear-gradient(135deg, rgba(240, 179, 61, 0.15), rgba(240, 179, 61, 0.05));
  border-color: rgba(240, 179, 61, 0.3);
}

/* Location Card */
.location-card {
  grid-column: span 1;
}

.map-container {
  margin-top: 16px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
  width: 100%;
  height: 200px;
  border: 0;
  display: block;
}

/* Pricing Card */
.pricing-card {
  background: linear-gradient(135deg, rgba(240, 179, 61, 0.12), rgba(240, 179, 61, 0.04));
  border-color: rgba(240, 179, 61, 0.25);
}

.pricing-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-item:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.price-label {
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-value {
  color: var(--text-white);
  font-size: 28px;
  font-weight: 900;
  margin-top: 4px;
}

.price-subtitle {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  margin-top: 6px;
  display: block;
  line-height: 1.4;
  opacity: 0.9;
}

.includes-title {
  color: var(--accent);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
  margin-top: 0;
}

.includes-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.includes-list li {
  padding-left: 20px;
  position: relative;
}

.includes-list li::before {
  content: "•";
  color: var(--accent);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.price-desc {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.price-note {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.price-note .price-label {
  font-size: 13px;
  opacity: 0.9;
}

/* VIDEOS SECTION - redesigned */
.videos {
  max-width: var(--max-width);
  margin: 48px auto;
  padding: 40px 24px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.videos h2 {
  color: var(--accent);
  text-align: center;
  font-size: clamp(28px, 4vw, 36px);
  margin: 0 0 32px 0;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.carousel {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

.arrow {
  background: linear-gradient(135deg, rgba(240, 179, 61, 0.2), rgba(240, 179, 61, 0.1));
  border: none;
  color: var(--accent);
  padding: 16px 20px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  transition: all 0.3s ease;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.arrow:hover {
  background: linear-gradient(135deg, rgba(240, 179, 61, 0.35), rgba(240, 179, 61, 0.2));
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(240, 179, 61, 0.3);
}

.arrow:active {
  transform: scale(0.95);
}

.slides {
  overflow: hidden;
  flex: 1;
  border-radius: 16px;
  position: relative;
}

.slide {
  min-width: 100%;
  display: none;
  overflow: hidden;
}

.slide.active {
  display: block;
}

.video-wrap {
  background: transparent;
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.video-wrap:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.video-wrap iframe {
  width: 100%;
  height: 420px;
  border-radius: 16px;
  border: none;
  display: block;
  overflow: hidden;
  position: relative;
  pointer-events: auto;
}

.caption {
  text-align: center;
  display: block;
  padding: 16px 0 0 0;
  color: var(--accent);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* MODAL */
.modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1000;
}

.modal[aria-hidden="true"] {
  display: none;
}

.modal-dialog {
  background: linear-gradient(180deg, #1a2f26, #0f1f18);
  border-radius: 14px;
  padding: 28px;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-close {
  position: absolute;
  right: 12px;
  top: 12px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 24px;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: background 0.2s;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.modal h3 {
  color: var(--accent);
  margin-top: 0;
  font-size: 24px;
}

.modal label {
  display: block;
  margin-top: 16px;
  font-size: 16px;
  color: var(--muted);
  font-weight: 500;
  transition: color 0.2s;
}

.modal label .required-tag {
  font-style: italic;
  color: var(--muted);
}

.modal label.invalid .required-tag {
  color: #ff4444;
}

.modal label:has(+ .checkbox-group),
.modal label:has(+ .checkbox-group-inline),
.modal label:has(+ .form-note + .checkbox-group),
.modal label:has(+ .form-note + .checkbox-group-inline) {
  margin-top: 24px;
  padding-top: 16px;
}

.modal label.radio-label {
  margin-top: 0px;
}

.modal label.checkbox-label {
  margin-top: 0px;
}

.modal label:first-of-type {
  margin-top: 0;
}

.modal input {
  display: block;
  width: 100%;
  padding: 12px;
  margin-top: 8px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-size: 17px;
}

.modal input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
}

.modal select {
  display: block;
  width: 100%;
  padding: 12px;
  margin-top: 8px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-size: 17px;
  cursor: pointer;
}

.modal select:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
}

.modal textarea {
  display: block;
  width: 100%;
  padding: 12px;
  margin-top: 8px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-size: 17px;
  font-family: inherit;
  resize: vertical;
  min-height: 80px;
}

.modal textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
}

.radio-group,
.checkbox-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 8px;
}

.checkbox-group-inline {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
}

.checkbox-group-inline {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
}

.radio-group-inline {
  flex-direction: row;
  gap: 16px;
  align-items: stretch;
}

.radio-group-inline .radio-label {
  flex: 1;
  min-height: 48px;
}

@media (max-width: 480px) {
  .radio-group-inline {
    flex-direction: column;
    gap: 12px;
  }
  
  .radio-group-inline .radio-label {
    flex: none;
  }
}

.radio-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  font-size: 16px;
  text-align: center;
  transition: all 0.2s;
  font-family: inherit;
  line-height: 1.4;
  position: relative;
}

.radio-label:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
}

.radio-label input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
}

.radio-label.selected {
  background: rgba(240, 179, 61, 0.15);
  border-color: var(--accent);
  color: var(--accent);
}

.radio-label span {
  display: inline-block;
}

.checkbox-label {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  padding: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  transition: background 0.2s;
  text-align: center;
}

.checkbox-label:hover {
  background: rgba(255, 255, 255, 0.06);
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  accent-color: var(--accent);
  flex-shrink: 0;
  align-self: center;
}

.checkbox-label span {
  color: var(--muted);
  font-size: 16px;
  line-height: 20px;
  flex: 1;
  display: flex;
  align-items: center;
}

/* Area buttons for help form */
.area-buttons-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 8px;
}

.area-button {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 16px;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  line-height: 1.4;
}

.area-button:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
}

.area-button.selected {
  background: rgba(240, 179, 61, 0.15);
  border-color: var(--accent);
  color: var(--accent);
}

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

/* Daily buttons for subscription form */
.daily-buttons-group {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.daily-button {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  line-height: 1.4;
  flex: 1;
  min-width: 120px;
}

.daily-button:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
}

.daily-button.selected {
  background: rgba(240, 179, 61, 0.15);
  border-color: var(--accent);
  color: var(--accent);
}

@media (max-width: 768px) {
  .daily-buttons-group {
    grid-template-columns: repeat(2, 1fr);
    display: grid;
  }
  
  .daily-button {
    min-width: auto;
  }
}

.form-disclaimer,
.form-note {
  font-size: 14px;
  color: var(--accent);
  margin-top: 6px;
  margin-bottom: 0;
  line-height: 1.4;
  font-style: italic;
  opacity: 0.9;
}

.form-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  padding-top: 20px;
  flex-wrap: wrap;
}

.form-actions .btn {
  min-width: 120px;
}

.form-actions .btn.primary {
  flex: 2;
}

.form-actions .btn.secondary {
  flex: 1;
}

.privacy {
  font-size: 12px;
  opacity: 0.8;
  color: var(--muted);
  line-height: 1.5;
}

.success {
  text-align: center;
}

.success h4 {
  color: var(--accent);
  font-size: 24px;
  margin-bottom: 12px;
}

.success p {
  color: var(--muted);
  margin-bottom: 20px;
}

.success .btn {
  display: block;
  margin: 0 auto;
}

/* FOOTER */
.site-footer {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  padding: 32px 24px;
  margin-top: 40px;
  font-size: 14px;
}

/* Floating scroll button */
.floating-scroll-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: linear-gradient(135deg, rgba(240, 179, 61, 0.9), rgba(240, 179, 61, 0.8));
  color: #0b1b18;
  border: none;
  border-radius: 50px;
  padding: 12px 24px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(240, 179, 61, 0.4);
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.floating-scroll-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(240, 179, 61, 0.5);
  background: linear-gradient(135deg, rgba(240, 179, 61, 1), rgba(240, 179, 61, 0.9));
}

.floating-scroll-btn:active {
  transform: translateY(-2px);
}

.scroll-text {
  display: inline-block;
}

.scroll-arrow {
  font-size: 18px;
  display: inline-block;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-6px);
  }
  60% {
    transform: translateY(-3px);
  }
}

@keyframes bounceUp {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(6px);
  }
  60% {
    transform: translateY(3px);
  }
}

.floating-scroll-btn.scroll-to-top .scroll-arrow {
  animation: bounceUp 2s infinite;
}

@media (max-width: 768px) {
  .floating-scroll-btn {
    bottom: 16px;
    right: 16px;
    padding: 10px 20px;
    font-size: 10px;
  }

  .scroll-arrow {
    font-size: 16px;
  }
}

/* RESPONSIVE - MOBILE */
@media (max-width: 768px) {
  .hero-image {
    height: 100dvh;
    min-height: 100dvh;
    max-height: 100dvh;
  }

  .hero-corners {
    top: 16px;
    left: 6px;
    right: 12px;
    padding: 0 6px;
  }

  .corner.left {
    display: block;
    text-align: left;
  }

  .company-logo {
    height: clamp(100px, 16vh, 160px);
    width: auto;
    margin-left: -4px;
    margin-right: auto;
    display: block;
    object-position: left top;
  }

  .hero-title {
    font-size: clamp(16px, 4.2vw, 26px);
    margin-top: 2px;
  }

  .hero-body {
    padding-top: clamp(30px, 8vh, 60px);
  }

  .acamp-logo.bigger {
    height: clamp(272px, 51vh, 476px);
    max-width: 768px;
    display: block;
  }

  .verse {
    font-size: clamp(12px, 3.5vw, 16px);
    padding: 6px 8px;
  }

  .hero-dates {
    font-size: clamp(24px, 6vw, 40px);
  }

  .btn.primary,
  .btn.outlined {
    font-size: 18px;
    padding: 14px 28px;
    min-width: 180px;
    height: 52px;
  }

  .hero-overlay {
    padding-left: 12px;
    padding-right: 12px;
  }

  .details {
    padding: 32px 16px;
    margin: 32px auto;
  }

  .details-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .location-card {
    grid-column: span 1;
  }

  .video-wrap iframe {
    height: 240px;
  }

  .carousel {
    gap: 12px;
  }

  .arrow {
    width: 48px;
    height: 48px;
    padding: 12px;
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .hero-image {
    height: 100dvh;
    min-height: 100dvh;
    max-height: 100dvh;
  }

  .hero {
    min-height: 100dvh;
  }

  .hero-corners {
    top: 20px;
    left: 4px;
    right: 8px;
    padding: 0 4px;
  }

  .corner.left {
    display: block;
    text-align: left;
  }

  .company-logo {
    height: clamp(80px, 14vh, 120px);
    width: auto;
    margin-left: -4px;
    margin-right: auto;
    display: block;
    object-position: left top;
  }

  .hero-title {
    font-size: clamp(18px, 4.5vw, 24px);
    letter-spacing: 0.5px;
    margin-top: 4px;
  }

  .hero-body {
    padding-top: clamp(20px, 6vh, 50px);
  }

  .acamp-logo.bigger {
    height: clamp(238px, 47.6vh, 408px);
    max-width: 480px;
  }

  .verse {
    font-size: 13px;
    padding: 4px 6px;
  }

  .hero-dates {
    font-size: 22px;
  }

  .cta-wrapper {
    flex-direction: column;
    gap: 12px;
  }

  .btn.primary,
  .btn.outlined {
    width: 100%;
    max-width: 300px;
    min-width: auto;
    height: auto;
    font-size: 16px;
    padding: 12px 24px;
    min-width: 160px;
    height: 48px;
  }

  .floating-scroll-btn {
    bottom: 12px;
    right: 12px;
    padding: 8px 16px;
    font-size: 10px;
  }

  .details {
    padding: 24px 12px;
    margin: 24px auto;
  }

  .detail-card {
    padding: 20px;
  }

  .detail-icon {
    font-size: 28px;
  }

  .detail-card h3 {
    font-size: 18px;
  }

  .map-container iframe {
    height: 180px;
  }

  .videos {
    padding: 24px 12px;
    margin: 32px auto;
  }

  .video-wrap iframe {
    height: 200px;
  }

  .arrow {
    width: 44px;
    height: 44px;
    padding: 10px;
    font-size: 18px;
  }

  .carousel {
    gap: 8px;
  }
}
