:root {
  --green-900: #0b3825;
  --green-800: #154c31;
  --green-600: #2f6f43;
  --green-200: #e3f1e5;
  --gold-500: #d6b25e;
  --sand-100: #fbf9f1;
  --sand-200: #f6f2e4;
  --stone-500: #38423a;
  --stone-300: #59655a;
  --shadow-soft: 0 28px 68px rgba(9, 40, 26, 0.18);
  --radius-card: 22px;
  scroll-behavior: smooth;
}

html {
  font-size: 18px;
  scroll-padding-top: 170px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Source Sans 3', 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--sand-200);
  color: var(--stone-500);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(1120px, 90vw);
  margin: 0 auto;
}

h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  color: var(--green-900);
  line-height: 1.25;
  margin: 0 0 0.7em;
}

h1 {
  font-size: clamp(2.6rem, 5vw, 3.4rem);
}

h2 {
  font-size: clamp(2.2rem, 4vw, 2.9rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.6rem);
}

p {
  margin: 0 0 1.1em;
  font-size: 1.05rem;
  color: var(--stone-500);
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

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

.btn--primary {
  background: linear-gradient(135deg, var(--gold-500), #f0d493);
  color: var(--green-900);
  box-shadow: 0 20px 42px rgba(11, 56, 37, 0.24);
}

.btn--ghost {
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: var(--sand-100);
  background: transparent;
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 4vw;
  background: rgba(11, 56, 37, 0.95);
  color: var(--sand-100);
  font-size: 0.9rem;
}

.header-bar__contact {
  font-weight: 600;
  color: var(--gold-500);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: linear-gradient(0deg, rgba(243, 239, 224, 0.92), rgba(243, 239, 224, 0.92)),
    url('../arch-plans-background.png');
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(11, 56, 37, 0.08);
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 4vw;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: clamp(100px, 9vw, 132px);
  height: clamp(100px, 9vw, 132px);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 0.95rem;
  color: var(--green-900);
}

.main-nav a {
  position: relative;
  padding-bottom: 0.2rem;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  width: 100%;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-500);
  transition: width 0.2s ease;
}

.nav-cta {
  background: rgba(11, 56, 37, 0.08);
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  border: 1px solid rgba(11, 56, 37, 0.18);
  font-weight: 600;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(11, 56, 37, 0.28);
  background: var(--sand-100);
  align-items: center;
  justify-content: center;
}

.nav-toggle__icon,
.nav-toggle__icon::before,
.nav-toggle__icon::after {
  width: 20px;
  height: 2px;
  background: var(--green-900);
  border-radius: 2px;
  display: block;
  position: relative;
}

.nav-toggle__icon::before,
.nav-toggle__icon::after {
  content: '';
  position: absolute;
  left: 0;
}

.nav-toggle__icon::before {
  top: -6px;
}

.nav-toggle__icon::after {
  top: 6px;
}

.hero {
  position: relative;
  display: grid;
  min-height: clamp(520px, 70vh, 720px);
  isolation: isolate;
  color: #ffffff;
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(8, 36, 23, 0.86), rgba(17, 70, 44, 0.6));
  z-index: 1;
}

.hero__overlay {
  position: relative;
  z-index: 2;
  align-self: end;
  padding: clamp(3.5rem, 7vw, 5.5rem) 5vw clamp(3.5rem, 6vw, 5rem);
  max-width: 640px;
  display: grid;
  gap: 1.3rem;
}

.hero h1 {
  margin: 0;
  color: #ffffff;
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  max-width: 40ch;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.2rem;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.promise {
  background: var(--sand-100);
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  scroll-margin-top: 140px;
}

.promise__intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.8rem;
}

.promise__intro p {
  color: var(--stone-300);
}

.promise__highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.8rem;
}

.promise__highlights article {
  background: rgba(255, 255, 255, 0.82);
  padding: 2rem;
  border-radius: var(--radius-card);
  box-shadow: 0 20px 40px rgba(11, 56, 37, 0.08);
}

.promise__highlights ul,
.service-card__body ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.promise__highlights li,
.service-card__body li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--stone-500);
}

