:root {
  --bg: #eef9ff;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --surface-dark: #04243d;
  --surface-dark-2: #0b3b5d;
  --ink: #082338;
  --ink-soft: #4c6678;
  --line: rgba(8, 35, 56, 0.12);
  --line-strong: rgba(8, 35, 56, 0.18);
  --blue: #0d6fb7;
  --blue-deep: #07385a;
  --teal: #22c1d6;
  --teal-soft: #8ceaf3;
  --orange: #ff8b1a;
  --yellow: #ffbe2e;
  --success-bg: #e7f8ec;
  --success-text: #14643f;
  --error-bg: #ffeaea;
  --error-text: #a12a28;
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --shadow-soft: 0 22px 70px rgba(5, 36, 59, 0.12);
  --shadow-card: 0 16px 40px rgba(5, 36, 59, 0.1);
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(34, 193, 214, 0.14), transparent 30%),
    radial-gradient(circle at top right, rgba(255, 139, 26, 0.12), transparent 28%),
    linear-gradient(180deg, #eef9ff 0%, #f8fcff 60%, #edf6fb 100%);
  color: var(--ink);
  line-height: 1.6;
}

body.mobile-menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(16px);
  opacity: 0.6;
}

.bg-orb-a {
  width: 24rem;
  height: 24rem;
  background: rgba(34, 193, 214, 0.18);
  top: 4rem;
  left: -8rem;
}

.bg-orb-b {
  width: 20rem;
  height: 20rem;
  background: rgba(255, 139, 26, 0.18);
  top: 8rem;
  right: -4rem;
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(7, 56, 90, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 56, 90, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 75%);
}

.top-strip {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(90deg, rgba(4, 36, 61, 0.92), rgba(12, 59, 93, 0.92));
  color: #f2fbff;
}

.top-strip-inner,
.site-header-inner,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.top-strip-inner {
  min-height: 3rem;
  font-size: 0.9rem;
}

.top-strip-copy span,
.top-strip-actions a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.top-strip-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(248, 252, 255, 0.84);
  border-bottom: 1px solid rgba(8, 35, 56, 0.08);
}

.site-header-inner {
  min-height: 5.75rem;
  justify-content: flex-start;
  gap: 2rem;
}

.app-mobile-header,
.app-mobile-menu-btn,
.app-mobile-cta,
.mobile-menu-inner,
.mobile-menu-profile,
.mobile-menu-nav,
.mobile-menu-contact,
.mobile-menu-contact-list {
  display: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 0;
}

.brand img {
  width: 6.1rem;
  height: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1.7rem;
  margin-right: auto;
}

.header-nav a {
  position: relative;
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(8, 35, 56, 0.78);
}

.header-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.header-nav a:hover::after,
.header-nav a.is-active::after {
  transform: scaleX(1);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-left: auto;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.8rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  color: var(--blue-deep);
  box-shadow: 0 12px 30px rgba(255, 139, 26, 0.28);
}

.btn-secondary,
.btn-outline,
.btn-outline-light,
.btn-ghost {
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  border-color: rgba(8, 35, 56, 0.16);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.36);
}

.btn-ghost {
  background: rgba(13, 111, 183, 0.08);
}

.btn-xl {
  min-height: 3.45rem;
  padding-inline: 1.6rem;
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid rgba(8, 35, 56, 0.14);
  border-radius: 50%;
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 1.2rem;
  height: 2px;
  margin: 0.25rem auto;
  background: var(--ink);
}

.breadcrumbs {
  border-bottom: 1px solid rgba(8, 35, 56, 0.08);
  background: rgba(255, 255, 255, 0.54);
}

.breadcrumbs-list {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding: 0.85rem 0;
  margin: 0;
  list-style: none;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.breadcrumbs-list li + li::before {
  content: "/";
  margin-right: 0.5rem;
  color: rgba(76, 102, 120, 0.6);
}

.site-main {
  padding-bottom: 6rem;
}

.hero-block,
.listing-hero,
.quote-hero {
  position: relative;
}

.hero-block {
  display: flex;
  align-items: flex-end;
  min-height: clamp(34rem, 88vh, 54rem);
  padding: clamp(5rem, 10vw, 7rem) 0 3rem;
  overflow: hidden;
  color: #fff;
}

.hero-block::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(4, 36, 61, 0.86) 0%, rgba(4, 36, 61, 0.78) 30%, rgba(4, 36, 61, 0.48) 58%, rgba(4, 36, 61, 0.2) 100%),
    linear-gradient(180deg, rgba(4, 36, 61, 0.18) 0%, rgba(4, 36, 61, 0.42) 72%, rgba(4, 36, 61, 0.64) 100%);
}

