:root {
  --mb-orange: #ff9d00;
  --mb-brown: #7b542f;
  --mb-gold: #ffcf71;
  --mb-night: #1c140c;
  --mb-ink: #2b2218;
  --mb-muted: #6f6254;
  --mb-border: #ecd9c2;
  --mb-surface: #fffaf3;
  --font-body: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  --font-heading: "Sora", "Trebuchet MS", sans-serif;
  --shadow-soft: 0 20px 45px rgba(60, 38, 17, 0.08);
  --shadow-strong: 0 24px 64px rgba(43, 28, 14, 0.18);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--mb-ink);
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 207, 113, 0.4) 0%, transparent 34%),
    radial-gradient(circle at 95% 8%, rgba(255, 157, 0, 0.2) 0%, transparent 26%),
    linear-gradient(165deg, #fffefe 0%, #fff8ee 45%, #fff4e6 100%);
}

.site-body {
  min-height: 100vh;
}

.top-strip {
  position: relative;
  z-index: 20;
  background: linear-gradient(90deg, #6d4725 0%, #8d6037 56%, #a46f32 100%);
  color: #fff9ee;
}

.brand-title,
.hero-title,
.section-title,
.footer-head {
  font-family: var(--font-heading);
}

.brand-title {
  color: #6e4b2d;
  font-weight: 800;
  letter-spacing: -0.015em;
}

header {
  border-bottom: 1px solid rgba(233, 217, 195, 0.9);
  background: rgba(255, 251, 245, 0.9);
  box-shadow: 0 12px 30px rgba(74, 44, 17, 0.07);
}

[data-menu] {
  gap: 1.2rem;
}

[data-nav-link] {
  position: relative;
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  color: #4f463d;
  transition: color 0.2s ease, background-color 0.2s ease;
}

[data-nav-link]:hover {
  background: rgba(255, 207, 113, 0.18);
  color: #21180e;
}

[data-nav-link].active {
  background: rgba(255, 157, 0, 0.16);
  color: #2b2013;
}

[data-nav-link].active::after {
  content: "";
  position: absolute;
  left: 20%;
  right: 20%;
  bottom: 0.1rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff9d00, #ffcf71);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  border-top: 1px solid #efdfcc;
  background: rgba(255, 250, 243, 0.96);
  padding: 0.95rem;
  backdrop-filter: blur(10px);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  border-radius: 0.8rem;
  padding: 0.65rem 0.78rem;
}

.btn-brand,
.btn-outline-light,
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.8rem 1.3rem;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn-brand {
  background: linear-gradient(120deg, #ff9d00 0%, #ffb743 52%, #ffcf71 100%);
  color: #24180f;
  box-shadow: 0 14px 28px rgba(255, 157, 0, 0.35);
}

.btn-brand:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(255, 157, 0, 0.42);
}

.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.76);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.16);
}

.btn-outline-dark {
  border: 1px solid #dbc5a8;
  color: #583a1d;
  background: rgba(255, 255, 255, 0.55);
}

.btn-outline-dark:hover {
  background: #fff2da;
}

.btn-link {
  color: #744d27;
  font-weight: 700;
  text-decoration: none;
}

.btn-link:hover {
  text-decoration: underline;
}

.hero-shell,
.page-hero {
  position: relative;
  overflow: clip;
  background-size: cover;
  background-position: center;
}

.hero-shell {
  background: #2b2117;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  filter: saturate(1.04) contrast(1.03);
}

.page-hero {
  background:
    linear-gradient(125deg, rgba(25, 17, 9, 0.88) 0%, rgba(73, 45, 21, 0.8) 52%, rgba(102, 59, 23, 0.76) 100%),
    var(--hero-image, url("../images/hero-pattern.svg"));
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    106deg,
    rgba(18, 12, 8, 0.66) 0%,
    rgba(35, 23, 14, 0.52) 36%,
    rgba(64, 42, 24, 0.3) 63%,
    rgba(108, 75, 45, 0.2) 100%
  );
}

.page-hero::before {
  content: "";
  position: absolute;
  right: -14rem;
  top: -8rem;
  width: 35rem;
  height: 35rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 207, 113, 0.3) 0%, transparent 70%);
  animation: floatGlow 6s ease-in-out infinite alternate;
}

.hero-shell::after,
.page-hero::after {
  content: "";
  position: absolute;
  left: -12rem;
  bottom: -18rem;
  width: 34rem;
  height: 34rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 157, 0, 0.22) 0%, transparent 72%);
}

