/* ============================================================
   tour-egypt.xyz — main stylesheet
   Architecture: BEM with prefix te-
   Palette: papyrus #f4efe2 / turquoise #2a9d9a / ink #1f2b2a
   Fonts: Georgia serif headings + mono accents
   Container max-width: 1180px
   Base font-size: 17px
   ============================================================ */

/* ------ reset & base ------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --te-papyrus:    #f4efe2;
  --te-papyrus-dk: #e8e0cc;
  --te-papyrus-lt: #faf7f0;
  --te-teal:       #2a9d9a;
  --te-teal-dk:    #1f7a78;
  --te-teal-lt:    #4dbfbc;
  --te-ink:        #1f2b2a;
  --te-ink-mid:    #3a4e4d;
  --te-ink-muted:  #5e7270;
  --te-white:      #ffffff;
  --te-line:       #d4cdb8;
  --te-accent:     #c7894a;

  --te-radius-sm:  4px;
  --te-radius-md:  8px;
  --te-radius-lg:  16px;

  --te-shadow-sm:  0 2px 8px rgba(31,43,42,0.09);
  --te-shadow-md:  0 6px 22px rgba(31,43,42,0.13);
  --te-shadow-lg:  0 16px 48px rgba(31,43,42,0.18);

  --te-max-w:      1180px;
  --te-gap:        2rem;
  --te-section-y:  5rem;
}

html { font-size: 17px; scroll-behavior: smooth; }

body {
  font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--te-ink);
  background: var(--te-papyrus-lt);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--te-teal-dk);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: var(--te-teal); text-decoration: underline; }

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: Georgia, "Times New Roman", Times, serif;
  color: var(--te-ink);
  line-height: 1.2;
  font-weight: 700;
}

code, .te-mono {
  font-family: "SF Mono", "Consolas", "Liberation Mono", monospace;
  font-size: 0.88em;
  background: var(--te-papyrus-dk);
  padding: 0.15em 0.4em;
  border-radius: var(--te-radius-sm);
  color: var(--te-teal-dk);
}

/* ------ layout utils ------ */
.te-container {
  max-width: var(--te-max-w);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.te-section {
  padding-block: var(--te-section-y);
}
.te-section--alt {
  background: var(--te-papyrus);
}
.te-section--dark {
  background: var(--te-ink);
  color: var(--te-papyrus-lt);
}
.te-section--dark h2,
.te-section--dark h3,
.te-section--dark p { color: var(--te-papyrus-lt); }

.te-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--te-gap);
}
.te-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--te-gap);
}
.te-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--te-gap);
}

/* ------ section heading ------ */
.te-heading {
  text-align: center;
  margin-bottom: 3rem;
}
.te-heading__eyebrow {
  font-family: "SF Mono", "Consolas", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--te-teal);
  margin-bottom: 0.6rem;
  display: block;
}
.te-heading__title {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}
.te-heading__lead {
  max-width: 640px;
  margin-inline: auto;
  color: var(--te-ink-muted);
  font-size: 1.05rem;
}

/* ------ buttons ------ */
.te-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  padding: 0.7em 1.5em;
  border-radius: var(--te-radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, text-decoration 0.2s;
  text-decoration: none;
}
.te-btn:hover { text-decoration: underline; }
.te-btn:focus-visible {
  outline: 3px solid var(--te-teal-lt);
  outline-offset: 3px;
}
.te-btn--primary {
  background: var(--te-teal);
  color: var(--te-white);
  border-color: var(--te-teal);
}
.te-btn--primary:hover {
  background: var(--te-teal-dk);
  border-color: var(--te-teal-dk);
  color: var(--te-white);
}
.te-btn--outline {
  background: transparent;
  color: var(--te-teal-dk);
  border-color: var(--te-teal-dk);
}
.te-btn--outline:hover {
  background: var(--te-teal-dk);
  color: var(--te-white);
}
.te-btn--light {
  background: var(--te-papyrus-lt);
  color: var(--te-ink);
  border-color: var(--te-line);
}
.te-btn--light:hover {
  background: var(--te-white);
  color: var(--te-teal-dk);
}

/* ------ HEADER ------ */
.te-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--te-ink);
  border-bottom: 1px solid rgba(42,157,154,0.25);
  padding-block: 0;
}
.te-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.te-header__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--te-papyrus-lt);
  font-family: Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.te-header__brand:hover { text-decoration: none; color: var(--te-teal-lt); }