.promise__highlights li::before,
.service-card__body li::before {
  content: '';
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--gold-500);
  transform: translateY(-50%);
}

.promise__highlights li:last-child,
.service-card__body li:last-child {
  margin-bottom: 0;
}

.section-heading {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3rem;
}

.eyebrow {
  display: inline-flex;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(214, 178, 94, 0.16);
  color: var(--green-900);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.8rem;
  margin-bottom: 1.1rem;
}

.services {
  padding: clamp(4rem, 8vw, 6.5rem) 0 clamp(3.5rem, 7vw, 5.5rem);
  scroll-margin-top: 140px;
}

.service-grid {
  display: grid;
  gap: 2.8rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: grid;
  gap: 0;
}

.service-card__media {
  position: relative;
  height: 240px;
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card__body {
  padding: clamp(2rem, 4vw, 3rem);
  display: grid;
  gap: 1rem;
}

.service-card__body h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2.6vw, 1.8rem);
}

.service-card ul {
  list-style: disc;
  padding-left: 1.4rem;
  color: var(--stone-300);
  font-size: 0.98rem;
}

@media (min-width: 960px) {
  .service-grid {
    gap: 3.4rem;
  }

  .service-card {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    min-height: 360px;
  }

  .service-card__media {
    height: auto;
  }

  .service-card:nth-child(even) .service-card__media {
    order: 2;
  }

  .service-card:nth-child(even) .service-card__body {
    order: 1;
  }
}

.films {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background-image: linear-gradient(120deg, rgba(246, 242, 228, 0.93), rgba(246, 242, 228, 0.87)),
    url('../arch-plans-background.png');
  background-size: cover;
  background-position: center;
}

.films__grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.film-card {
  position: relative;
  border-radius: var(--radius-card);
  box-shadow: 0 28px 60px rgba(11, 56, 37, 0.18);
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  color: #ffffff;
}

.film-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 33, 21, 0.45), rgba(7, 33, 21, 0.82));
  z-index: 1;
}

.film-card__media {
  position: absolute;
  inset: 0;
}

.film-card__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  background: #000;
}

.film-card__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(2rem, 4vw, 3rem);
  display: grid;
  gap: 1rem;
}

.film-card .eyebrow {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.film-card__content h2 {
  margin: 0;
  color: #ffffff;
}

.film-card__content p {
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .film-card {
    min-height: 320px;
  }
}

.method {
  padding: clamp(4.5rem, 9vw, 7rem) 0;
  background-image: linear-gradient(120deg, rgba(246, 242, 228, 0.94), rgba(246, 242, 228, 0.87)),
    url('../arch-plans-background.png');
  background-size: cover;
  background-position: center;
  scroll-margin-top: 140px;
}

.method__content {
  display: grid;
  gap: 2.5rem;
}

.method__steps {
  display: grid;
  gap: 1.8rem;
}

.method__steps li {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-card);
  padding: 2rem;
  box-shadow: 0 25px 52px rgba(12, 56, 37, 0.12);
}

.method__steps h3 {
  margin-top: 0;
}

.team {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background-image: linear-gradient(135deg, rgba(246, 242, 228, 0.94), rgba(246, 242, 228, 0.88)),
    url('../stripes-background.png');
  background-size: cover;
  background-position: center;
  scroll-margin-top: 140px;
}

.team .container {
  width: min(1200px, 90vw);
}

.team__wrapper {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: stretch;
}

.team__photo {
  justify-self: stretch;
  width: 100%;
  height: 100%;
  min-height: clamp(360px, 40vw, 480px);
}

.team__photo img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-card);
  box-shadow: 0 45px 90px rgba(11, 56, 37, 0.22);
  object-fit: cover;
}

@media (min-width: 1100px) {
  .team__wrapper {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  }
}

.team__bios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  grid-column: 1 / -1;
}

.bio-card {
  padding: 2.3rem;
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 22px 48px rgba(11, 56, 37, 0.12);
}

.portfolio {
  padding: clamp(4.2rem, 8vw, 6.5rem) 0;
  background: var(--sand-100);
}