.listing-hero,
.quote-hero {
  padding: 4.2rem 0 2.4rem;
}

.hero-grid,
.quote-grid,
.article-hero,
.article-layout,
.section-grid,
.instagram-shell,
.listing-hero-inner,
.quote-hero-inner {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  position: relative;
  z-index: 2;
  grid-template-columns: minmax(0, 54rem);
  align-items: end;
}

.hero-copy h1,
.listing-hero h1,
.quote-hero h1,
.article-hero h1,
.instagram-hero-card h1 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-text,
.article-excerpt {
  font-size: 1.08rem;
  color: var(--ink-soft);
}

.hero-copy {
  max-width: 52rem;
  padding: 1.5rem 0 1.25rem;
}

.hero-copy h1 {
  color: #fff;
  text-shadow: 0 12px 30px rgba(4, 36, 61, 0.28);
}

.hero-copy .eyebrow {
  margin-bottom: 1.3rem;
}

.hero-copy .hero-text {
  max-width: 39rem;
  margin-top: 1.6rem;
  font-size: 1.14rem;
  line-height: 1.75;
  color: rgba(242, 251, 255, 0.88);
}

.hero-copy .eyebrow {
  color: rgba(167, 226, 255, 0.96);
}

.hero-actions {
  margin-top: 2rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-actions,
.filter-row,
.project-meta,
.footer-links,
.instagram-action-grid,
.instagram-post-list,
.mobile-menu-links,
.mobile-menu-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.project-meta span,
.filter-chip,
.instagram-handle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.68rem 0.92rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(8, 35, 56, 0.08);
  box-shadow: 0 10px 24px rgba(5, 36, 59, 0.06);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.section-block {
  padding: 1.6rem 0 0;
}

.home-body-layout {
  padding: 1.8rem 0 0;
}

.home-body-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.48fr) minmax(18rem, 0.82fr);
  gap: 1.4rem;
  align-items: start;
}

.home-body-main,
.home-body-side {
  display: grid;
  gap: 1.4rem;
  align-content: start;
}

.home-body-layout .section-block,
.home-body-layout .section-block-alt,
.home-body-layout .section-block-dark,
.home-body-layout .section-block-cta {
  padding: 0;
}

.section-shell.container.home-column-shell {
  width: 100%;
  margin: 0;
}

.section-block-alt {
  padding-top: 2rem;
}

.section-block-dark {
  padding: 2.2rem 0 0;
}

.section-block-dark .container {
  padding: 2.2rem;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(255, 190, 46, 0.12), transparent 30%),
    linear-gradient(145deg, #083252, #041e34);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.section-head {
  margin-bottom: 1.4rem;
}