.te-header__brand-mark {
  width: 34px;
  height: 34px;
  background: var(--te-teal);
  border-radius: var(--te-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "SF Mono", monospace;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--te-white);
  flex-shrink: 0;
}
.te-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.te-nav__link {
  color: var(--te-papyrus-dk);
  font-size: 0.9rem;
  padding: 0.4em 0.75em;
  border-radius: var(--te-radius-sm);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}
.te-nav__link:hover {
  color: var(--te-papyrus-lt);
  background: rgba(42,157,154,0.12);
  text-decoration: none;
}
.te-nav__link--active {
  color: var(--te-teal-lt);
}
.te-nav__cta {
  background: var(--te-teal);
  color: var(--te-white);
  padding: 0.42em 1em;
  border-radius: var(--te-radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  margin-left: 0.5rem;
  text-decoration: none;
  transition: background 0.2s;
}
.te-nav__cta:hover { background: var(--te-teal-dk); text-decoration: none; color: var(--te-white); }

/* hamburger */
.te-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4em;
  flex-direction: column;
  gap: 5px;
  border-radius: var(--te-radius-sm);
}
.te-nav-toggle:focus-visible { outline: 3px solid var(--te-teal-lt); }
.te-nav-toggle__bar {
  width: 24px;
  height: 2px;
  background: var(--te-papyrus-lt);
  border-radius: 2px;
  display: block;
  transition: transform 0.3s, opacity 0.3s;
}

/* ------ HERO — form-right ------ */
.te-hero {
  background: linear-gradient(160deg, var(--te-ink) 55%, var(--te-teal-dk) 100%);
  padding-block: 5rem 4rem;
  position: relative;
  overflow: hidden;
}
.te-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/hero.jpg') center/cover no-repeat;
  opacity: 0.18;
  z-index: 0;
}
.te-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  align-items: center;
}
.te-hero__eyebrow {
  font-family: "SF Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--te-teal-lt);
  margin-bottom: 1rem;
  display: block;
}
.te-hero__title {
  font-size: 3rem;
  color: var(--te-papyrus-lt);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}
.te-hero__lead {
  color: var(--te-papyrus-dk);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2rem;
}
.te-hero__stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.te-hero__stat-num {
  font-family: Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--te-teal-lt);
  display: block;
  line-height: 1;
}
.te-hero__stat-label {
  font-size: 0.8rem;
  color: var(--te-papyrus-dk);
  letter-spacing: 0.04em;
}
.te-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* hero form */
.te-hero__form-wrap {
  background: var(--te-papyrus-lt);
  border-radius: var(--te-radius-lg);
  padding: 2rem;
  box-shadow: var(--te-shadow-lg);
}
.te-hero__form-title {
  font-family: Georgia, serif;
  font-size: 1.25rem;
  color: var(--te-ink);
  margin-bottom: 0.4rem;
}
.te-hero__form-sub {
  font-size: 0.85rem;
  color: var(--te-ink-muted);
  margin-bottom: 1.25rem;
}

/* ------ FORM elements ------ */
.te-form__group {
  margin-bottom: 1rem;
}
.te-form__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--te-ink-mid);
  margin-bottom: 0.3rem;
}
.te-form__input,
.te-form__select,
.te-form__textarea {
  width: 100%;
  padding: 0.65em 0.9em;
  border: 1.5px solid var(--te-line);
  border-radius: var(--te-radius-md);
  background: var(--te-white);
  color: var(--te-ink);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.te-form__input:focus,
.te-form__select:focus,
.te-form__textarea:focus {
  outline: none;
  border-color: var(--te-teal);
  box-shadow: 0 0 0 3px rgba(42,157,154,0.18);
}
.te-form__textarea { resize: vertical; min-height: 100px; }
.te-form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235e7270' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9em center;
  padding-right: 2.2em;
}
.te-form__consent {
  font-size: 0.78rem;
  color: var(--te-ink-muted);
  margin-bottom: 1rem;
  line-height: 1.5;
}
.te-form__consent a { color: var(--te-teal-dk); }
.te-form__submit { width: 100%; }
.te-form__status {
  display: none;
  padding: 0.7em 1em;
  border-radius: var(--te-radius-md);
  font-size: 0.9rem;
  margin-top: 0.75rem;
  font-weight: 500;
}
.te-form__status--sending {
  background: rgba(42,157,154,0.1);
  color: var(--te-teal-dk);
  border: 1px solid var(--te-teal-lt);
}