.hero-shell::after {
  display: none;
}

.hero-shell > :not(.hero-bg-image),
.page-hero > * {
  position: relative;
  z-index: 2;
}

.hero-title {
  color: #fff;
  font-size: clamp(2.1rem, 4.7vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-shadow: 0 14px 30px rgba(10, 7, 4, 0.5);
}

.hero-layout {
  align-items: end;
  min-height: 38rem;
}

.hero-copy {
  max-width: 42rem;
}

.hero-copy-editorial {
  padding: 1.1rem 0 0.35rem;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-cta-row-editorial {
  margin-top: 2rem;
}

.hero-cta-note {
  margin: 1rem 0 0;
  color: rgba(255, 241, 221, 0.88);
  font-size: 0.94rem;
  line-height: 1.5;
}

.hero-kicker,
.section-kicker {
  display: inline-block;
  border-radius: 999px;
  padding: 0.42rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.17em;
}

.hero-kicker {
  color: #ffe8bb;
  background: rgba(255, 207, 113, 0.18);
  border: 1px solid rgba(255, 207, 113, 0.26);
}

.hero-lead {
  color: rgba(255, 247, 235, 0.95);
  font-size: 1.12rem;
  line-height: 1.65;
  text-wrap: balance;
}

.hero-rail {
  align-self: center;
  justify-self: end;
  max-width: 24rem;
  padding: 2rem 0 1.5rem 2rem;
  border-left: 1px solid rgba(255, 232, 198, 0.42);
}

.hero-rail-label {
  margin: 0;
  color: rgba(255, 220, 164, 0.86);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero-rail-list {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-rail-list li {
  margin: 0;
  color: #fff8ef;
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 2.3vw, 2.15rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.hero-rail-list li + li {
  margin-top: 1rem;
  color: rgba(255, 248, 236, 0.78);
}

.hero-rail-note {
  margin: 1.35rem 0 0;
  max-width: 15rem;
  color: rgba(255, 240, 214, 0.82);
  font-size: 0.92rem;
  line-height: 1.6;
}

.section-kicker {
  color: #7a5028;
  background: rgba(255, 207, 113, 0.2);
  border: 1px solid rgba(255, 174, 44, 0.25);
}

.section-title {
  color: var(--mb-night);
  font-size: clamp(1.55rem, 3.2vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.018em;
}

.section-shell {
  position: relative;
}

.surface-warm {
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 157, 0, 0.18) 0%, transparent 28%),
    linear-gradient(165deg, #fff9ef 0%, #fff2dd 52%, #ffeccf 100%);
}

.surface-dark {
  color: #fff;
  background:
    linear-gradient(135deg, #1f160e 0%, #362416 47%, #59371e 100%),
    repeating-linear-gradient(
      35deg,
      rgba(255, 255, 255, 0.02) 0px,
      rgba(255, 255, 255, 0.02) 8px,
      rgba(255, 255, 255, 0.04) 8px,
      rgba(255, 255, 255, 0.04) 16px
    );
}

.service-card,
.project-card,
.feature-panel,
.contact-panel,
.form-panel,
.process-step {
  border-radius: 1.25rem;
  border: 1px solid var(--mb-border);
  box-shadow: var(--shadow-soft);
}

.feature-panel,
.contact-panel,
.form-panel,
.cta-panel {
  padding: 1.7rem;
}

.process-step h3,
.project-card-rich h2 {
  margin: 0 0 0.55rem;
  color: #2d1f12;
  font-family: var(--font-heading);
  font-size: 1.14rem;
  line-height: 1.25;
}

.process-step p {
  margin: 0;
  color: var(--mb-muted);
  line-height: 1.58;
}

.project-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.02) saturate(1.05);
  transition: transform 0.4s ease;
}

.feature-panel,
.contact-panel,
.form-panel {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(8px);
}

.services-editorial {
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.about-story-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.about-story-intro {
  max-width: 28rem;
}

.about-story-copy {
  max-width: 40rem;
  color: #665547;
  font-size: 1rem;
  line-height: 1.8;
}

.about-story-copy p {
  margin: 0;
}

.about-story-copy p + p {
  margin-top: 1rem;
}

.about-credibility {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: stretch;
}

.about-visual,
.about-trust {
  overflow: hidden;
  border-radius: 1.55rem;
  background: #fff;
  box-shadow: 0 22px 44px rgba(48, 31, 15, 0.1);
}

.about-visual {
  min-height: 34rem;
}

.about-visual-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-trust {
  padding: 1.6rem;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 207, 113, 0.24) 0%, transparent 34%),
    linear-gradient(180deg, rgba(255, 250, 241, 0.98) 0%, rgba(255, 244, 225, 0.95) 100%);
}

.about-trust-list {
  margin-top: 1.4rem;
  display: grid;
  gap: 0;
}

.about-trust-item {
  padding: 1rem 0;
  border-top: 1px solid rgba(123, 84, 47, 0.14);
}

.about-trust-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.about-trust-item h3 {
  margin: 0;
  color: #23180f;
  font-family: var(--font-heading);
  font-size: 1.08rem;
  line-height: 1.3;
}

.about-trust-item p {
  margin: 0.45rem 0 0;
  color: #695849;
  line-height: 1.65;
}

.about-principle-list {
  display: grid;
  gap: 0;
}

.about-principle {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr);
  gap: 1.2rem;
  align-items: start;
  padding: 1.35rem 0;
  border-top: 1px solid rgba(123, 84, 47, 0.14);
}

.about-principle:last-child {
  border-bottom: 1px solid rgba(123, 84, 47, 0.14);
}

.about-principle-index {
  margin: 0;
  color: rgba(123, 84, 47, 0.8);
  font-family: var(--font-heading);
  font-size: 1rem;
  line-height: 1;
}

.about-principle h3 {
  margin: 0;
  color: #24190f;
  font-family: var(--font-heading);
  font-size: 1.32rem;
  letter-spacing: -0.02em;
}

.about-principle p {
  margin: 0.45rem 0 0;
  color: #695849;
  line-height: 1.65;
}

.services-intro {
  max-width: 28rem;
}

.services-lead {
  margin: 1rem 0 0;
  color: #685848;
  font-size: 1rem;
  line-height: 1.7;
}

.services-list {
  display: grid;
  gap: 0;
}

.service-line {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr);
  gap: 1.2rem;
  align-items: start;
  padding: 1.35rem 0;
  border-top: 1px solid rgba(123, 84, 47, 0.16);
}

.service-line:last-child {
  border-bottom: 1px solid rgba(123, 84, 47, 0.16);
}

.service-index {
  margin: 0;
  color: rgba(123, 84, 47, 0.78);
  font-family: var(--font-heading);
  font-size: 1rem;
  line-height: 1;
}

.service-copy h3 {
  margin: 0;
  color: #24190f;
  font-family: var(--font-heading);
  font-size: 1.34rem;
  letter-spacing: -0.02em;
}

.service-copy p {
  margin: 0.45rem 0 0;
  color: #6b5c4d;
  font-size: 0.98rem;
  line-height: 1.65;
  max-width: 34rem;
}

.services-process-list {
  display: grid;
  gap: 0;
}

.services-process-item {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr);
  grid-template-areas:
    "index title"
    "index body";
  gap: 1.2rem;
  align-items: start;
  padding: 1.35rem 0;
  border-top: 1px solid rgba(123, 84, 47, 0.14);
}

