

:root {
  --font-primary:   #{$font-primary};
  --font-heading:   #{$font-heading};
  --font-mono:      #{$font-mono};
  --font-secondary: #{$font-secondary};
  --font-tertiary:  #{$font-tertiary};
}


:root {
  --font-size-xs:   #{$font-size-xs};
  --font-size-sm:   #{$font-size-sm};
  --font-size-md:   #{$font-size-md};
  --font-size-lg:   #{$font-size-lg};
  --font-size-xl:   #{$font-size-xl};
  --font-size-2xl:  #{$font-size-2xl};
  --font-size-3xl:  #{$font-size-3xl};
  --font-size-4xl:  #{$font-size-4xl};
  --font-size-5xl:  #{$font-size-5xl};

  --line-height-tight:  #{$line-height-tight};
  --line-height-normal: #{$line-height-normal};
  --line-height-loose:  #{$line-height-loose};

  --letter-spacing-tight:  #{$letter-spacing-tight};
  --letter-spacing-normal: #{$letter-spacing-normal};
  --letter-spacing-wide:   #{$letter-spacing-wide};


  --text-center:  #{text-align-center};
}

/* ── Header ── */
.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  position: relative;
}

/* ── Logo ── */
.navbar__brand { display: flex; align-items: center; }
.navbar__logo  { height: 30px; width: auto; }

@media (min-width: 768px) {
  .navbar__logo {
    height: 45px;
  }
}