/* ------ FEATURE CARDS (flat-icon style) ------ */
.te-feature {
  background: var(--te-white);
  border-radius: var(--te-radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1.5px solid var(--te-papyrus-dk);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.te-feature:hover {
  border-color: var(--te-teal-lt);
  box-shadow: var(--te-shadow-sm);
}
.te-feature__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  color: var(--te-teal);
}
.te-feature__title {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  color: var(--te-ink);
}
.te-feature__text {
  font-size: 0.92rem;
  color: var(--te-ink-muted);
  line-height: 1.65;
}

/* ------ SITE CARDS (with photo) ------ */
.te-site-card {
  background: var(--te-white);
  border-radius: var(--te-radius-md);
  overflow: hidden;
  border: 1.5px solid var(--te-papyrus-dk);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}
.te-site-card:hover { box-shadow: var(--te-shadow-md); }
.te-site-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.te-site-card__body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.te-site-card__tag {
  font-family: "SF Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--te-teal);
  margin-bottom: 0.4rem;
}
.te-site-card__title {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--te-ink);
}
.te-site-card__text {
  font-size: 0.88rem;
  color: var(--te-ink-muted);
  flex: 1;
}
.te-site-card__link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--te-teal-dk);
  text-underline-offset: 3px;
}
.te-site-card__link:hover { text-decoration: underline; }

/* ------ TWO COLUMN CONTENT ------ */
.te-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.te-two-col__img {
  border-radius: var(--te-radius-lg);
  overflow: hidden;
  box-shadow: var(--te-shadow-md);
}
.te-two-col__img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}
.te-two-col__eyebrow {
  font-family: "SF Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--te-teal);
  margin-bottom: 0.7rem;
  display: block;
}
.te-two-col__title {
  font-size: 1.9rem;
  margin-bottom: 1rem;
}
.te-two-col__body {
  color: var(--te-ink-mid);
  font-size: 1rem;
  line-height: 1.75;
}
.te-two-col__body p { margin-bottom: 1rem; }
.te-two-col__body p:last-child { margin-bottom: 0; }

/* ------ TEAM CARDS ------ */
.te-team-card {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--te-white);
  border-radius: var(--te-radius-md);
  border: 1.5px solid var(--te-papyrus-dk);
}
.te-team-card__photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 3px solid var(--te-papyrus-dk);
}
.te-team-card__name {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}
.te-team-card__role {
  font-family: "SF Mono", monospace;
  font-size: 0.75rem;
  color: var(--te-teal);
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 0.7rem;
}
.te-team-card__bio {
  font-size: 0.88rem;
  color: var(--te-ink-muted);
  line-height: 1.6;
}

/* ------ PRICING CARDS ------ */
.te-price-card {
  background: var(--te-white);
  border-radius: var(--te-radius-md);
  border: 1.5px solid var(--te-papyrus-dk);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.2s;
}
.te-price-card:hover { box-shadow: var(--te-shadow-md); }
.te-price-card--featured {
  border-color: var(--te-teal);
  box-shadow: var(--te-shadow-md);
}
.te-price-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--te-teal);
  color: var(--te-white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3em 1em;
  border-radius: 999px;
  white-space: nowrap;
}
.te-price-card__name {
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
}
.te-price-card__desc {
  font-size: 0.88rem;
  color: var(--te-ink-muted);
  margin-bottom: 1.25rem;
  line-height: 1.55;
}
.te-price-card__amount {
  font-family: Georgia, serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--te-teal-dk);
  line-height: 1;
  margin-bottom: 0.15rem;
}
.te-price-card__period {
  font-size: 0.82rem;
  color: var(--te-ink-muted);
  margin-bottom: 1.5rem;
}
.te-price-card__features {
  flex: 1;
  margin-bottom: 1.75rem;
}
.te-price-card__features li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--te-ink-mid);
  padding-block: 0.35rem;
  border-bottom: 1px solid var(--te-papyrus-dk);
  line-height: 1.5;
}
.te-price-card__features li:last-child { border-bottom: none; }
.te-price-card__features li::before {
  content: '✓';
  color: var(--te-teal);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1em;
}