.services-process-item:last-child {
  border-bottom: 1px solid rgba(123, 84, 47, 0.14);
}

.services-process-item .step-index {
  grid-area: index;
}

.services-process-item h3 {
  grid-area: title;
  margin: 0;
  color: #24190f;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}

.services-process-item p:last-child {
  grid-area: body;
  margin: 0.45rem 0 0;
  color: #695849;
  line-height: 1.65;
}

.contact-editorial {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.contact-editorial-copy {
  max-width: 30rem;
}

.contact-intro {
  margin: 1rem 0 0;
  color: #665547;
  line-height: 1.75;
}

.contact-methods {
  margin-top: 1.5rem;
  display: grid;
  gap: 0;
}

.contact-method {
  padding: 1rem 0;
  border-top: 1px solid rgba(123, 84, 47, 0.14);
}

.contact-method:first-child {
  padding-top: 0;
  border-top: 0;
}

.contact-method-label {
  margin: 0;
  color: #8a5a30;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-method a,
.contact-method p:last-child {
  display: inline-block;
  margin: 0.35rem 0 0;
  color: #24190f;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  line-height: 1.4;
  text-decoration: none;
}

.contact-method a:hover {
  text-decoration: underline;
}

.contact-actions {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact-form-shell {
  background:
    radial-gradient(circle at 100% 0, rgba(255, 207, 113, 0.24) 0%, transparent 34%),
    linear-gradient(180deg, rgba(255, 250, 241, 0.98) 0%, rgba(255, 244, 225, 0.95) 100%);
}

.projects-editorial {
  display: grid;
  gap: 1.35rem;
  grid-template-columns: 1.2fr 0.8fr;
}

.project-feature {
  overflow: hidden;
  border-radius: 1.6rem;
  background: #fff;
  box-shadow: 0 22px 42px rgba(49, 31, 15, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.project-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 56px rgba(49, 31, 15, 0.14);
}

.project-feature-main {
  grid-row: span 2;
}

.project-feature-wide {
  grid-column: 1 / -1;
  display: grid;
  gap: 0;
  grid-template-columns: 1.1fr 0.9fr;
}

.project-image-tall {
  min-height: 36rem;
}

.project-image-wide {
  min-height: 21rem;
}

.project-feature:hover .project-image {
  transform: scale(1.03);
}

.project-feature-copy {
  padding: 1.35rem 1.35rem 1.5rem;
}

.project-meta {
  margin: 0;
  color: #8a5a30;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.project-feature-copy h3 {
  margin: 0.7rem 0 0;
  color: #21170f;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.project-feature-copy > p:not(.project-meta) {
  margin: 0.7rem 0 0;
  color: #685848;
  line-height: 1.65;
}

.project-feature-stats {
  margin-top: 1rem;
  display: grid;
  gap: 0.75rem;
}

.project-feature-stat {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
  border-top: 1px solid rgba(123, 84, 47, 0.12);
  padding-top: 0.8rem;
}

.project-feature-number {
  display: inline-flex;
  min-width: 2.6rem;
  justify-content: center;
  border-radius: 999px;
  background: rgba(138, 90, 48, 0.12);
  padding: 0.45rem 0.72rem;
  color: #8a5a30;
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.project-feature-stat-title {
  margin: 0;
  color: #21170f;
  font-family: var(--font-heading);
  font-size: 0.98rem;
}

.project-feature-stat-text {
  margin: 0.18rem 0 0;
  color: #685848;
  line-height: 1.55;
}

.portfolio-feature {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: stretch;
}

.portfolio-featured-media,
.portfolio-featured-copy,
.portfolio-support-item,
.portfolio-masonry-item {
  overflow: hidden;
  border-radius: 1.55rem;
  background: #fff;
  box-shadow: 0 22px 44px rgba(48, 31, 15, 0.1);
}

.portfolio-featured-media {
  min-height: 32rem;
}

.portfolio-media {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-featured-copy {
  padding: 1.6rem;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 207, 113, 0.26) 0%, transparent 34%),
    linear-gradient(180deg, rgba(255, 250, 241, 0.98) 0%, rgba(255, 244, 225, 0.95) 100%);
}

.portfolio-body {
  margin: 1rem 0 0;
  color: #665547;
  line-height: 1.7;
}

.portfolio-detail-grid {
  margin-top: 1.4rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}

.portfolio-detail-label {
  margin: 0;
  color: #8a5a30;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.portfolio-detail-value {
  margin: 0.4rem 0 0;
  color: #23180f;
  font-family: var(--font-heading);
  font-size: 1rem;
  line-height: 1.4;
}

.portfolio-video-card {
  margin-top: 1.5rem;
}

.portfolio-video {
  margin-top: 0.7rem;
  width: 100%;
  border-radius: 1rem;
  background: #20150d;
}

.portfolio-stats-stack {
  margin-top: 1.35rem;
  display: grid;
  gap: 0.8rem;
}

.portfolio-stat-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.95rem;
  align-items: start;
  border-radius: 1.15rem;
  border: 1px solid rgba(123, 84, 47, 0.12);
  background: rgba(255, 255, 255, 0.66);
  padding: 0.95rem 1rem;
}

.portfolio-stat-number {
  display: inline-flex;
  min-width: 3rem;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(180deg, #b07b45 0%, #8b5b2e 100%);
  padding: 0.65rem 0.85rem;
  color: #fff8ef;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.portfolio-stat-title {
  margin: 0;
  color: #23180f;
  font-family: var(--font-heading);
  font-size: 1rem;
}

.portfolio-stat-text {
  margin: 0.28rem 0 0;
  color: #665547;
  line-height: 1.6;
}

.portfolio-support-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.portfolio-support-item {
  grid-column: span 4;
  min-height: 15rem;
}

.portfolio-support-large {
  grid-column: span 8;
  min-height: 24rem;
}

.portfolio-masonry {
  column-width: 18rem;
  column-gap: 1rem;
}

.portfolio-masonry-item {
  break-inside: avoid;
  margin-bottom: 1rem;
}

.portfolio-masonry-item .portfolio-media {
  height: auto;
}

.trust-pill {
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.09);
  padding: 0.8rem 1rem;
}

.trust-pill::before {
  content: "\2713 ";
  color: #ffd285;
  font-weight: 700;
}

.check-row {
  position: relative;
  padding-left: 1.45rem;
}

.check-row::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0.04rem;
  color: #bf7627;
  font-weight: 700;
}

.cta-panel {
  border-radius: 1.4rem;
  border: 1px solid #ebd8bc;
  background:
    radial-gradient(circle at 95% 12%, rgba(255, 191, 76, 0.35) 0%, transparent 35%),
    radial-gradient(circle at 0 100%, rgba(255, 221, 161, 0.38) 0%, transparent 45%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 249, 239, 0.95) 100%);
  box-shadow: var(--shadow-soft);
}

.process-step {
  padding: 1.2rem;
  background: linear-gradient(180deg, #fffdfa 0%, #fff5e5 100%);
}

.step-index {
  margin: 0 0 0.55rem;
  color: #bf7627;
  font-family: var(--font-heading);
  font-size: 1.22rem;
}

.field-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
  color: #493520;
  font-weight: 600;
}

.field-wrap input,
.field-wrap select,
.field-wrap textarea {
  border-radius: 0.9rem;
  border: 1px solid #dcc7aa;
  padding: 0.8rem 0.88rem;
  background: #fffefc;
  color: #2d1f11;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field-wrap input:focus,
.field-wrap select:focus,
.field-wrap textarea:focus {
  outline: none;
  border-color: #ffaf34;
  box-shadow: 0 0 0 3px rgba(255, 176, 55, 0.22);
}

.footer-shell {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #1d140d 0%, #2b1d11 55%, #3a2614 100%);
  color: #f5e8d6;
}

.footer-shell::before {
  content: "";
  position: absolute;
  left: -12rem;
  top: -9rem;
  width: 24rem;
  height: 24rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 157, 0, 0.2) 0%, transparent 72%);
}

.footer-shell > * {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.45fr 0.85fr 0.85fr auto;
  align-items: start;
}

.footer-brand-block {
  max-width: 28rem;
}

.footer-mini-label {
  margin: 0;
  color: #ffd79f;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-statement {
  margin: 1rem 0 0;
  color: #f0ddc1;
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.footer-head {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.94rem;
  color: #ffdca2;
}

.footer-shell a {
  color: #f0ddc1;
  text-decoration: none;
}

.footer-links {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
  font-size: 0.96rem;
}

.footer-mark {
  justify-self: end;
}

.footer-shell a:hover {
  color: #fff;
  text-decoration: underline;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1), opacity 0.6s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatGlow {
  from {
    transform: translateY(-8px) scale(0.98);
  }
  to {
    transform: translateY(8px) scale(1.02);
  }
}

@media (max-width: 767px) {
  [data-nav-link].active::after {
    display: none;
  }

  .hero-title {
    line-height: 1.08;
  }

  .hero-layout {
    min-height: auto;
  }

  .services-editorial,
  .about-story-layout,
  .about-credibility,
  .contact-editorial,
  .projects-editorial,
  .project-feature-wide,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-feature,
  .portfolio-detail-grid {
    grid-template-columns: 1fr;
  }

  .hero-rail {
    justify-self: start;
    max-width: none;
    padding: 1.4rem 0 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 232, 198, 0.32);
  }

  .project-feature-main {
    grid-row: auto;
  }

  .project-image-tall,
  .project-image-wide {
    min-height: 18rem;
  }

  .about-visual {
    min-height: 20rem;
  }

  .portfolio-featured-media,
  .portfolio-support-large,
  .portfolio-support-item {
    min-height: 18rem;
  }

  .portfolio-support-item,
  .portfolio-support-large {
    grid-column: span 12;
  }

  .footer-mark {
    justify-self: start;
  }
}