.section-head h2,
.article-sidebar h2,
.sidebar-card h2,
.quote-side-card h2,
.footer-card h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.98;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.section-head-inline {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.section-link-light {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  align-self: flex-start;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  align-self: flex-start;
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-mobile-post-list,
.home-mobile-post-cta-tail {
  display: none;
}

.section-head-sticky {
  align-self: start;
}

.feature-grid,
.about-grid,
.project-grid,
.post-grid,
.footer-grid {
  display: grid;
  gap: 1.3rem;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-grid,
.post-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-body-main .project-grid,
.home-body-main .post-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-body-main .feature-grid {
  grid-template-columns: 1fr;
}

.footer-grid {
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
}

.feature-card,
.about-card,
.project-card,
.post-card,
.sidebar-card,
.quote-form-card,
.quote-side-card,
.instagram-hero-card,
.instagram-featured,
.instagram-listing,
.empty-card,
.footer-card {
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-card);
}

.feature-card,
.about-card,
.sidebar-card,
.quote-form-card,
.quote-side-card,
.instagram-hero-card,
.instagram-featured,
.instagram-listing,
.empty-card,
.footer-card {
  padding: 1.5rem;
}

.feature-card h3,
.about-card h2,
.project-card h3,
.post-card h3,
.post-card h2,
.instagram-featured h3 {
  margin: 0 0 0.85rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.feature-a { background: linear-gradient(180deg, rgba(34, 193, 214, 0.16), rgba(255, 255, 255, 0.86)); }
.feature-b { background: linear-gradient(180deg, rgba(13, 111, 183, 0.14), rgba(255, 255, 255, 0.88)); }
.feature-c { background: linear-gradient(180deg, rgba(255, 139, 26, 0.14), rgba(255, 255, 255, 0.88)); }

.feature-card {
  display: flex;
  flex-direction: column;
}

.home-body-main .feature-card {
  display: block;
}

.home-body-main .feature-card h3 {
  margin-bottom: 1rem;
}

.home-body-main .feature-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.25rem;
  margin-bottom: 1.2rem;
}

.feature-items,
.faq-list,
.accordion-stack,
.quote-form,
.form-grid {
  display: grid;
  gap: 1rem;
}

.feature-item {
  display: grid;
  grid-template-columns: 1.45rem minmax(0, 1fr);
  align-items: start;
  column-gap: 0.8rem;
}

.feature-item i,
.feature-item svg {
  display: block;
  width: 1.45rem;
  text-align: center;
  margin-top: 0.42rem;
  line-height: 1;
}

.feature-item span {
  display: block;
  min-width: 0;
}

.feature-item span > *:first-child {
  margin-top: 0;
}

.feature-item span > *:last-child {
  margin-bottom: 0;
}

.feature-item span p,
.feature-item span ul,
.feature-item span ol {
  margin: 0;
}

.feature-link,
.project-link {
  display: inline-flex;
  max-width: 100%;
  margin-top: 1rem;
  color: var(--blue);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.feature-link {
  align-self: center;
  justify-content: center;
  width: min(100%, 14rem);
  margin-top: 20px;
  padding-inline: 1rem;
  color: var(--blue-deep);
}

.home-body-main .feature-link {
  align-self: start;
  width: auto;
  min-width: 0;
  margin-top: 0;
  padding-inline: 1.05rem;
}

.about-list {
  padding-left: 1.2rem;
  margin: 0;
}

.section-grid,
.quote-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
}

.accordion-item {
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  overflow: hidden;
}

.faq-item {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(8, 35, 56, 0.1);
  background: rgba(255, 255, 255, 0.78);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.faq-item:hover {
  transform: translateY(-1px);
  border-color: rgba(13, 111, 183, 0.22);
}

.accordion-item summary,
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  font-weight: 800;
}

.accordion-item summary span:first-child {
  min-width: 0;
}

.faq-item summary span:first-child {
  min-width: 0;
}

.accordion-item summary::-webkit-details-marker,
.faq-item summary::-webkit-details-marker {
  display: none;
}

.accordion-indicator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  border: 1px solid rgba(8, 35, 56, 0.1);
  background: rgba(13, 111, 183, 0.08);
  color: var(--blue-deep);
  flex: 0 0 auto;
  transition: transform 160ms ease, background 160ms ease;
}

.accordion-item[open] .accordion-indicator {
  transform: rotate(45deg);
  background: rgba(255, 139, 26, 0.16);
}

.faq-indicator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  border: 1px solid rgba(8, 35, 56, 0.12);
  background: rgba(13, 111, 183, 0.08);
  color: var(--blue-deep);
  flex: 0 0 auto;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.faq-item[open] .faq-indicator {
  transform: rotate(45deg);
  background: rgba(255, 139, 26, 0.16);
  border-color: rgba(255, 139, 26, 0.22);
}

.accordion-body,
.faq-answer {
  padding: 0 1.2rem 1.2rem;
  color: var(--ink-soft);
}

.project-card,
.post-card {
  overflow: hidden;
}

.project-card {
  display: flex;
  flex-direction: column;
}

.post-card {
  display: flex;
  flex-direction: column;
}

.project-card-media,
.project-card-media-placeholder,
.post-card-image-link {
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, rgba(34, 193, 214, 0.18), rgba(13, 111, 183, 0.2));
  overflow: hidden;
}

