:root {
  --bg: #0b0b0b;
  --bg-soft: #141414;
  --bg-card: #101010;
  --text: #f4f1ea;
  --muted: #a8a29a;
  --accent: #c9a46a;
  --accent-hover: #e0bd7a;
  --border: #2a2a2a;
  --white-soft: rgba(244, 241, 234, 0.82);
}

/* RESET */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

body.page-loaded {
  opacity: 1;
  transform: translateY(0);
}

body.page-exit {
  opacity: 0;
  transform: translateY(8px);
}

body.menu-open {
  overflow: hidden;
}

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

img,
video {
  width: 100%;
  display: block;
}

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

/* HEADER */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 86px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10000;
  transition:
    background 0.3s ease,
    height 0.3s ease,
    border 0.3s ease;
}

.site-header.scrolled {
  height: 72px;
  background: rgba(11, 11, 11, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.05em;
  position: relative;
  z-index: 10003;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.desktop-nav a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.25s ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current='page'] {
  color: var(--text);
}

.nav-cta {
  padding: 12px 20px;
  border: 1px solid rgba(244, 241, 234, 0.35);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  transition: all 0.25s ease;
}

.nav-cta:hover {
  background: var(--text);
  color: var(--bg);
}

/* MOBILE MENU BUTTON */

.menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(244, 241, 234, 0.18);
  border-radius: 999px;
  background: rgba(11, 11, 11, 0.65);
  cursor: pointer;
  position: relative;
  z-index: 10005;
  padding: 0;
  place-items: center;
}

.menu-btn span {
  display: block;
  position: absolute;
  left: 11px;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  transition:
    transform 0.25s ease,
    top 0.25s ease,
    opacity 0.25s ease;
}

.menu-btn span:first-child {
  top: 17px;
}

.menu-btn span:last-child {
  top: 27px;
}

.menu-btn.active span:first-child {
  top: 22px;
  transform: rotate(45deg);
}

.menu-btn.active span:last-child {
  top: 22px;
  transform: rotate(-45deg);
}

/* MOBILE MENU OVERLAY */