/* ------ FAQ ACCORDION ------ */
.te-faq {
  max-width: 760px;
  margin-inline: auto;
}
.te-faq__item {
  border-bottom: 1.5px solid var(--te-line);
}
.te-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  padding-block: 1.1rem;
  text-align: left;
  font-family: Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--te-ink);
  cursor: pointer;
  transition: color 0.2s;
}
.te-faq__question:hover { color: var(--te-teal-dk); }
.te-faq__question:focus-visible { outline: 3px solid var(--te-teal-lt); border-radius: var(--te-radius-sm); }
.te-faq__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid var(--te-teal-dk);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--te-teal-dk);
  font-size: 1.1rem;
  transition: transform 0.3s, background 0.2s;
}
.te-faq__item--open .te-faq__icon {
  transform: rotate(45deg);
  background: var(--te-teal);
  border-color: var(--te-teal);
  color: var(--te-white);
}
.te-faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}
.te-faq__answer-inner {
  padding-bottom: 1.2rem;
  font-size: 0.95rem;
  color: var(--te-ink-muted);
  line-height: 1.75;
}

/* ------ TESTIMONIALS ------ */
.te-testimonial {
  background: var(--te-white);
  border-radius: var(--te-radius-md);
  padding: 1.75rem;
  border: 1.5px solid var(--te-papyrus-dk);
}
.te-testimonial__quote {
  font-size: 0.95rem;
  color: var(--te-ink-mid);
  line-height: 1.75;
  margin-bottom: 1.2rem;
  position: relative;
}
.te-testimonial__quote::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 3.5rem;
  color: var(--te-teal-lt);
  line-height: 0;
  vertical-align: -0.55em;
  margin-right: 0.15em;
}
.te-testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.te-testimonial__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--te-papyrus-dk);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, serif;
  font-weight: 700;
  color: var(--te-teal-dk);
  font-size: 1rem;
  flex-shrink: 0;
}
.te-testimonial__name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--te-ink);
}
.te-testimonial__country {
  font-size: 0.8rem;
  color: var(--te-ink-muted);
}

/* ------ CTA BAND ------ */
.te-cta-band {
  background: var(--te-teal);
  padding-block: 4rem;
  text-align: center;
}
.te-cta-band h2 { color: var(--te-white); font-size: 2rem; margin-bottom: 0.75rem; }
.te-cta-band p { color: rgba(255,255,255,0.88); font-size: 1.05rem; margin-bottom: 2rem; }
.te-cta-band .te-btn--primary {
  background: var(--te-white);
  color: var(--te-teal-dk);
  border-color: var(--te-white);
}
.te-cta-band .te-btn--primary:hover {
  background: var(--te-papyrus-lt);
  border-color: var(--te-papyrus-lt);
}

/* ------ TIMELINE ------ */
.te-timeline {
  position: relative;
  padding-left: 2.5rem;
}
.te-timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--te-teal-lt);
}
.te-timeline__item {
  position: relative;
  margin-bottom: 2.5rem;
}
.te-timeline__item::before {
  content: '';
  position: absolute;
  left: -2.02rem;
  top: 0.35rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--te-teal);
  border: 2px solid var(--te-white);
  box-shadow: 0 0 0 2px var(--te-teal-lt);
}
.te-timeline__year {
  font-family: "SF Mono", monospace;
  font-size: 0.75rem;
  color: var(--te-teal);
  letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
}
.te-timeline__title {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}
.te-timeline__text {
  font-size: 0.9rem;
  color: var(--te-ink-muted);
  line-height: 1.65;
}

/* ------ TABLE ------ */
.te-table-wrap {
  overflow-x: auto;
  border-radius: var(--te-radius-md);
  border: 1.5px solid var(--te-line);
}
.te-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.te-table th {
  background: var(--te-ink);
  color: var(--te-papyrus-lt);
  font-family: Georgia, serif;
  padding: 0.85em 1.1em;
  text-align: left;
}
.te-table td {
  padding: 0.75em 1.1em;
  border-bottom: 1px solid var(--te-papyrus-dk);
  color: var(--te-ink-mid);
}
.te-table tr:last-child td { border-bottom: none; }
.te-table tr:nth-child(even) td { background: var(--te-papyrus); }
.te-table__check { color: var(--te-teal); font-weight: 700; }
.te-table__dash { color: var(--te-line); }

/* ------ BREADCRUMB ------ */
.te-breadcrumb {
  padding-block: 0.75rem;
  border-bottom: 1px solid var(--te-line);
  margin-bottom: 0;
}
.te-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  font-size: 0.83rem;
  color: var(--te-ink-muted);
}
.te-breadcrumb__list li { display: flex; align-items: center; gap: 0.3rem; }
.te-breadcrumb__list li:not(:last-child)::after {
  content: '/';
  color: var(--te-line);
}
.te-breadcrumb__list a { color: var(--te-teal-dk); }

