/* ============================================================
   THE HOU CO. — Pages CSS (About, Services, Rates, Contact)
   ============================================================ */

/* ═══════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════ */

/* About Story Section */
.about-story {
  padding: 100px 0;
  background: var(--white);
}
.about-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.about-story__image-stack {
  position: relative;
}
.about-story__img-main {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.about-story__img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.about-story__img-accent {
  position: absolute;
  bottom: -3rem;
  right: -2.5rem;
  width: 65%;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.about-story__img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-story__text { padding-top: 1rem; }
.about-story__text h2 {
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.about-story__text h2 em {
  color: var(--gold-dark);
  font-style: italic;
}
.about-story__text p { margin-bottom: 1.2rem; }

/* Values */
.values-section {
  background: var(--dark);
  padding: 100px 0;
}
.values-section h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}
.values-section > .container > p {
  color: rgba(255,255,255,0.55);
  font-size: 1.05rem;
  max-width: 600px;
  margin-bottom: 4rem;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.value-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  transition: border-color var(--transition), background var(--transition);
}
.value-card:hover {
  border-color: rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.04);
}
.value-card__icon {
  font-size: 1.8rem;
  margin-bottom: 1.25rem;
}
.value-card h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.value-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
}

/* About Fears */
.about-fears {
  background: var(--off-white);
  padding: 100px 0;
}
.about-fears__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-fears__content h2 {
  margin-bottom: 1.2rem;
}
.about-fears__content h2 em { color: var(--gold-dark); font-style: italic; }
.about-fears__content > p { margin-bottom: 2rem; }
.about-fears__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.about-fear-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
}
.about-fear-item i {
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.about-fear-item p {
  font-size: 0.9rem;
  color: var(--grey-dark);
  margin: 0;
  line-height: 1.65;
}
.about-fears__image {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-fears__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* About CTA */
.about-cta {
  background: var(--dark);
  padding: 100px 0;
  text-align: center;
}
.about-cta h2 {
  color: var(--white);
  max-width: 680px;
  margin: 0 auto 1.5rem;
}
.about-cta p {
  color: rgba(255,255,255,0.5);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
}
.about-cta__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════
   SERVICES PAGE
═══════════════════════════════════════════ */

.services-intro {
  padding: 80px 0 60px;
  background: var(--off-white);
  text-align: center;
}
.services-intro p {
  max-width: 640px;
  margin: 1rem auto 0;
  font-size: 1.05rem;
  line-height: 1.85;
}

/* Service Detail Sections */
.service-detail {
  padding: 100px 0;
  border-bottom: 1px solid var(--grey-light);
}
.service-detail:nth-child(even) {
  background: var(--off-white);
}
.service-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.service-detail__grid--reverse {
  direction: rtl;
}
.service-detail__grid--reverse > * {
  direction: ltr;
}
.service-detail__image {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16/10;
}
.service-detail__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-detail__image:hover img {
  transform: scale(1.04);
}
.service-detail__content {}
.service-detail__num {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 300;
  color: rgba(201,168,76,0.15);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}
.service-detail__content h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 1.2rem;
  line-height: 1.2;
}
.service-detail__content p {
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}
.service-includes {
  margin-top: 1.5rem;
}
.service-includes h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}
.service-includes ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.service-includes ul li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: var(--grey-dark);
}
.service-includes ul li i {
  color: var(--gold);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* Services CTA */
.services-cta {
  background: var(--black);
  padding: 100px 0;
  text-align: center;
}
.services-cta h2 {
  color: var(--white);
  max-width: 600px;
  margin: 0 auto 1.5rem;
}
.services-cta p {
  color: rgba(255,255,255,0.5);
  max-width: 520px;
  margin: 0 auto 2.5rem;
}
.services-cta__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════
   RATES PAGE
═══════════════════════════════════════════ */

.rates-intro {
  padding: 80px 0 0;
  background: var(--white);
  text-align: center;
}
.rates-intro p {
  max-width: 580px;
  margin: 1rem auto 0;
  font-size: 1.05rem;
}
.currency-switch {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.currency-switch__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-mid);
}
.currency-switch__buttons {
  display: inline-flex;
  gap: 0.5rem;
  padding: 0.45rem;
  background: var(--off-white);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 999px;
}
.currency-toggle {
  border: none;
  background: transparent;
  color: var(--grey-dark);
  padding: 0.75rem 1.15rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
}
.currency-toggle:hover {
  color: var(--dark);
  background: rgba(201,168,76,0.12);
}
.currency-toggle.active {
  background: var(--dark);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.rates-section {
  padding: 80px 0 100px;
  background: var(--white);
}
.rates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}
.rate-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.rate-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: transparent;
  transition: background var(--transition);
}
.rate-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,168,76,0.3);
}
.rate-card:hover::before {
  background: var(--gold);
}
.rate-card--featured {
  background: var(--dark);
  border-color: rgba(201,168,76,0.3);
}
.rate-card--featured::before {
  background: var(--gold);
}
.rate-card--featured h3,
.rate-card--featured .rate-price,
.rate-card--featured .rate-unit { color: var(--white) !important; }
.rate-card--featured p { color: rgba(255,255,255,0.55) !important; }
.rate-card--featured .rate-includes li { color: rgba(255,255,255,0.65) !important; }
.rate-card--featured .rate-includes li i { color: var(--gold) !important; }
.rate-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 0.25rem 0.75rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.rate-card__icon {
  font-size: 1.8rem;
  margin-bottom: 1.25rem;
  color: var(--gold);
}
.rate-card h3 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.rate-price {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin: 1rem 0 0.25rem;
}
.rate-unit {
  display: block;
  font-size: 0.78rem;
  color: var(--grey-mid);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.rate-card > p {
  font-size: 0.88rem;
  color: var(--grey-dark);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.rate-card--featured > p {
  border-bottom-color: rgba(255,255,255,0.08);
}
.rate-includes { margin-bottom: 2rem; }
.rate-includes li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: var(--grey-dark);
  margin-bottom: 0.5rem;
}
.rate-includes li i {
  color: var(--gold);
  font-size: 0.75rem;
  flex-shrink: 0;
}
.rate-cta {
  display: block;
  text-align: center;
  padding: 0.85rem 1.5rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
}
.rate-cta:hover {
  background: var(--gold);
  color: var(--black);
}
.rate-card--featured .rate-cta {
  background: var(--gold);
  color: var(--black);
  border: none;
}
.rate-card--featured .rate-cta:hover {
  background: var(--gold-light);
}

/* Speaking row */
.rates-speaking-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

/* Custom row */
.rate-custom {
  background: var(--off-white);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2rem;
}
.rate-custom__left { flex: 1; }
.rate-custom__left h3 {
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 0.75rem;
}
.rate-custom__left p {
  font-size: 0.95rem;
  max-width: 550px;
}
.rate-custom__right { flex-shrink: 0; }

/* Rates FAQ */
.rates-faq {
  background: var(--dark);
  padding: 100px 0;
}
.rates-faq h2 {
  color: var(--white);
  margin-bottom: 3rem;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: transparent;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  font-family: var(--font-sans);
  transition: background var(--transition);
}
.faq-question:hover { background: rgba(255,255,255,0.02); }
.faq-question i {
  font-size: 0.75rem;
  color: var(--gold);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-question i {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: rgba(255,255,255,0.02);
}
.faq-answer p {
  padding: 0 2rem 1.5rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin: 0;
}

/* ═══════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════ */

.contact-section {
  padding: 80px 0 100px;
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}
.contact-info h2 {
  margin-bottom: 1.2rem;
  line-height: 1.2;
}
.contact-info h2 em { color: var(--gold-dark); font-style: italic; }
.contact-info > p {
  color: var(--grey-dark);
  line-height: 1.85;
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-detail__icon {
  width: 40px;
  height: 40px;
  background: rgba(201,168,76,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.85rem;
  flex-shrink: 0;
}
.contact-detail__text h5 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 0.25rem;
}
.contact-detail__text p,
.contact-detail__text a {
  font-size: 0.9rem;
  color: var(--dark);
  margin: 0;
  transition: color var(--transition);
}
.contact-detail__text a:hover { color: var(--gold-dark); }
.contact-social {
  display: flex;
  gap: 0.75rem;
}
.contact-social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--grey-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-mid);
  font-size: 0.8rem;
  transition: var(--transition);
}
.contact-social a:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: rgba(201,168,76,0.05);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--off-white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--grey-light);
}
.contact-form-wrap h3 {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.contact-form-wrap > p {
  font-size: 0.9rem;
  color: var(--grey-mid);
  margin-bottom: 2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--dark);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(0,0,0,0.3);
}
.form-submit { width: 100%; justify-content: center; margin-top: 0.5rem; }
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-success i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.form-success h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.form-success p { font-size: 0.9rem; }