.mobile-menu {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  min-height: 100dvh;
  background:
    radial-gradient(
      circle at 80% 18%,
      rgba(201, 164, 106, 0.14),
      transparent 34%
    ),
    #0b0b0b;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 110px 28px 50px;
  gap: 18px;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu a {
  display: block;
  color: var(--text);
  font-size: clamp(44px, 14vw, 78px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.08em;
  text-decoration: none;
  opacity: 1;
  visibility: visible;
  position: relative;
  z-index: 10001;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.mobile-menu a:hover,
.mobile-menu a[aria-current='page'] {
  color: var(--accent);
}

.mobile-menu a:hover {
  transform: translateX(6px);
}

.mobile-menu .mobile-cta {
  color: var(--accent);
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.primary-btn {
  background: var(--accent);
  color: var(--bg);
}

.primary-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.secondary-btn {
  border: 1px solid rgba(244, 241, 234, 0.32);
  color: var(--text);
  background: transparent;
}

.secondary-btn:hover {
  border-color: var(--text);
  transform: translateY(-2px);
}

/* HOME HERO */

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 160px 48px 80px;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  height: 100%;
  transform: scale(1.05);
  opacity: 0.65;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(11, 11, 11, 0.2), rgba(11, 11, 11, 0.96)),
    linear-gradient(to right, rgba(11, 11, 11, 0.9), rgba(11, 11, 11, 0.28));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1150px;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 26px;
}

.hero h1 {
  font-size: clamp(52px, 8.5vw, 132px);
  line-height: 1.03;
  letter-spacing: -0.055em;
  max-width: 1250px;
}

.hero-text {
  max-width: 680px;
  margin-top: 38px;
  color: var(--white-soft);
  font-size: 18px;
  line-height: 1.8;
}

.hero-actions {
  margin-top: 46px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.scroll-note {
  position: absolute;
  right: 48px;
  bottom: 42px;
  z-index: 2;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: flex;
  align-items: center;
  gap: 12px;
}

.scroll-note span {
  width: 44px;
  height: 1px;
  background: var(--muted);
}

/* INTRO STRIP */

.intro-strip {
  padding: 24px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #080808;
  overflow: hidden;
}

.intro-strip p {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

/* GENERAL SECTIONS */

.section {
  padding: 150px 48px;
}

.section-header {
  max-width: 900px;
  margin-bottom: 72px;
}

.section-header.split {
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 70px;
}

.section-header h2,
.about-content h2,
.seo-section h2,
.contact-cta h2,
.page-hero h1,
.service-detail-card h2,
.featured-reel-copy h2,
.portfolio-top h2,
.featured-project-section h2,
.inquiry-help-section h2,
.contact-info-panel h2 {
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.section-header h2,
.about-content h2,
.seo-section h2,
.contact-cta h2 {
  font-size: clamp(38px, 5vw, 82px);
}

.section-link {
  color: var(--accent);
  font-weight: 900;
  font-size: 14px;
  white-space: nowrap;
}

/* HOME WORK PREVIEW */

.work-preview-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
}

.work-card {
  position: relative;
  min-height: 440px;
  border-radius: 28px;
  overflow: hidden;
  background: var(--bg-soft);
  border: 1px solid var(--border);
}

.work-card.large {
  grid-row: span 2;
  min-height: 680px;
}

.work-card img {
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition:
    transform 0.6s ease,
    opacity 0.4s ease;
  opacity: 0.82;
}

.work-card:hover img {
  transform: scale(1.06);
  opacity: 1;
}

.work-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent 60%);
}

.work-info {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
}

.work-info p,
.portfolio-info p {
  color: var(--accent);
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin-bottom: 12px;
}

.work-info h3 {
  font-size: 34px;
  letter-spacing: -0.05em;
}

/* HOME SERVICES PREVIEW */

.services-preview {
  background: var(--bg-soft);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 42px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 36px;
  background: #101010;
  transition:
    transform 0.25s ease,
    border 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 164, 106, 0.55);
}

.service-card span {
  color: var(--accent);
  font-weight: 900;
}

.service-card h3 {
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.service-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

/* HOME ABOUT */

.about-preview {
  padding: 150px 48px;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 70px;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.about-image {
  min-height: 620px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-soft);
}

.about-image img {
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center;
  opacity: 0.9;
}

.about-content p:not(.eyebrow) {
  color: var(--muted);
  font-size: 22px;
  max-width: 780px;
  margin-top: 26px;
  line-height: 1.85;
}

.about-link {
  display: inline-block;
  margin-top: 30px;
}

/* HOME SEO SECTION */

.seo-section {
  padding: 150px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  border-bottom: 1px solid var(--border);
}

.seo-copy p {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 22px;
  line-height: 1.85;
}

/* REVIEWS */

.reviews-section {
  padding: 150px 48px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.review-card {
  padding: 42px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: #101010;
}

.review-stars {
  color: var(--accent);
  font-size: 18px;
  letter-spacing: 0.08em;
  margin-bottom: 22px;
}

.review-card p {
  color: var(--white-soft);
  font-size: 19px;
  line-height: 1.85;
  margin-bottom: 28px;
}

.review-card h3 {
  font-size: 18px;
  letter-spacing: -0.04em;
}

.review-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px;
}

/* PAGE HERO */

.page-hero {
  min-height: 78vh;
  padding: 170px 48px 90px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(to bottom, rgba(11, 11, 11, 0.25), rgba(11, 11, 11, 1)),
    radial-gradient(
      circle at 78% 18%,
      rgba(201, 164, 106, 0.18),
      transparent 34%
    );
}

.page-hero h1 {
  font-size: clamp(52px, 8vw, 124px);
  line-height: 1.03;
  letter-spacing: -0.06em;
  max-width: 1200px;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 34px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.75;
}

/* WORK PAGE */

.featured-reel-section {
  padding: 150px 48px;
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  gap: 70px;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.featured-reel-copy h2 {
  font-size: clamp(38px, 5vw, 82px);
  max-width: 850px;
}

.featured-reel-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  max-width: 620px;
  margin-top: 24px;
  margin-bottom: 34px;
  line-height: 1.85;
}

.phone-video-frame {
  width: min(100%, 360px);
  justify-self: center;
  aspect-ratio: 9 / 16;
  border-radius: 36px;
  overflow: hidden;
  border: 1px solid rgba(244, 241, 234, 0.18);
  background: var(--bg-soft);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.phone-video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-section {
  padding: 150px 48px;
}

.portfolio-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 48px;
}

.portfolio-top h2 {
  font-size: clamp(38px, 5vw, 82px);
  max-width: 850px;
}

.filter-buttons {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-btn {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.25s ease;
}

.filter-btn:hover,
.filter-btn.active {
  color: var(--bg);
  background: var(--accent);
  border-color: var(--accent);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 22px;
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  min-height: 260px;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease,
    border-color 0.25s ease;
}

.portfolio-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 164, 106, 0.5);
}

.portfolio-card.hide {
  display: none;
}

.portfolio-card.tall {
  grid-row: span 2;
}

.portfolio-card.wide {
  grid-column: span 2;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  opacity: 0.82;
  transition:
    transform 0.6s ease,
    opacity 0.4s ease;
}

.portfolio-card:hover img {
  transform: scale(1.06);
  opacity: 1;
}

.portfolio-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.86), transparent 58%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.12), transparent);
  z-index: 1;
}