.project-card-media img,
.post-card-image-link img,
.article-hero-media img,
.instagram-featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card-media-placeholder span {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-deep);
}

.project-card-body,
.post-card-body {
  padding: 1.35rem;
}

.project-card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}

.post-card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}

.project-card p,
.post-card p,
.about-card p,
.instagram-featured-copy p,
.sidebar-card p,
.quote-side-card p,
.footer-card p {
  margin: 0;
  color: var(--ink-soft);
}

.project-meta {
  gap: 0.45rem;
  margin: 0.3rem 0 1rem;
}

.project-meta span {
  padding: 0.38rem 0.72rem;
  background: rgba(4, 36, 61, 0.88);
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: none;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-link {
  align-self: center;
  justify-content: center;
  width: min(100%, 13rem);
  margin-top: auto;
  margin-bottom: 0.2rem;
  padding-inline: 1rem;
  color: var(--blue-deep);
}

.project-card-excerpt {
  min-height: 6.2rem;
  margin-bottom: 1rem !important;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.post-link {
  margin-top: 1.4rem;
  margin-bottom: 0.5rem;
}

.sidebar-panel-card {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}

.sidebar-panel-head {
  margin-bottom: 1rem;
}

.sidebar-panel-copy {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1.2rem;
}

.sidebar-panel-copy > * {
  margin: 0;
}

.cta-panel {
  display: grid;
  gap: 1.5rem;
  padding: 2rem 2.2rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.62)),
    linear-gradient(135deg, rgba(34, 193, 214, 0.24), rgba(255, 139, 26, 0.18));
  border: 1px solid rgba(8, 35, 56, 0.08);
  box-shadow: var(--shadow-soft);
}

.cta-copy {
  max-width: 52rem;
}

.cta-panel-actions {
  display: flex;
  justify-content: center;
  width: 100%;
}

.cta-panel-button {
  justify-content: center;
  min-width: 20rem;
  min-height: 4rem;
  padding-inline: 2rem;
  font-size: 1rem;
}

.listing-hero-inner,
.quote-hero-inner {
  align-items: center;
}

.listing-hero,
.quote-hero,
.article-shell,
.instagram-shell-section {
  padding-top: 2.2rem;
}

.filter-chip {
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.filter-chip.is-active {
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  color: var(--blue-deep);
}

.filter-row-sub {
  margin-top: 0.7rem;
}

.article-shell {
  display: grid;
  gap: 2rem;
}

.article-shell-centered {
  gap: 2.4rem;
}

.article-page-wrap {
  max-width: 64rem;
}

.project-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 21rem;
  gap: 1.5rem;
  align-items: start;
  max-width: 74rem;
}

.article-page-card {
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.article-page-cover {
  padding: 0.95rem 0.95rem 0;
}

.article-page-cover img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-sm);
}

.article-page-inner {
  display: grid;
  gap: 1.25rem;
  padding: 1rem 1.15rem 1.5rem;
}

.article-meta-pills {
  margin: 0;
}

.article-page-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
}

.article-note-box {
  display: grid;
  gap: 0.9rem;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: rgba(250, 253, 255, 0.96);
}

.article-note-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--ink-soft);
  text-transform: uppercase;
}

.article-note-meta strong {
  color: var(--blue-deep);
}

.article-note-box p {
  margin: 0;
  color: var(--ink-soft);
}

.article-page-excerpt {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--ink-soft);
}

.article-page-body {
  padding: 0;
}

.prose-content-flat {
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
}

.project-page-sidebar {
  position: sticky;
  top: 7rem;
}

.sidebar-card {
  display: grid;
  gap: 1.25rem;
}

.project-cta-card h2 {
  margin: 0;
  font-size: clamp(1.9rem, 2.4vw, 2.5rem);
  line-height: 0.95;
  max-width: 11rem;
}

.project-cta-card p {
  margin: 0;
}

.project-cta-card .btn {
  margin-top: 0.35rem;
}