.gallery-grid {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.gallery-grid__item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(11, 56, 37, 0.16);
  min-height: 220px;
}

.gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 940px) {
  .gallery-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 160px;
  }

  .gallery-grid__item--wide {
    grid-column: span 3;
  }

  .gallery-grid__item--tall {
    grid-row: span 2;
  }

  .gallery-grid__item {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-grid__item img {
    height: 100%;
  }
}

.insights {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background: linear-gradient(135deg, rgba(11, 56, 37, 0.94), rgba(17, 70, 44, 0.86));
  color: var(--sand-100);
}

.insights h2,
.insights h3,
.insights p {
  color: var(--sand-100);
}

.insights__wrapper {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.insight-card {
  background: rgba(11, 56, 37, 0.36);
  padding: 2.4rem;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  max-width: 520px;
}

.insight-card__meta {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-weight: 600;
  color: var(--gold-500);
}

.faq {
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.faq-grid article {
  background: rgba(255, 255, 255, 0.94);
  padding: 2rem;
  border-radius: var(--radius-card);
  box-shadow: 0 20px 44px rgba(11, 56, 37, 0.1);
}

.contact {
  padding: clamp(4.2rem, 8vw, 6.5rem) 0 clamp(3.5rem, 7vw, 5.5rem);
  background: linear-gradient(110deg, rgba(11, 56, 37, 0.9), rgba(17, 70, 44, 0.82));
  color: var(--sand-100);
  scroll-margin-top: 140px;
}

.contact h2,
.contact h3,
.contact p,
.contact li {
  color: var(--sand-100);
}

.contact__wrapper {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

.contact__card {
  background: rgba(251, 249, 241, 0.95);
  color: var(--stone-500);
  border-radius: var(--radius-card);
  padding: 2.6rem 2.4rem;
  box-shadow: var(--shadow-soft);
  max-width: 540px;
}

.contact__card h2 {
  color: var(--green-900);
}

.contact__details {
  padding: 2.4rem;
  border-radius: var(--radius-card);
  background: rgba(11, 56, 37, 0.22);
}

.contact__details ul {
  list-style: disc;
  padding-left: 1.4rem;
  font-size: 1.02rem;
}

.site-footer {
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.78);
  padding: 3rem 0 2.2rem;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  align-items: flex-start;
}

.footer__brand {
  max-width: 320px;
}

.footer__brand img {
  width: 134px;
  height: 134px;
  margin-bottom: 1rem;
  border-radius: 12px;
}

.footer__panel {
  background: rgba(6, 32, 21, 0.58);
  border-radius: var(--radius-card);
  padding: 2.2rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(6px);
}

.footer__brand p {
  color: rgba(255, 255, 255, 0.9);
}

.footer__links {
  display: flex;
  gap: 3rem;
}

.footer__links h4 {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  margin-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.92);
}

.footer__links a {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.82);
}

.footer__links a:hover {
  color: #ffffff;
}

.footer__copy {
  margin-top: 2.4rem;
  text-align: center;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Articles page */
.main-nav a.is-active {
  color: var(--green-900);
  font-weight: 600;
  position: relative;
}

.main-nav a.is-active::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -0.35rem;
  width: 26px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-500), #f0d493);
  transform: translateX(-50%);
}

.footer__links a.is-active {
  color: var(--gold-500);
  font-weight: 600;
}

.page-articles {
  background: var(--sand-200);
}