.portfolio-info {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
}

.portfolio-info h3 {
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.featured-project-section {
  padding: 150px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.featured-project-section h2 {
  font-size: clamp(38px, 5vw, 82px);
}

.featured-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
  margin-bottom: 22px;
}

/* SERVICES PAGE */

.service-detail-section {
  padding: 110px 48px 150px;
}

.service-detail-card {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 70px;
  padding: 86px 0;
  border-bottom: 1px solid var(--border);
}

.service-detail-card:first-child {
  padding-top: 0;
}

.service-detail-card span {
  color: var(--accent);
  font-weight: 900;
  display: inline-block;
  margin-bottom: 18px;
}

.service-detail-card h2 {
  font-size: clamp(36px, 5vw, 76px);
}

.service-detail-copy p {
  color: var(--muted);
  font-size: 19px;
  margin-bottom: 28px;
  max-width: 760px;
  line-height: 1.85;
}

.service-detail-copy ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  list-style: none;
}

.service-detail-copy li {
  padding: 14px 16px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--white-soft);
  font-size: 14px;
}

.process-section {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.process-card {
  min-height: 300px;
  padding: 42px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 36px;
}

.process-card span {
  color: var(--accent);
  font-weight: 900;
}

.process-card h3 {
  font-size: 28px;
  letter-spacing: -0.05em;
}

.process-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.faq-section {
  padding: 150px 48px;
  background: var(--bg);
}

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-item {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 50px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}

.faq-item h3 {
  font-size: 24px;
  letter-spacing: -0.04em;
}

.faq-item p {
  color: var(--muted);
  font-size: 16px;
  max-width: 680px;
  line-height: 1.85;
}

/* CONTACT PAGE */

.contact-main-section {
  padding: 150px 48px;
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 70px;
  align-items: start;
  border-bottom: 1px solid var(--border);
}

.contact-info-panel {
  position: sticky;
  top: 120px;
}

.contact-info-panel h2 {
  font-size: clamp(38px, 5vw, 82px);
}

.contact-info-panel > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
  margin-top: 24px;
  max-width: 560px;
}

.contact-methods {
  margin-top: 42px;
  display: grid;
  gap: 14px;
}

.contact-method {
  display: block;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--bg-soft);
  transition:
    border-color 0.25s ease,
    transform 0.25s ease;
}

.contact-method:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 164, 106, 0.55);
}

.contact-method span {
  display: block;
  color: var(--accent);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 900;
  margin-bottom: 8px;
}

.contact-method strong {
  color: var(--text);
  font-size: 18px;
  word-break: break-word;
}