.article-hero {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.86fr);
  align-items: center;
  gap: 2rem;
  padding-top: 1.2rem;
}

.article-hero-no-media {
  grid-template-columns: minmax(0, 1fr);
}

.article-hero-copy {
  max-width: 48rem;
}

.article-layout {
  grid-template-columns: minmax(0, 1fr) 21rem;
  align-items: start;
}

.article-content,
.article-sidebar,
.footer-links {
  display: grid;
  gap: 1rem;
}

.article-hero-media,
.article-hero-media-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 22rem;
  background: linear-gradient(145deg, rgba(13, 111, 183, 0.18), rgba(34, 193, 214, 0.12));
  box-shadow: var(--shadow-soft);
}

.article-hero-media-placeholder {
  display: grid;
  place-items: center;
  color: var(--ink-soft);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.prose-content {
  padding: 1.8rem;
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}

.prose-content h2,
.prose-content h3,
.prose-content h4 {
  margin-top: 1.6rem;
  margin-bottom: 0.8rem;
  font-family: "Barlow Condensed", sans-serif;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.prose-content h2 { font-size: 2.3rem; }
.prose-content h3 { font-size: 1.8rem; }
.prose-content h4 { font-size: 1.5rem; }

.prose-content p,
.prose-content ul,
.prose-content ol,
.prose-content blockquote {
  margin: 0 0 1rem;
}

.prose-content ul,
.prose-content ol {
  padding-left: 1.2rem;
}

.prose-content a {
  color: var(--blue);
  font-weight: 700;
}

.sidebar-card {
  gap: 1rem;
}

.instagram-shell {
  grid-template-columns: minmax(0, 1fr);
  gap: 1.45rem;
  align-items: start;
  max-width: 68rem;
}

.instagram-shell-section {
  padding-bottom: 4rem;
}

.instagram-hero-card,
.instagram-featured,
.instagram-listing {
  padding: 1.9rem;
}

.instagram-hero-card {
  display: grid;
  gap: 0.8rem;
}

.instagram-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.6rem;
  color: var(--blue);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.instagram-landing-title,
.instagram-section-title {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
}

.instagram-intro {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.instagram-handle {
  width: fit-content;
  margin-top: 0.15rem;
}

.instagram-action-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1rem;
  margin-top: 0.55rem;
}

.instagram-action {
  justify-content: center;
  min-height: 3.35rem;
}

.instagram-action-grid .instagram-action:first-child {
  grid-column: 1 / -1;
}

.instagram-featured-head {
  display: grid;
  gap: 0.15rem;
  margin-bottom: 1rem;
}

.instagram-featured-card {
  display: grid;
  grid-template-columns: minmax(250px, 0.9fr) minmax(0, 1fr);
  gap: 1.2rem;
  align-items: center;
}

.instagram-featured-media {
  display: block;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: rgba(13, 111, 183, 0.08);
}

.instagram-featured-media img {
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.instagram-featured-copy {
  display: grid;
  gap: 0.75rem;
  align-content: start;
}

.instagram-featured-copy .project-meta {
  gap: 0.6rem;
}

.instagram-featured-copy .project-meta span {
  padding: 0.45rem 0.7rem;
  font-size: 0.76rem;
  background: rgba(14, 36, 57, 0.08);
  box-shadow: none;
}

.instagram-featured-copy h3 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.9rem);
}

.instagram-featured-excerpt {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

.instagram-featured-cta {
  width: fit-content;
  margin-top: 0.3rem;
}

.instagram-post-list {
  display: grid;
  gap: 0;
  margin-top: 0.85rem;
}

.instagram-post-item {
  border-bottom: 1px solid var(--line);
}

.instagram-post-item:last-child {
  border-bottom: 0;
}

.instagram-post-link {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
  padding: 1rem 0;
}

.instagram-post-copy {
  display: grid;
  gap: 0.25rem;
}

.instagram-post-title {
  color: var(--blue-deep);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.25;
}

.instagram-post-date {
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.instagram-browse-all {
  width: fit-content;
  margin-top: 1.2rem;
}

.instagram-post-icon {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 0.45rem;
  background: rgba(13, 111, 183, 0.08);
  color: var(--blue);
}

.quote-grid {
  align-items: start;
}

.quote-side-card .sidebar-panel-copy {
  display: grid;
  gap: 0.9rem;
}

.quote-side-card h2 {
  margin-bottom: 1rem;
}

.quote-side-card .sidebar-panel-copy p {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0;
}

.quote-side-card .sidebar-panel-copy a {
  color: var(--ink-soft);
  font-weight: 700;
}

.quote-form-card label,
.quote-form-card span {
  display: grid;
  gap: 0.45rem;
  font-weight: 700;
}

.form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-grid-full {
  grid-column: 1 / -1;
}

.quote-form-card input,
.quote-form-card textarea,
.quote-form-card select {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: #fff;
  color: var(--ink);
}

.quote-form-card textarea {
  min-height: 11rem;
  resize: vertical;
}

.alert {
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid transparent;
  margin-bottom: 1rem;
}

.alert-success {
  background: var(--success-bg);
  color: var(--success-text);
}

.alert-error {
  background: var(--error-bg);
  color: var(--error-text);
}

.site-footer {
  padding: 2rem 0 6rem;
  background: linear-gradient(180deg, rgba(4, 36, 61, 0.02), rgba(4, 36, 61, 0.08));
  border-top: 1px solid rgba(8, 35, 56, 0.08);
}

.footer-main,
.footer-contact-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-main {
  padding-bottom: 1.25rem;
}

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

.footer-logo {
  width: 7.2rem;
  height: auto;
}

.footer-contact-bar {
  padding: 0.95rem 0;
  border-top: 1px solid rgba(8, 35, 56, 0.08);
  border-bottom: 1px solid rgba(8, 35, 56, 0.08);
  background: rgba(255, 255, 255, 0.42);
}

.footer-links a,
.footer-contact-items a,
.footer-contact-items span {
  color: var(--ink-soft);
}

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.4rem;
}

.footer-links a {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue-deep);
}

.footer-contact-items {
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1rem 1.4rem;
}

.footer-contact-items a,
.footer-contact-items span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.94rem;
  font-weight: 700;
}