/* ── Hamburger button ── */
.navbar__toggle {
  display: none;          /* hidden on desktop */
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.navbar__toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #1a1a1a;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── Nav menu ── */
.navbar__menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar__link {
  color: #1a1a1a;
  font-size: 15px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

.navbar__link.is-active { color: #E8420A; }
.navbar__link:hover     { color: #E8420A; }

/* ── Dropdown ── */
.has-dropdown { position: relative; }

.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  min-width: 180px;
  border-radius: 8px;
  padding: 8px 0;
  list-style: none;
  margin: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  border: 0.5px solid #eee;
  z-index: 200;
}

.has-dropdown:hover .dropdown { display: block; }

.dropdown a {
  display: block;
  padding: 9px 18px;
  color: #1a1a1a;
  font-size: 14px;
  text-decoration: none;
}

.dropdown a:hover { background: #f5f5f5; color: #E8420A; }

/* ─────────────────────────────
   RESPONSIVE
───────────────────────────── */

/* tablet + mobile — show hamburger, hide menu */
@media (max-width: 1024px) {

  .navbar__toggle {
    display: flex;   /* show hamburger */
  }

  .navbar__menu {
    display: none;   /* hidden by default */
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: absolute;
    top: 76px;       /* below navbar */
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #eee;
    padding: 12px 0;
    box-shadow: 0 8px 16px rgba(0,0,0,0.08);
    z-index: 100;
  }

  /* show menu when toggle is active */
  .navbar__menu.is-open {
    display: flex;
  }

  .navbar__menu li { width: 100%; }

  .navbar__link {
    padding: 12px 24px;
    width: 100%;
  }

  /* dropdown becomes static on mobile */
  .dropdown {
    position: static;
    box-shadow: none;
    border: none;
    border-top: 1px solid #f0f0f0;
    border-radius: 0;
    padding: 0;
    background: #f9f9f9;
  }

  .has-dropdown:hover .dropdown { display: none; }

  /* open dropdown on click instead */
  .has-dropdown.is-open .dropdown { display: block; }

  .dropdown a { padding: 10px 36px; }
}





/* ── Hero Section ── */
.hero {
  background: transparent;   /* mobile — no background */
  padding: 0;
  overflow: hidden;
}

/* tablet+ — orange background full width */
@media (min-width: 768px) {
  .hero {
    background: #F26739;     /* infinite orange starts here */
    min-height: 300px;
  }
}

/* ── Left content ── */
.hero__content {
  padding: 40px 0;
  text-align: center;        /* centered on mobile */
}

@media (min-width: 768px) {
  .hero__content {
    padding: 85px 0 65px;
    text-align: left;        /* left aligned on tablet+ */
  }
}

@media (min-width: 1024px) {
  .hero__content {
    display: flex !important;
    flex-direction: column;    /* 👈 Stack title, description, and button vertically */
    justify-content: center;   /* 👈 Centered vertically (middle from top to bottom) */
    align-items: flex-start;   /* 👈 Left-aligned horizontally */
    
    height: 400px !important;  /* 👈 Matches your 500px orange banner height */
    padding: 0 !important;     /* Removes old padding that might interfere */
    text-align: left !important; /* Ensures the typography flows left to right */
  }
}

/* ── Title ── */
.hero__title {
  font-family: var(--font-secondary);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;            /* dark on mobile */
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .hero__title {
    font-size: 36px;
    color: #ffffff;          /* white on orange background */
  }
}

@media (min-width: 1024px) {
  .hero__title {
    font-size: 48px;
  }
}

/* ── Subtitle ── */
.hero__text {
  font-size: 14px;
  line-height: 1.6;
  color: #555;               /* muted on mobile */
  margin-bottom: 28px;
}

@media (min-width: 768px) {
  .hero__text {
    font-size: 16px;
    color: rgba(255,255,255,0.90); /* white on orange */
  }
}


/* ── Offers Section ── */
.offers {
  padding: 60px 0;
  background: #fff;
}

@media (min-width: 1024px) {
  .offers {
    padding: 80px 0;
  }
}

/* ── Section header ── */
.offers__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.offers__title {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .offers__title {
    font-size: 32px;
  }
}

.offers__subtitle {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ── Offer card ── */
.offer-card {
  padding: 24px 20px;
  margin-bottom: 28px;
  background: #fff;
}

@media (min-width: 768px) {
  .offer-card {
    padding: 28px 24px;
    margin-bottom: 32px;
  }
}

/* ── Icon ── */
.offer-card__icon {
  font-size: 36px;
  color: #F26739;
  margin-bottom: 16px;
  line-height: 1;
}

/* ── Card title ── */
.offer-card__title {
  font-family: var(--font-secondary) !important;
  font-size: 17px !important;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

/* ── Card text ── */
.offer-card__text {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* ── Card link ── */
.offer-card__link {
  font-size: 13px;
  font-weight: 600;
  color: #F26739;
  text-decoration: none;
  display: inline-block;
}

.offer-card__link:hover {
  text-decoration: underline;
}




/* ── Image wrapper ── */
.hero__img-wrap {
  padding: 24px 0;
}

@media (min-width: 768px) {
  .hero__img-wrap {
    display: flex !important;
    height: 100%;
    min-height: 300px; /* Matches your hero section locking height */
    
    /* ── CHOOSE YOUR ALIGNMENT DIALS HERE ── */
    justify-content: flex-end; /* Options: flex-start (left) | center | flex-end (right) */
    align-items: center;     /* Options: flex-start (top)  | center | flex-end (bottom) */
  }
}

/* ── Hero image ── */
.hero__img {
    display: block;
    width: auto !important;
    /*max-width: 100% !important;  👈 Set your medium size threshold here */
    height: auto !important;
}

@media (min-width: 768px) {
  .hero__img {
    max-width: 80%;
  }
}


/* ── Blog Cards ── */
.blog-card {
  overflow: hidden;
}


/* mobile — shorter image */
.blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* tablet */
@media (min-width: 712px) {
  .blog-card__img {
    height: 100%;
  }
}

/* laptop */
@media (min-width: 1024px) {
  .blog-card__img {
    height: 270px;
  }
}

.blog-card__body {
  padding: 20px 0 24px;
}

.blog-card__title {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
  font-family: var(--font-secondary) !important; /* 👈 forces override */
  font-size: var(--font-size-4xl) !important;
  font-weight: 700;                    /* 400=regular, 500=medium, 600=semibold, 700=bold */
  line-height: 1.3;                    /* spacing between lines */
  color: #1a1a1a;                      /* text color */
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.blog-card__excerpt {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  font-family: var(--font-secondary) !important; /* 👈 forces override */
  font-weight: 400;                    /* 400=regular, 500=medium, 600=semibold, 700=bold */
  line-height: 1.3;                    /* spacing between lines */
  color: #1a1a1a;                      /* text color */
  letter-spacing: -0.02em;            /* tighten/loosen letters */
}


.blog-card__btn {
  display: inline-block;
  background: #F07830;
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.blog-card__btn:hover {
  background: #d9672a;
}


/* ── CTA Section ── */
.cta {
  background: #0D7377;
  overflow: hidden;
}

/* ── Inner container ── */
.cta__inner {
  display: flex;
  flex-direction: column;   /* mobile — stacked */
  align-items: center;      /* centered on mobile */
  text-align: center;
  padding: 48px 0;
  gap: 24px;
}

/* ── tablet 768px — side by side ── */
@media (min-width: 768px) {
  .cta__inner {
    flex-direction: row;     /* side by side */
    align-items: center;     /* vertically centered */
    text-align: left;
    gap: 48px;
    padding: 60px 50px 60px;
  }
}

/* ── laptop 1024px ── */
@media (min-width: 1024px) {
  .cta__inner {
    gap: 64px;
    padding: 50px 220px 50px;
  }
}

/* ── Image ── */
.cta__img-wrap {
  flex-shrink: 0;            /* image never shrinks */
}

.cta__img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .cta__img {
    width: 200px;
    height: 200px;
  }
}

@media (min-width: 1024px) {
  .cta__img {
    width: 200px;
    height: 200px;
  }
}

/* ── Content ── */
.cta__content {
  display: flex;
  flex-direction: column;
  align-items: center;       /* centered on mobile */
}

@media (min-width: 768px) {
  .cta__content {
    align-items: flex-start; /* left aligned on tablet+ */
  }
}

/* ── Title ── */
.cta__title {
  font-family: 'Roboto Slab', serif;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .cta__title { font-size: 32px; }
}

@media (min-width: 1024px) {
  .cta__title { font-size: 40px; }
}

/* ── Button ── */
.cta__btn {
  display: inline-block;
  background: #F26739;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}

.cta__btn:hover { background: #d4562e; }



/* ── Footer ── */
.site-footer {
  background: #1a1a1a;
  padding: 60px 0 0;
}

/* ── Logo text ── */
.footer__logo-text {
  display: block;
  font-family: 'Roboto Slab', serif;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

/* ── About text ── */
.footer__about {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ── Nav group ── */
.footer__nav-group {
  padding-top: 4px;
}

/* ── Nav title ── */
.footer__nav-title {
  font-family: 'Roboto Slab', serif;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

/* ── Nav list ── */
.footer__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__nav-list li {
  margin-bottom: 10px;
}

/* ── Nav links ── */
.footer__nav-link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}

.footer__nav-link i {
  font-size: 16px;
}

.footer__nav-link:hover {
  color: #F26739;
}

/* ── Bottom bar ── */
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  margin-top: 48px;
  padding: 20px 0;
}

.footer__copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 0;
}

/* ── Mobile ── */
@media (max-width: 767px) {
  .footer__brand {
    margin-bottom: 32px;
  }

  .footer__nav-group {
    margin-bottom: 32px;
  }
}


/* ═══════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════ */

/* Story */
.about-story {
  padding: 80px 0;
}

.about-story__img-wrap { margin-bottom: 32px; }

@media (min-width: 768px) { .about-story__img-wrap { margin-bottom: 0; } }

.about-story__img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.about-story__content { padding: 0; }

@media (min-width: 768px) { .about-story__content { padding-left: 40px; } }

.about-story__title {
  font-family: 'Roboto Slab', serif;
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}

@media (min-width: 1024px) { .about-story__title { font-size: 36px; } }

.about-story__text {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* Stats */
.about-story__stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.stat__number {
  display: block;
  font-family: 'Roboto Slab', serif;
  font-size: 36px;
  font-weight: 700;
  color: #F26739;
  line-height: 1;
}

.stat__label {
  font-size: 13px;
  color: #888;
  margin-top: 4px;
  display: block;
}

/* Values */
.about-values {
  padding: 80px 0;
  background: #f9f9f9;
}

.about-values__header {
  text-align: center;
  margin-bottom: 48px;
}

.about-values__title {
  font-family: 'Roboto Slab', serif;
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0;
}

.value-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 24px;
  margin-bottom: 24px;
  border-left: 4px solid #F26739;
}

.value-card__icon {
  font-size: 36px;
  color: #F26739;
  margin-bottom: 14px;
  line-height: 1;
}

.value-card__title {
  font-family: 'Roboto Slab', serif;
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.value-card__text {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Team */
.about-team {
  padding: 80px 0;
}

.about-team__header {
  text-align: center;
  margin-bottom: 48px;
}

.about-team__title {
  font-family: 'Roboto Slab', serif;
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
}

.team-card { margin-bottom: 32px; text-align: center; }

.team-card__img-wrap { margin-bottom: 16px; }

.team-card__img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.team-card__name {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.team-card__role {
  font-size: 14px;
  color: #F26739;
  margin-bottom: 0;
}


/* ── About Solo / Founder ── */
.about-solo {
  padding: 80px 0;
  background: #f9f9f9;
}

.about-solo__img-wrap { margin-bottom: 32px; }

@media (min-width: 768px) {
  .about-solo__img-wrap { margin-bottom: 0; }
}

.about-solo__img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: top;   /* keeps face visible */
  border-radius: 12px;
  display: block;
}

.about-solo__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 0;
}

@media (min-width: 768px) {
  .about-solo__content { padding-left: 48px; }
}

.about-solo__title {
  font-family: 'Roboto Slab', serif;
  font-size: 26px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.3;
}

@media (min-width: 1024px) {
  .about-solo__title { font-size: 32px; }
}

.about-solo__text {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* signature */
.about-solo__signature { margin-top: 24px; }

.about-solo__sig-img {
  height: 60px;
  width: auto;
  display: block;
  opacity: 0.8;
}

/* text fallback if no signature image */
.about-solo__sig-text {
  font-family: 'Roboto Slab', serif;
  font-size: 18px;
  color: #F26739;
  font-style: italic;
}


/* ═══════════════════════════════════════
   SERVICES PAGE
═══════════════════════════════════════ */
.service-section {
  padding: 60px 0;
  background: #fff;
}

.service-section--alt {
  background: #f9f9f9;
}

.service-section__img-wrap { margin-bottom: 32px; }

@media (min-width: 768px) { .service-section__img-wrap { margin-bottom: 0; } }

.service-section__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.service-section__content {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  
  height: 100%;
}

@media (min-width: 768px) {
  .service-section__content { padding: 0 40px; }
  .service-section--alt .service-section__content { padding: 0 40px 0 0; }
}

.service-section__title {
  font-family: 'Roboto Slab', serif;
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.service-section__text {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-section__list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.service-section__list li {
  font-size: 14px;
  color: #444;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-section__list li i {
  color: #F26739;
  font-size: 16px;
  flex-shrink: 0;
}

.service-section__btn {
  display: inline-block;
  background: #F26739;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  align-self: flex-start;
  transition: background 0.2s;
}

.service-section__btn:hover { background: #d4562e; }

/* On desktop screens, reverse the row order for alternating sections */
@media (min-width: 768px) {
  .l-row--reverse {
    display: flex;
    flex-direction: row-reverse;
  }
}






/* ═══════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════ */
.contact-section { padding: 80px 0; }

/* Contact info */
.contact-info { padding-right: 0; margin-bottom: 48px; }

@media (min-width: 768px) {
  .contact-info { padding-right: 40px; margin-bottom: 0; }
}

.contact-info__title {
  font-family: 'Roboto Slab', serif;
  font-size: 26px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.contact-info__text {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}

.contact-info__icon {
  width: 40px;
  height: 40px;
  background: #fff3ee;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #F26739;
  flex-shrink: 0;
}

.contact-info__label {
  font-size: 12px;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

.contact-info__value {
  font-size: 14px;
  color: #1a1a1a;
  margin-bottom: 0;
}

/* Form wrapper */
.contact-form-wrap {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 36px 32px;
}

.contact-form-wrap__title {
  font-family: 'Roboto Slab', serif;
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 24px;
}

/* Form fields */
.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
}

.form-required { color: #F26739; }

.form-input,
.form-textarea {
  width: 100%;
  padding: 11px 14px;
  font-size: 14px;
  color: #1a1a1a;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
  border-color: #F26739;
}

.form-textarea { resize: vertical; min-height: 120px; }

.form-hint {
  font-size: 12px;
  color: #888;
  margin-bottom: 10px;
  line-height: 1.5;
}

/* File upload */
.file-upload {
  position: relative;
  border: 2px dashed #ddd;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s;
}

.file-upload:hover,
.file-upload.is-dragging {
  border-color: #F26739;
  background: #fff3ee;
}

.file-upload__input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.file-upload__ui {
  padding: 32px 20px;
  text-align: center;
  pointer-events: none;
}

.file-upload__icon {
  font-size: 40px;
  color: #F26739;
  display: block;
  margin-bottom: 10px;
}

.file-upload__text {
  font-size: 14px;
  color: #555;
  margin-bottom: 4px;
}

.file-upload__browse {
  color: #F26739;
  font-weight: 600;
  text-decoration: underline;
}

.file-upload__formats {
  font-size: 12px;
  color: #aaa;
  margin-bottom: 0;
}

/* Uploaded file list */
.file-upload__list { margin-top: 12px; }

.file-upload__file {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: #fff3ee;
  border-radius: 6px;
  margin-bottom: 6px;
  font-size: 13px;
}

.file-upload__file i { color: #F26739; font-size: 16px; }

.file-upload__filename {
  flex: 1;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.file-upload__filesize { color: #888; font-size: 12px; }

/* Submit button */
.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #F26739;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
  margin-top: 8px;
}

.form-submit:hover { background: #d4562e; }
.form-submit:disabled { opacity: 0.7; cursor: not-allowed; }



/* Base Layout Modifications */
.service-section__content {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Ensures content anchors to the top edge evenly with the image */
  height: 100%;
}

@media (min-width: 768px) {
  /* Reverses column direction safely on desktop while maintaining top stack order on mobile devices */
  .l-row--reverse {
    display: flex;
    flex-direction: row-reverse;
  }
  
  .service-section__content {
    padding: 0 40px;
  }
  
  /* Fixes spacing inside alternating blocks so text doesnt hug the desktop split edge */
  .l-row--reverse .service-section__content {
    padding: 0 40px 0 0;
  }
  
  .service-section__title {
    margin-top: 0; /* Aligns heading text exactly to the top pixel height of the image wrapper */
  }
}


/* ═══════════════════════════════════════
   LEGAL PAGES (privacy + terms)
═══════════════════════════════════════ */
.legal-page {
  padding: 60px 0 80px;
}

/* narrow centered column for readability */
.legal-page__wrap {
  max-width: 800px;
  margin: 0 auto;
}

.legal-page__updated {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 24px;
}

.legal-page__intro {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid #eee;
}

.legal-page__link {
  color: #F26739;
  text-decoration: none;
}

.legal-page__link:hover {
  text-decoration: underline;
}

/* each section block */
.legal-section {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid #f0f0f0;
}

.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.legal-section__title {
  font-family: 'Roboto Slab', serif;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.legal-section__text {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-section__text:last-child {
  margin-bottom: 0;
}

.legal-section__list {
  margin: 12px 0 16px 20px;
  padding: 0;
}

.legal-section__list li {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 6px;
  list-style: disc;
}

/* contact block inside legal */
.legal-contact {
  background: #f9f9f9;
  border-left: 4px solid #F26739;
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  margin-top: 16px;
}

.legal-contact p {
  font-size: 14px;
  color: #444;
  margin-bottom: 4px;
  line-height: 1.6;
}

.legal-contact p:last-child {
  margin-bottom: 0;
}