.articles-main {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.articles-hero {
  padding: clamp(4rem, 7vw, 6.5rem) 0 clamp(3.5rem, 6vw, 5rem);
  background: radial-gradient(circle at top left, rgba(47, 111, 67, 0.28), transparent 55%), var(--sand-100);
  border-bottom: 1px solid rgba(56, 66, 58, 0.08);
}

.articles-hero__content {
  max-width: 720px;
}

.articles-hero__content h1 {
  margin-top: 0.4rem;
}

.articles-hero__note {
  margin-top: 2rem;
  padding: 1.2rem 1.4rem;
  border-radius: 16px;
  background: rgba(214, 178, 94, 0.16);
  border: 1px solid rgba(214, 178, 94, 0.35);
  font-size: 0.98rem;
  color: var(--stone-300);
}

.articles-hero__note a {
  font-weight: 600;
  color: var(--green-800);
  text-decoration: underline;
}

.articles-showcase {
  padding: clamp(3.5rem, 6vw, 5rem) 0 clamp(4rem, 7vw, 6rem);
}

.articles-showcase__header {
  max-width: 760px;
  margin-bottom: clamp(2.2rem, 4vw, 3rem);
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(2rem, 4vw, 2.8rem);
}

.article-card {
  display: flex;
  flex-direction: column;
  background: var(--sand-100);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(56, 66, 58, 0.08);
}

.article-card__media {
  display: block;
  position: relative;
  overflow: hidden;
}

.article-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 56, 37, 0.06), transparent 55%);
  pointer-events: none;
}

.article-card__media img {
  display: block;
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 0;
}

.article-card__body {
  padding: clamp(1.8rem, 3vw, 2.3rem);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.article-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(11, 56, 37, 0.08);
  color: var(--green-900);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-card__body h3 {
  margin: 0;
}

.article-card__body p {
  margin: 0;
}

.article-card__highlights {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
}

.article-card__highlights li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.98rem;
  color: var(--stone-300);
}

.article-card__highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-500), #f0d493);
}

.article-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--green-800);
  text-decoration: none;
  transition: transform 0.2s ease, color 0.2s ease;
}

.article-card__cta::after {
  content: '→';
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.article-card__cta:hover,
.article-card__cta:focus-visible {
  color: var(--green-600);
  transform: translateX(2px);
}

.article-card__cta:hover::after,
.article-card__cta:focus-visible::after {
  transform: translateX(4px);
}

.articles-cta {
  padding: clamp(3.8rem, 7vw, 6.5rem) 0 clamp(3.4rem, 6vw, 5.2rem);
  background: linear-gradient(140deg, rgba(11, 56, 37, 0.9), rgba(21, 76, 49, 0.78));
  color: var(--sand-100);
}

.articles-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(2rem, 4vw, 3rem);
}

.articles-cta h2 {
  color: var(--sand-100);
  margin-bottom: 1rem;
}

.articles-cta p {
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  max-width: 560px;
}

.articles-cta .btn--primary {
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.35);
}

@media (max-width: 1100px) {
  .hero__overlay {
    max-width: 90vw;
    margin: 0 auto;
    text-align: center;
  }

  .hero__overlay p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }
}

@media (max-width: 920px) {
  .main-nav {
    position: absolute;
    right: 5vw;
    top: 120px;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.8rem;
    background: rgba(251, 249, 241, 0.97);
    border-radius: 20px;
    box-shadow: 0 28px 48px rgba(11, 56, 37, 0.18);
    transform: scale(0.95);
    transform-origin: top right;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .main-nav[data-open='true'] {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-bar {
    display: none;
  }

  html {
    scroll-padding-top: 120px;
  }

  .method__steps li,
  .bio-card,
  .faq-grid article {
    padding: 2rem;
  }

  .service-card {
    grid-template-columns: 1fr;
  }

  .service-card__body {
    padding: 2rem;
  }

  .articles-cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .article-card__media img {
    height: 200px;
  }
}

@media (max-width: 680px) {
  html {
    font-size: 17px;
  }

  .header-main {
    padding: 0.8rem 1.2rem;
  }

  .promise,
  .services,
  .method,
  .team,
  .portfolio,
  .insights,
  .faq,
  .contact {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .hero__overlay {
    padding: 3rem 1.5rem 3.2rem;
  }

  .contact__wrapper {
    gap: 2rem;
  }

  .footer__inner {
    flex-direction: column;
  }

  .footer__links {
    flex-direction: column;
  }

  .service-card__media img {
    height: 200px;
  }

  .films__grid {
    gap: 2rem;
  }

  .film-card {
    padding: 1.8rem;
  }

  .articles-grid {
    grid-template-columns: 1fr;
  }

  .article-card__body {
    padding: 1.8rem;
  }

  .articles-hero__note {
    margin-top: 1.6rem;
  }
}