/* ------ PAGE BANNER ------ */
.te-page-banner {
  background: linear-gradient(135deg, var(--te-ink) 0%, var(--te-teal-dk) 100%);
  padding-block: 3.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.te-page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/hero.jpg') center/cover no-repeat;
  opacity: 0.1;
}
.te-page-banner__inner { position: relative; z-index: 1; }
.te-page-banner__title {
  font-size: 2.4rem;
  color: var(--te-papyrus-lt);
  margin-bottom: 0.6rem;
}
.te-page-banner__sub {
  color: var(--te-papyrus-dk);
  font-size: 1.05rem;
  max-width: 560px;
  margin-inline: auto;
}

/* ------ FOOTER ------ */
.te-footer {
  background: var(--te-ink);
  color: var(--te-papyrus-dk);
  padding-top: 3.5rem;
}
.te-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(244,239,226,0.12);
}
.te-footer__brand {
  font-family: Georgia, serif;
  font-size: 1.2rem;
  color: var(--te-papyrus-lt);
  font-weight: 700;
  margin-bottom: 0.6rem;
  display: block;
}
.te-footer__tagline {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  color: var(--te-ink-muted);
}
.te-footer__address {
  font-size: 0.83rem;
  line-height: 1.7;
  font-style: normal;
  color: var(--te-ink-muted);
}
.te-footer__address a { color: var(--te-teal-lt); text-decoration: none; }
.te-footer__address a:hover { text-decoration: underline; }
.te-footer__col-title {
  font-family: "SF Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--te-teal-lt);
  margin-bottom: 1rem;
}
.te-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.te-footer__links a {
  font-size: 0.88rem;
  color: var(--te-papyrus-dk);
  text-decoration: none;
  transition: color 0.2s;
}
.te-footer__links a:hover { color: var(--te-papyrus-lt); text-decoration: underline; }
.te-footer__bottom {
  padding-block: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--te-ink-muted);
  flex-wrap: wrap;
  gap: 0.5rem;
}
.te-footer__legal {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.te-footer__legal a { color: var(--te-ink-muted); text-decoration: none; }
.te-footer__legal a:hover { color: var(--te-papyrus-dk); text-decoration: underline; }

/* ------ CONTACT PAGE ------ */
.te-contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
  align-items: start;
}
.te-contact-form {
  background: var(--te-white);
  border-radius: var(--te-radius-lg);
  padding: 2.5rem;
  border: 1.5px solid var(--te-papyrus-dk);
}
.te-contact-form__title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.te-contact-form__sub {
  color: var(--te-ink-muted);
  font-size: 0.9rem;
  margin-bottom: 1.75rem;
}
.te-contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.te-contact-info__item {
  background: var(--te-white);
  border-radius: var(--te-radius-md);
  padding: 1.25rem;
  border: 1.5px solid var(--te-papyrus-dk);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.te-contact-info__icon {
  width: 36px;
  height: 36px;
  background: var(--te-papyrus);
  border-radius: var(--te-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--te-teal-dk);
  flex-shrink: 0;
}
.te-contact-info__label {
  font-family: "SF Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--te-teal);
  margin-bottom: 0.2rem;
}
.te-contact-info__value {
  font-size: 0.92rem;
  color: var(--te-ink-mid);
  line-height: 1.55;
}
.te-contact-info__value a { color: var(--te-teal-dk); }

/* ------ INLINE HIGHLIGHT BOXES ------ */
.te-info-box {
  background: var(--te-papyrus);
  border-left: 4px solid var(--te-teal);
  border-radius: 0 var(--te-radius-md) var(--te-radius-md) 0;
  padding: 1rem 1.25rem;
  font-size: 0.92rem;
  color: var(--te-ink-mid);
  margin-block: 1.5rem;
  line-height: 1.65;
}

/* ------ PRIVACY / LEGAL pages ------ */
.te-legal-body h2 {
  font-size: 1.35rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 1.5px solid var(--te-line);
}
.te-legal-body h3 {
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.te-legal-body p {
  margin-bottom: 1rem;
  color: var(--te-ink-mid);
  font-size: 0.95rem;
  line-height: 1.8;
}
.te-legal-body ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.te-legal-body ul li {
  font-size: 0.95rem;
  color: var(--te-ink-mid);
  margin-bottom: 0.4rem;
  line-height: 1.7;
}
.te-legal-body address {
  font-style: normal;
  background: var(--te-papyrus);
  border-radius: var(--te-radius-md);
  padding: 1.25rem;
  font-size: 0.92rem;
  color: var(--te-ink-mid);
  line-height: 1.75;
  margin-block: 1rem;
}

/* ------ THANK YOU PAGE ------ */
.te-thankyou {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
}
.te-thankyou__icon {
  width: 80px;
  height: 80px;
  background: var(--te-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--te-white);
}
.te-thankyou__title { font-size: 2.2rem; margin-bottom: 0.75rem; }
.te-thankyou__text {
  max-width: 520px;
  margin-inline: auto;
  color: var(--te-ink-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}
.te-thankyou__faq { max-width: 600px; margin-inline: auto; text-align: left; margin-bottom: 2rem; }

/* ------ SERVICES PAGE ------ */
.te-service-block {
  background: var(--te-white);
  border-radius: var(--te-radius-md);
  border: 1.5px solid var(--te-papyrus-dk);
  overflow: hidden;
  margin-bottom: 2.5rem;
}
.te-service-block__header {
  background: var(--te-papyrus);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1.5px solid var(--te-line);
}
.te-service-block__icon {
  width: 44px;
  height: 44px;
  background: var(--te-teal);
  border-radius: var(--te-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--te-white);
  flex-shrink: 0;
}
.te-service-block__title { font-size: 1.2rem; }
.te-service-block__body { padding: 1.75rem 2rem; }
.te-service-block__body p { color: var(--te-ink-mid); font-size: 0.95rem; line-height: 1.8; margin-bottom: 1rem; }
.te-service-block__body p:last-child { margin-bottom: 0; }
.te-service-block__details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--te-papyrus-dk);
}
.te-service-block__detail {
  font-size: 0.83rem;
  color: var(--te-ink-muted);
}
.te-service-block__detail strong {
  display: block;
  font-family: "SF Mono", monospace;
  font-size: 0.75rem;
  color: var(--te-teal);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

/* ------ SITELINKS PAGE SPECIFIC ------ */
.te-site-intro {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
}
.te-site-intro__img {
  border-radius: var(--te-radius-lg);
  overflow: hidden;
  box-shadow: var(--te-shadow-md);
}
.te-site-intro__img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.te-site-intro__content p {
  color: var(--te-ink-mid);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* ------ RESPONSIVE ------ */
@media (max-width: 900px) {
  :root { --te-section-y: 3.5rem; }

  .te-hero__inner { grid-template-columns: 1fr; }
  .te-hero__form-wrap { max-width: 480px; }
  .te-hero__title { font-size: 2.2rem; }

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

  .te-two-col { grid-template-columns: 1fr; gap: 2rem; }
  .te-two-col__img img { height: 260px; }

  .te-footer__grid { grid-template-columns: 1fr 1fr; }
  .te-contact-grid { grid-template-columns: 1fr; }
  .te-service-block__details { grid-template-columns: 1fr 1fr; }
  .te-site-intro { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .te-header__inner { height: 56px; }
  .te-nav { display: none; flex-direction: column; position: absolute; top: 56px; left: 0; right: 0; background: var(--te-ink); padding: 1rem 1.5rem 1.5rem; border-bottom: 1px solid rgba(42,157,154,0.2); gap: 0.15rem; }
  .te-nav--open { display: flex; }
  .te-nav__link { padding: 0.55em 0.75em; font-size: 0.95rem; }
  .te-nav__cta { margin-left: 0; margin-top: 0.5rem; text-align: center; }
  .te-nav-toggle { display: flex; }
  .te-header { position: relative; }

  .te-heading__title { font-size: 1.8rem; }
  .te-grid-2 { grid-template-columns: 1fr; }
  .te-grid-3 { grid-template-columns: 1fr; }
  .te-grid-4 { grid-template-columns: 1fr; }
  .te-footer__grid { grid-template-columns: 1fr; }
  .te-page-banner__title { font-size: 1.8rem; }
  .te-service-block__details { grid-template-columns: 1fr; }
  .te-price-card { padding: 1.5rem; }
  .te-hero__stats { gap: 1.25rem; }
  .te-contact-form { padding: 1.5rem; }
  .te-footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  html { font-size: 16px; }
  .te-hero { padding-block: 3rem 2.5rem; }
  .te-hero__title { font-size: 1.9rem; }
  .te-two-col__title { font-size: 1.6rem; }
  .te-hero__actions { flex-direction: column; }
  .te-hero__actions .te-btn { text-align: center; justify-content: center; }
}

/* ------ REDUCED MOTION ------ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