.footer-bottom {
  margin-top: 1rem;
  padding-top: 1rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.mobile-menu-backdrop,
.mobile-menu,
.mobile-sticky-cta {
  display: none;
}

@media (max-width: 1040px) {
  .top-strip {
    display: none;
  }

  .site-header-inner {
    display: none;
  }

  .app-mobile-header {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.8rem;
    min-height: 5rem;
    padding: 0.8rem 0;
  }

  .app-mobile-menu-btn,
  .app-mobile-cta {
    min-height: 2.9rem;
  }

  .app-mobile-menu-btn {
    display: inline-grid;
    place-items: center;
    width: 2.9rem;
    padding: 0;
    border: 1px solid rgba(8, 35, 56, 0.12);
    border-radius: 0.95rem;
    background: rgba(255, 255, 255, 0.94);
    color: var(--blue-deep);
    box-shadow: 0 10px 24px rgba(5, 36, 59, 0.08);
  }

  .app-mobile-brand {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .app-mobile-brand-mark {
    width: 3rem;
    height: 3rem;
    flex: 0 0 auto;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(8, 35, 56, 0.08);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 24px rgba(5, 36, 59, 0.08);
  }

  .app-mobile-brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.18rem;
  }

  .app-mobile-brand-copy {
    min-width: 0;
    display: grid;
    gap: 0.14rem;
    line-height: 1.05;
  }

  .app-mobile-brand-copy strong {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.15rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--blue-deep);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .app-mobile-brand-copy span {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(8, 35, 56, 0.56);
  }

  .app-mobile-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--orange), var(--yellow));
    color: var(--blue-deep);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 12px 30px rgba(255, 139, 26, 0.2);
  }

  .mobile-menu-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(4, 36, 61, 0.45);
    border: 0;
    padding: 0;
    margin: 0;
    z-index: 49;
  }

  .mobile-menu-backdrop.is-open {
    display: block;
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    width: min(22rem, 88vw);
    height: 100vh;
    max-height: 100vh;
    background: rgba(248, 252, 255, 0.98);
    backdrop-filter: blur(18px);
    border-right: 1px solid rgba(8, 35, 56, 0.1);
    box-shadow: 20px 0 48px rgba(5, 36, 59, 0.18);
    transform: translateX(-104%);
    transition: transform 220ms ease;
    z-index: 52;
    overflow: hidden;
  }

  .mobile-menu.is-open {
    transform: translateX(0);
  }

  .mobile-menu-inner {
    display: grid;
    gap: 1rem;
    align-content: start;
    height: 100%;
    padding: 1rem 1rem calc(6rem + env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
  }

  .mobile-menu-profile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  .mobile-menu-profile-photo {
    width: 3.4rem;
    height: 3.4rem;
    flex: 0 0 auto;
    object-fit: contain;
    padding: 0.2rem;
    border-radius: 1rem;
    border: 1px solid rgba(8, 35, 56, 0.08);
    background: #fff;
    box-shadow: 0 10px 24px rgba(5, 36, 59, 0.08);
  }

  .mobile-menu-profile-copy {
    min-width: 0;
    margin-right: auto;
    display: grid;
    gap: 0.2rem;
  }

  .mobile-menu-profile-copy strong {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.35rem;
    line-height: 1;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--blue-deep);
  }

  .mobile-menu-profile-copy span,
  .mobile-menu-site {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(8, 35, 56, 0.56);
  }

  .mobile-menu-close {
    display: inline-grid;
    place-items: center;
    width: 2.8rem;
    height: 2.8rem;
    padding: 0;
    border-radius: 999px;
    border: 1px solid rgba(8, 35, 56, 0.12);
    background: #fff;
    color: var(--blue-deep);
  }

  .mobile-menu-nav {
    display: grid;
    gap: 0.25rem;
  }

  .mobile-menu-nav a {
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(8, 35, 56, 0.08);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.45rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--blue-deep);
  }

  .mobile-menu-cta-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.15rem;
    padding: 0 1rem !important;
    border-radius: 999px;
    border-bottom: 0 !important;
    background: linear-gradient(135deg, var(--orange), var(--yellow));
    color: var(--blue-deep) !important;
    font-size: 0.95rem !important;
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(255, 139, 26, 0.22);
  }

  .mobile-menu-contact {
    display: grid;
    gap: 0.8rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(8, 35, 56, 0.08);
  }

  .mobile-menu-contact-list {
    display: grid;
    gap: 0.8rem;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .mobile-menu-contact-list li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--ink-soft);
    font-size: 0.92rem;
    font-weight: 700;
  }

  .mobile-menu-contact-list i {
    width: 1rem;
    color: var(--blue);
    text-align: center;
  }

  .hero-grid,
  .article-hero,
  .article-layout,
  .section-grid,
  .quote-grid,
  .home-body-grid,
  .instagram-shell,
  .feature-grid,
  .about-grid,
  .project-grid,
  .post-grid,
  .instagram-featured-card {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 44rem;
    padding-left: 0;
  }

  .section-head-inline,
  .cta-panel,
  .top-strip-inner,
  .footer-bottom {
    flex-direction: column;
    align-items: start;
  }

  .section-link-light {
    align-self: flex-start;
  }

  .section-link {
    align-self: flex-start;
  }

  .home-body-main .project-grid,
  .home-body-main .post-grid {
    grid-template-columns: 1fr;
  }

  .home-body-main .feature-items {
    grid-template-columns: 1fr;
  }

  .home-body-main .feature-card {
    grid-template-columns: 1fr;
  }

  .home-body-main .feature-card h3,
  .home-body-main .feature-items,
  .home-body-main .feature-link {
    align-self: start;
  }

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

  .article-page-inner {
    padding: 1rem 1rem 1.35rem;
  }

  .article-note-meta {
    display: grid;
    gap: 0.55rem;
  }

  .project-page-sidebar {
    position: static;
  }

  .project-cta-card h2 {
    max-width: none;
  }

  .instagram-action-grid {
    grid-template-columns: 1fr;
  }

  .instagram-action-grid .instagram-action:first-child {
    grid-column: auto;
  }

  .instagram-featured-media img {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .hero-block,
  .listing-hero,
  .quote-hero {
    padding-top: 2rem;
  }

  .hero-block {
    min-height: 33rem;
    padding: 4rem 0 2.5rem;
  }

  .hero-copy {
    padding: 0;
  }

  .hero-copy .hero-text {
    margin-top: 1.2rem;
    font-size: 1.02rem;
    line-height: 1.65;
  }

  .site-main {
    padding-bottom: 7.5rem;
  }

  .section-block-dark .container {
    padding: 1.3rem;
  }

  .home-body-layout {
    padding-top: 1.1rem;
  }

  .home-body-main,
  .home-body-side {
    gap: 1rem;
  }

  .project-grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .project-card {
    display: grid;
    grid-template-columns: 7.4rem minmax(0, 1fr);
    align-items: stretch;
  }

  .project-card-media,
  .project-card-media-placeholder {
    aspect-ratio: auto;
    min-height: 100%;
  }

  .project-card-body {
    padding: 1rem;
  }

  .project-card h3 {
    font-size: 1.55rem;
  }

  .project-card p {
    font-size: 0.94rem;
  }

  .project-link {
    align-self: flex-start;
    min-width: 0;
    margin-top: 1rem;
    padding-inline: 1rem;
  }

  .post-grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .post-card {
    display: grid;
    grid-template-columns: 7.4rem minmax(0, 1fr);
    align-items: stretch;
  }

  .post-card-image-link {
    aspect-ratio: auto;
    min-height: 100%;
  }

  .post-card-body {
    padding: 1rem;
  }

  .post-card h3 {
    font-size: 1.55rem;
  }

  .post-card p {
    font-size: 0.94rem;
  }

  .home-content-band .post-grid {
    display: none;
  }

  .home-content-band .home-mobile-post-list {
    display: grid;
    gap: 2px;
    margin-top: 0.35rem;
  }

  .home-mobile-post-item {
    border-bottom: 1px solid rgba(8, 35, 56, 0.1);
  }

  .home-mobile-post-link {
    display: grid;
    grid-template-columns: 1.1rem minmax(0, 1fr);
    align-items: start;
    gap: 0.75rem;
    padding: 0.95rem 0.1rem;
  }

  .home-mobile-post-icon {
    color: var(--blue);
    font-size: 0.95rem;
    line-height: 1.2;
    margin-top: 0.12rem;
  }

  .home-mobile-post-copy {
    min-width: 0;
    display: grid;
    gap: 0.25rem;
  }

  .home-mobile-post-title {
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--blue-deep);
  }

  .home-mobile-post-date {
    font-size: 0.84rem;
    font-weight: 800;
    color: rgba(8, 35, 56, 0.56);
  }

  .home-mobile-post-cta-head {
    display: none;
  }

  .home-mobile-post-cta-tail {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    margin-top: 0.95rem;
  }

  .instagram-hero-card,
  .instagram-featured,
  .instagram-listing {
    padding: 1.2rem;
  }

  .instagram-landing-title,
  .instagram-section-title {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .instagram-intro {
    font-size: 1rem;
  }

  .instagram-post-link {
    grid-template-columns: 1rem minmax(0, 1fr);
    gap: 0.7rem;
    padding: 0.9rem 0;
  }

  .instagram-post-icon {
    width: 1rem;
    height: auto;
    background: transparent;
    border-radius: 0;
    place-items: start;
    font-size: 0.92rem;
    line-height: 1.2;
    margin-top: 0.15rem;
  }

  .instagram-post-title {
    font-size: 0.98rem;
  }

  .instagram-post-date {
    font-size: 0.84rem;
  }

  .instagram-browse-all {
    width: 100%;
    justify-content: center;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 40;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 25;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(4, 36, 61, 0.1);
    backdrop-filter: blur(14px);
  }

  .mobile-sticky-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 3.7rem;
    background: rgba(255, 255, 255, 0.94);
    color: var(--blue-deep);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  .footer-main,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links,
  .footer-contact-items {
    gap: 0.9rem 1rem;
  }

  .footer-links a {
    font-size: 1rem;
  }

  .footer-contact-items a,
  .footer-contact-items span {
    font-size: 0.88rem;
  }
}