/* Contact Map/Visual */
.contact-locations {
  background: var(--dark);
  padding: 80px 0;
}
.contact-locations h2 {
  color: var(--white);
  margin-bottom: 3rem;
}
.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.location-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  transition: border-color var(--transition);
}
.location-card:hover {
  border-color: rgba(201,168,76,0.25);
}
.location-card__flag {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}
.location-card h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.location-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.25rem;
}
.location-card a {
  font-size: 0.88rem;
  color: var(--gold);
  transition: color var(--transition);
}
.location-card a:hover { color: var(--gold-light); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .rates-grid { grid-template-columns: 1fr 1fr; }
  .rates-speaking-row { grid-template-columns: 1fr 1fr; }
  .about-story__grid { gap: 3.5rem; }
  .about-fears__grid { gap: 3rem; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { gap: 3.5rem; }
}
@media (max-width: 768px) {
  .about-story__grid { grid-template-columns: 1fr; }
  .about-story__img-accent { bottom: -1.5rem; right: -0.5rem; width: 50%; }
  .service-detail__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-detail__grid--reverse { direction: ltr; }
  .rates-grid { grid-template-columns: 1fr; }
  .rates-speaking-row { grid-template-columns: 1fr; }
  .rate-custom { flex-direction: column; text-align: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .about-fears__grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .currency-switch { flex-direction: column; }
  .currency-switch__buttons {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    border-radius: 24px;
  }
  .currency-toggle {
    flex: 1 1 120px;
    text-align: center;
  }
}

/* ── About: Why section grid ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .why-image {
    display: none;
  }
}

/* ══════════════════════════════════════
   SERVICES PAGE — New list layout
   ══════════════════════════════════════ */

.services-list {
  padding: 80px 0 0;
  background: var(--white);
}

.services-list__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.service-item {
  padding: 3.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  position: relative;
}

/* Alternate background for visual rhythm */
.service-item:nth-child(even) {
  background: var(--off-white);
}

/* Right column items get a left border on desktop */
.service-item:nth-child(even) {
  border-left: 1px solid rgba(0,0,0,0.07);
}
.service-item:nth-child(odd):not(:first-child) {
  border-left: none;
}

/* Last item (05) spans full width so it sits alone */
.service-item:last-child {
  grid-column: 1 / -1;
  background: var(--white);
  border-left: none;
  max-width: 720px;
}

.service-item__num {
  font-family: var(--font-serif);
  font-size: 4.5rem;
  font-weight: 300;
  color: rgba(201,168,76,0.15);
  line-height: 1;
  display: block;
  margin-bottom: 0.25rem;
}

.service-item__actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── Services Gallery (bottom of services page) ── */
.services-gallery {
  background: var(--off-white);
  padding: 80px 0;
}

.services-gallery__header {
  text-align: center;
  margin-bottom: 3rem;
}

.services-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.services-gallery__cell {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
  background: #ddd;
}

.services-gallery__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-gallery__cell--tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.services-gallery__cell--dark {
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
}

.services-gallery__stat {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
}

.services-gallery__stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 0 1rem;
}

/* ── About: full-width variants ── */
.why-grid--full {
  grid-template-columns: 1fr;
  max-width: 760px;
}

.about-fears__grid--full {
  grid-template-columns: 1fr;
  max-width: 760px;
}

/* ── Responsive: Services list ── */
@media (max-width: 900px) {
  .services-list__grid {
    grid-template-columns: 1fr;
  }
  .service-item {
    padding: 2.5rem 1.5rem;
    border-left: none !important;
  }
  .service-item:nth-child(even) {
    border-left: none;
  }
  .service-item:last-child {
    max-width: 100%;
  }
  .services-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-gallery__cell--tall {
    grid-row: span 1;
    aspect-ratio: 1;
  }
}

@media (max-width: 480px) {
  .services-gallery__grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
  .service-item {
    padding: 2rem 1.25rem;
  }
}
