/* ================================================
   THE PADEL ESCAPE — STYLESHEET
   Modern · Minimal · Luxury · Holiday Vibes
   ================================================ */

:root {
  --primary:       #E8673A;
  --primary-dark:  #c9542a;
  --primary-light: #fde8df;
  --secondary:     #F5C14A;
  --accent:        #F4A0BE;
  --white:         #FFFFFF;
  --off-white:     #FEFAF6;
  --light:         #FFF4EC;
  --warm-light:    #FDF0E3;
  --dark:          #1C2B3D;
  --text:          #2D2D2D;
  --text-muted:    #888888;
  --border:        rgba(0, 0, 0, 0.08);
  --shadow:        0 4px 30px rgba(0, 0, 0, 0.07);
  --shadow-lg:     0 20px 60px rgba(0, 0, 0, 0.12);
  --radius:        18px;
  --radius-sm:     10px;
  --transition:    all 0.3s ease;
  --gradient:      linear-gradient(135deg, var(--primary) 0%, #f08030 50%, var(--secondary) 100%);
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
button { font-family: inherit; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.15;
  color: var(--dark);
}
h1 { font-size: clamp(2.6rem, 6vw, 5.2rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 4vw, 3.6rem);   font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }

h1 em, h2 em, h3 em { font-style: italic; color: var(--primary); }

p { font-size: 1rem; color: #555; line-height: 1.75; }

/* ---- LAYOUT ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.section         { padding: 110px 0; }
.section-light   { background: var(--off-white); }
.section-warm    { background: var(--warm-light); }

.section-header  { margin-bottom: 64px; }
.text-center     { text-align: center; }
.text-center p   { max-width: 560px; margin: 0 auto; }

.section-tag {
  display: inline-block;
  background: var(--gradient);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 34px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 6px 24px rgba(232, 103, 58, 0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(232, 103, 58, 0.45);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: #fff;
}

.btn-lg   { padding: 18px 44px; font-size: 0.95rem; }
.btn-full { width: 100%; justify-content: center; }

/* ================================================
   NAVIGATION
   ================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: background 0.4s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.07);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}
.navbar.scrolled .nav-logo img { filter: none; }

.nav-links {
  display: flex;
  gap: 34px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}
.navbar.scrolled .nav-links a { color: var(--text); }
.nav-links a:hover,
.navbar.scrolled .nav-links a:hover { color: var(--primary); }

.nav-cta {
  padding: 10px 26px;
  font-size: 0.83rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: #fff;
  display: block;
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .nav-toggle span { background: var(--dark); }

/* ================================================
   HERO
   ================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--dark); /* fallback */
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(28, 43, 61, 0.78) 0%,
    rgba(232, 103, 58, 0.42) 55%,
    rgba(245, 193, 74, 0.25) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 130px;
  padding-bottom: 70px;
  color: #fff;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 34px;
  letter-spacing: 0.03em;
}

.hero h1 { color: #fff; max-width: 840px; margin-bottom: 22px; }
.hero h1 em { color: var(--secondary); }

.hero-sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  max-width: 560px;
  margin-bottom: 44px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-scroll {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 48px; height: 1px;
  background: rgba(255, 255, 255, 0.35);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: rgba(255, 255, 255, 0.8);
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine { to { left: 110%; } }

.hero-stats {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 28px;
  margin-top: auto;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
  max-width: 220px;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--secondary);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stat-divider {
  width: 1px; height: 44px;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  margin: 0 28px;
}

/* ================================================
   TRUST BAR
   ================================================ */
.trust-bar {
  background: var(--gradient);
  padding: 22px 0;
  text-align: center;
}
.trust-text {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  letter-spacing: 0.01em;
}

/* ================================================
   ABOUT
   ================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.about-images { position: relative; }

.about-img-main {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
  background: var(--light);
}
.about-img-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.about-img-main:hover img { transform: scale(1.04); }

.about-img-accent {
  position: absolute;
  bottom: -32px; right: -32px;
  width: 46%;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: var(--shadow-lg);
  background: var(--light);
}
.about-img-accent img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.about-badge-float {
  position: absolute;
  top: 28px; right: -24px;
  background: var(--gradient);
  color: #fff;
  padding: 12px 22px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: 0 8px 28px rgba(245, 193, 74, 0.4);
  white-space: nowrap;
}

.about-text { padding-left: 12px; }
.about-text h2 { margin: 8px 0 22px; }

.lead-text {
  font-size: 1.08rem;
  color: var(--dark);
  font-weight: 500;
  margin-bottom: 14px;
}

.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 38px;
}
.feature-pill {
  background: var(--light);
  border: 1px solid rgba(232, 103, 58, 0.2);
  color: var(--primary-dark);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.83rem;
  font-weight: 500;
}

/* ================================================
   HOW IT WORKS
   ================================================ */
.steps-grid {
  display: flex;
  align-items: flex-start;
  max-width: 920px;
  margin: 0 auto;
}

.step {
  flex: 1;
  text-align: center;
  padding: 40px 28px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.step:hover {
  background: #fff;
  box-shadow: var(--shadow);
}

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
  opacity: 0.55;
}
.step-icon { font-size: 2.2rem; margin-bottom: 18px; }
.step h3   { margin-bottom: 12px; font-size: 1.35rem; }

.step-connector {
  width: 70px; height: 2px;
  background: var(--gradient);
  flex-shrink: 0;
  margin-top: 84px;
  border-radius: 2px;
  opacity: 0.35;
}

/* ================================================
   SERVICES
   ================================================ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.service-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-card-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--light);
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.06); }

.service-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,43,61,0.55), transparent 55%);
}

.service-card-content { padding: 34px; }

.service-tag {
  display: inline-block;
  background: var(--light);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.service-card-featured .service-tag {
  background: var(--gradient);
  color: #fff;
}

.service-card h3 { margin-bottom: 12px; }
.service-card p  { margin-bottom: 0; }

.service-features {
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-features li {
  font-size: 0.88rem;
  color: #555;
}

/* ================================================
   WHAT WE HANDLE
   ================================================ */
.handles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.handle-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 38px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}
.handle-item:hover {
  border-bottom-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.handle-icon { font-size: 2.6rem; margin-bottom: 18px; display: block; }
.handle-img { width: 110px; height: 110px; object-fit: cover; border-radius: 12px; margin: 0 auto 18px; display: block; }
.handle-item h4 { margin-bottom: 8px; }

/* ================================================
   GALLERY
   ================================================ */
.gallery-section .section-header { padding: 0 28px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 10px;
  padding: 0 28px;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  background: var(--light);
}
.gallery-item-tall  { grid-row: span 2; }
.gallery-item-wide  { grid-column: span 2; }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(232, 103, 58, 0.75) 0%, transparent 55%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ================================================
   FAQ
   ================================================ */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open {
  box-shadow: var(--shadow);
  border-color: rgba(232, 103, 58, 0.25);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark);
  text-align: left;
  gap: 18px;
}
.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--primary);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.35s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s ease;
}
.faq-answer p {
  padding: 0 26px 22px;
  font-size: 0.93rem;
}
.faq-item.open .faq-answer { max-height: 280px; }

/* ================================================
   CONTACT
   ================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 90px;
  align-items: start;
}

.contact-info h2  { margin: 10px 0 18px; }
.contact-info > p { margin-bottom: 42px; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.contact-item strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--text-muted);
  margin-bottom: 5px;
}
.contact-item a:hover { color: var(--primary); }
.contact-item span   { color: var(--text); }

.social-links { display: flex; gap: 12px; flex-wrap: wrap; }
.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.83rem;
  font-weight: 500;
  transition: var(--transition);
}
.social-link:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* FORM */
.contact-form-wrapper {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 50px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-group label {
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(232, 103, 58, 0.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 44px;
}
.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: -6px;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.65);
  padding: 90px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 52px;
  margin-bottom: 64px;
}

.footer-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  margin-bottom: 18px;
  filter: brightness(1.2);
  opacity: 1;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.72;
  margin-bottom: 26px;
}