.contact-form-panel {
  padding: 42px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: var(--bg-soft);
}

.contact-form {
  display: grid;
  gap: 20px;
}

.form-row {
  display: grid;
  gap: 9px;
}

.form-row label {
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #0b0b0b;
  color: var(--text);
  padding: 16px 18px;
  outline: none;
  transition:
    border-color 0.25s ease,
    background 0.25s ease;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: rgba(201, 164, 106, 0.75);
  background: #090909;
}

.form-row textarea {
  resize: vertical;
  min-height: 170px;
}

.form-btn {
  width: fit-content;
  margin-top: 6px;
}

.form-note {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.form-note a {
  color: var(--accent);
  font-weight: 900;
}

.inquiry-help-section {
  padding: 150px 48px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}

.inquiry-help-section h2 {
  font-size: clamp(38px, 5vw, 82px);
}

.inquiry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.inquiry-card {
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: var(--bg-card);
}

.inquiry-card span {
  color: var(--accent);
  font-weight: 900;
}

.inquiry-card h3 {
  margin-top: 34px;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.inquiry-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
  margin-top: 14px;
}

/* CONTACT CTA */

.contact-cta {
  padding: 150px 48px;
  text-align: center;
  max-width: 950px;
  margin: 0 auto;
}

.contact-cta p {
  color: var(--muted);
  font-size: 18px;
  margin-top: 22px;
  line-height: 1.85;
}

.contact-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 46px;
  flex-wrap: wrap;
}

/* FOOTER */

.site-footer {
  padding: 80px 48px 34px;
  border-top: 1px solid var(--border);
  background:
    radial-gradient(
      circle at 15% 0%,
      rgba(201, 164, 106, 0.12),
      transparent 30%
    ),
    #080808;
  color: var(--muted);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.8fr 0.9fr;
  gap: 56px;
  padding-bottom: 64px;
}

.footer-brand {
  max-width: 440px;
}

.footer-logo {
  display: inline-block;
  color: var(--text);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.08em;
  margin-bottom: 24px;
}

.footer-brand p {
  color: var(--white-soft);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 28px;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--bg);
  font-size: 13px;
  font-weight: 900;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.footer-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-column h3 {
  color: var(--text);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 22px;
}

.footer-column a {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 12px;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.footer-column a:hover,
.footer-column a[aria-current='page'] {
  color: var(--accent);
}

.footer-column a:hover {
  transform: translateX(4px);
}

.footer-bottom {
  padding-top: 26px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: rgba(168, 162, 154, 0.78);
  font-size: 13px;
}

/* FLOATING SCROLL BUTTON */

.scroll-toggle {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(244, 241, 234, 0.22);
  background: rgba(11, 11, 11, 0.74);
  backdrop-filter: blur(14px);
  z-index: 9000;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.scroll-toggle:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 164, 106, 0.75);
  background: rgba(20, 20, 20, 0.92);
}

.scroll-toggle span {
  width: 13px;
  height: 13px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 0.25s ease;
}

.scroll-toggle.go-up span {
  transform: rotate(225deg) translate(-2px, -2px);
}

/* RESPONSIVE */

@media (max-width: 1180px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    max-width: 100%;
  }
}