.footer-social { display: flex; gap: 12px; }
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.65);
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.footer-links h4 {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 22px;
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-bottom p    { font-size: 0.8rem; color: rgba(255, 255, 255, 0.36); }
.footer-tagline     { font-style: italic; }

/* ================================================
   WHATSAPP FLOAT
   ================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.55);
  color: #fff;
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: waPulse 2.5s ease-out infinite;
  z-index: -1;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.55; }
  70%  { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ================================================
   SCROLL ANIMATIONS
   ================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================
   INNER PAGES (Privacy / Terms)
   ================================================ */
.inner-hero {
  background: var(--gradient);
  padding: 140px 0 80px;
  text-align: center;
  color: #fff;
}
.inner-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 16px;
}
.inner-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}
.inner-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 80px 28px 100px;
}
.inner-content h2 {
  font-size: 1.6rem;
  margin: 48px 0 16px;
  color: var(--dark);
}
.inner-content h2:first-child { margin-top: 0; }
.inner-content p,
.inner-content li {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 12px;
}
.inner-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
.inner-content a { color: var(--primary); }
.inner-content a:hover { text-decoration: underline; }

/* ================================================
   RESPONSIVE
   ================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .about-grid       { grid-template-columns: 1fr; gap: 70px; }
  .about-text       { padding-left: 0; }
  .about-images     { max-width: 520px; margin: 0 auto; }

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

  .gallery-grid     { grid-template-columns: repeat(3, 1fr); }
  .gallery-item-wide{ grid-column: span 2; }

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

  .contact-grid     { grid-template-columns: 1fr; gap: 56px; }
  .contact-form-wrapper { padding: 36px 32px; }
}

/* Mobile */
@media (max-width: 768px) {
  .section { padding: 72px 0; }

  /* Nav */
  .nav-links, .nav-cta { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--dark);
    align-items: center;
    justify-content: center;
    gap: 36px;
    z-index: 998;
  }
  .nav-links.open a {
    font-size: 1.6rem;
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
  }
  .nav-links.open a:hover { color: var(--secondary); }
  .nav-toggle { display: flex; z-index: 999; }

  /* Hero */
  .hero-btns           { flex-direction: column; align-items: flex-start; }
  .hero-stats          { flex-wrap: wrap; gap: 24px; justify-content: center; }
  .stat-divider        { display: none; }
  .stat                { min-width: 120px; }

  /* Steps */
  .steps-grid          { flex-direction: column; align-items: center; }
  .step-connector      { width: 2px; height: 48px; margin: 0; }

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

  /* Gallery */
  .gallery-grid        {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
    padding: 0 16px;
  }
  .gallery-item-tall   { grid-row: span 1; }
  .gallery-item-wide   { grid-column: span 2; }

  /* Handles */
  .handles-grid        { grid-template-columns: 1fr 1fr; gap: 18px; }

  /* Contact */
  .form-row            { grid-template-columns: 1fr; }
  .contact-form-wrapper{ padding: 28px 20px; }

  /* Footer */
  .footer-grid         { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom       { flex-direction: column; text-align: center; }

  /* About accent image */
  .about-img-accent    { right: 0; bottom: -20px; }
  .about-badge-float   { right: 0; }
}

@media (max-width: 480px) {
  .handles-grid        { grid-template-columns: 1fr; }
  .gallery-grid        { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-item-wide   { grid-column: span 1; }
  .social-links        { flex-direction: column; }
  .hero-badge          { font-size: 0.74rem; }
}