@media (max-width: 980px) {
  .site-header {
    height: 78px;
    padding: 0 22px;
    background: rgba(11, 11, 11, 0.72);
    backdrop-filter: blur(16px);
  }

  .site-header.scrolled {
    height: 70px;
  }

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-btn {
    display: grid;
  }

  .hero {
    padding: 140px 22px 70px;
  }

  .hero h1 {
    font-size: clamp(48px, 14vw, 88px);
    line-height: 1.08;
  }

  .hero-text {
    font-size: 16px;
  }

  .scroll-note {
    display: none;
  }

  .intro-strip,
  .section,
  .about-preview,
  .seo-section,
  .reviews-section,
  .contact-cta,
  .page-hero,
  .featured-reel-section,
  .portfolio-section,
  .featured-project-section,
  .service-detail-section,
  .faq-section,
  .contact-main-section,
  .inquiry-help-section {
    padding-left: 22px;
    padding-right: 22px;
  }

  .section,
  .about-preview,
  .seo-section,
  .reviews-section,
  .contact-cta,
  .featured-reel-section,
  .portfolio-section,
  .featured-project-section,
  .service-detail-section,
  .faq-section,
  .contact-main-section,
  .inquiry-help-section {
    padding-top: 105px;
    padding-bottom: 105px;
  }

  .page-hero {
    min-height: 72vh;
    padding-top: 150px;
    padding-bottom: 70px;
  }

  .page-hero h1 {
    font-size: clamp(48px, 13vw, 92px);
  }

  .section-header.split,
  .about-preview,
  .seo-section,
  .featured-reel-section,
  .featured-project-section,
  .service-detail-card,
  .contact-main-section,
  .inquiry-help-section {
    grid-template-columns: 1fr;
    display: grid;
    gap: 36px;
  }

  .section-header {
    margin-bottom: 52px;
  }

  .portfolio-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .filter-buttons {
    justify-content: flex-start;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 250px;
  }

  .portfolio-card.wide,
  .portfolio-card.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .work-preview-grid,
  .services-grid,
  .reviews-grid,
  .service-detail-copy ul,
  .inquiry-grid {
    grid-template-columns: 1fr;
  }

  .work-card,
  .work-card.large {
    min-height: 430px;
    grid-row: auto;
  }

  .about-image {
    min-height: 430px;
  }

  .about-image img {
    min-height: 430px;
  }

  .about-content p:not(.eyebrow) {
    font-size: 18px;
  }

  .service-card,
  .review-card,
  .process-card,
  .contact-form-panel,
  .inquiry-card {
    padding: 32px;
  }

  .service-detail-card {
    padding: 64px 0;
  }

  .contact-info-panel {
    position: static;
  }

  .faq-item {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .site-footer {
    padding: 70px 22px 30px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 44px 28px;
    padding-bottom: 50px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .mobile-menu {
    padding: 100px 24px 44px;
  }

  .mobile-menu a {
    font-size: clamp(42px, 15vw, 68px);
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .hero h1 {
    line-height: 1.05;
    letter-spacing: -0.05em;
  }

  .hero-text,
  .about-content p:not(.eyebrow),
  .seo-copy p,
  .contact-cta p,
  .review-card p,
  .featured-copy p,
  .service-detail-copy p,
  .faq-item p,
  .contact-info-panel > p:not(.eyebrow),
  .inquiry-card p {
    line-height: 1.75;
  }

  .section,
  .about-preview,
  .seo-section,
  .reviews-section,
  .contact-cta,
  .featured-reel-section,
  .portfolio-section,
  .featured-project-section,
  .service-detail-section,
  .faq-section,
  .contact-main-section,
  .inquiry-help-section {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .page-hero {
    min-height: 68vh;
    padding-top: 135px;
    padding-bottom: 60px;
  }

  .page-hero p:not(.eyebrow) {
    font-size: 16px;
  }

  .work-card,
  .work-card.large {
    min-height: 360px;
    border-radius: 22px;
  }

  .work-info h3 {
    font-size: 28px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 360px;
    gap: 18px;
  }

  .portfolio-card {
    border-radius: 22px;
  }

  .portfolio-info h3 {
    font-size: 25px;
  }

  .service-card,
  .process-card,
  .review-card,
  .contact-form-panel,
  .inquiry-card {
    border-radius: 22px;
    padding: 26px;
  }

  .service-detail-card {
    padding: 56px 0;
  }

  .service-detail-copy li {
    border-radius: 18px;
  }

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

  .about-image {
    min-height: 360px;
    border-radius: 22px;
  }

  .about-image img {
    min-height: 360px;
  }

  .contact-method strong {
    font-size: 16px;
  }

  .form-btn {
    width: 100%;
  }

  .scroll-toggle {
    right: 18px;
    bottom: 18px;
    width: 48px;
    height: 48px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-logo {
    font-size: 42px;
  }

  .footer-column a {
    margin-bottom: 10px;
  }
}
