:root {
  --bg: #090909;
  --bg-soft: #121212;
  --panel: rgba(20, 20, 20, 0.8);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f5f1e8;
  --muted: #b3ab9c;
  --accent: #df512d;
  --accent-soft: rgba(223, 81, 45, 0.18);
  --radius: 28px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(223, 81, 45, 0.18), transparent 30%),
    radial-gradient(circle at top right, rgba(242, 198, 126, 0.12), transparent 25%),
    linear-gradient(180deg, #090909 0%, #0f0f0f 45%, #0a0a0a 100%);
}

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

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(9, 9, 9, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-row,
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-row {
  min-height: 96px;
}

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

.brand-logo {
  width: auto;
  height: 51px;
  max-width: min(42vw, 280px);
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: #fff;
}

.site-nav a.is-active {
  text-decoration: underline;
  text-underline-offset: 0.45em;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: #fff;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 800;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-light {
  background: #f5f1e8;
  color: #111;
}

.button-light:hover,
.button-light:focus-visible {
  background: var(--accent);
  color: #fff;
}

.button-ghost {
  border-color: var(--line);
  color: #fff;
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.28);
}

.hero {
  position: relative;
  min-height: calc(100vh - 88px);
  overflow: clip;
}

.hero-media,
.hero-overlay,
.hero-grid,
.hero-orb {
  position: absolute;
  inset: 0;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
}

.hero-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 85%);
}

.hero-orb {
  filter: blur(12px);
}

.hero-orb-left {
  inset: 10% auto auto 5%;
  width: 42vw;
  height: 42vw;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(223, 81, 45, 0.9), rgba(223, 81, 45, 0.1) 55%, transparent 70%);
}

.hero-orb-right {
  inset: auto 5% 8% auto;
  width: 34vw;
  height: 34vw;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(242, 198, 126, 0.7), rgba(242, 198, 126, 0.08) 58%, transparent 74%);
}

.hero-overlay {
  background: linear-gradient(180deg, rgba(6, 6, 6, 0.24), rgba(6, 6, 6, 0.78));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - 88px);
  padding: 96px 0 72px;
}

.eyebrow {
  margin: 0 0 18px;
  color: #f2c67e;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.72rem;
  font-weight: 800;
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: 'Bitter', serif;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  width: min(820px, 100%);
  font-size: clamp(1.8rem, 5vw, 3.6rem);
}

.hero-copy,
.section-copy,
.about-copy,
.service-card p,
.contact-copy p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-copy {
  width: min(620px, 100%);
  margin: 28px 0 0;
  font-size: 1.05rem;
}

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

.section {
  padding: 110px 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.9fr);
  gap: 30px;
  align-items: end;
  margin-bottom: 34px;
}

.section h2 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.filter-button {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  border-radius: 999px;
  min-height: 42px;
  padding: 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 800;
  cursor: pointer;
}

.filter-button.is-active,
.filter-button:hover,
.filter-button:focus-visible {
  background: var(--accent-soft);
  border-color: rgba(223, 81, 45, 0.5);
  color: #fff;
}

.portfolio-grid,
.service-grid,
.contact-grid,
.about-grid {
  display: grid;
  gap: 24px;
}

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

.portfolio-card,
.service-card,
.contact-card,
.about-photo {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.portfolio-card {
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, opacity 180ms ease;
}

.portfolio-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.portfolio-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.22);
}

.portfolio-card.is-hidden {
  display: none;
}

.portfolio-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.portfolio-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.52));
}

.portfolio-poster {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 500ms ease, opacity 220ms ease;
}

.portfolio-card:hover .portfolio-poster {
  transform: scale(1.04);
  opacity: 1;
}

.play-chip {
  position: absolute;
  left: 22px;
  bottom: 20px;
  z-index: 1;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(245, 241, 232, 0.92);
  color: #0c0c0c;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.68rem;
  font-weight: 800;
}

.portfolio-body {
  padding: 22px;
}

.portfolio-body h3,
.service-card h3 {
  margin: 0;
  font-size: 1.25rem;
}

.portfolio-body p {
  margin: 8px 0 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: #f2c67e;
}

.portfolio-meta {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.portfolio-summary {
  margin-top: 14px;
  color: rgba(245, 241, 232, 0.86);
  line-height: 1.75;
}

.portfolio-cta-row {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.modal-open {
  overflow: hidden;
}

.portfolio-modal[hidden] {
  display: none;
}

.portfolio-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 24px;
}

.portfolio-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(10px);
}

.portfolio-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  overflow: hidden;
  background: #0b0b0b;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.5);
}

.portfolio-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.74);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.portfolio-modal-media {
  background: #000;
}

.portfolio-modal-video {
  width: 100%;
  max-height: min(78vh, 760px);
  background: #000;
}

.portfolio-modal-body {
  padding: 22px 24px 24px;
}

.portfolio-modal-body h3 {
  margin: 8px 0 0;
}

.section-services {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(223, 81, 45, 0.05));
}

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

.service-card {
  padding: 28px;
}

.service-icon {
  --icon-image: none;
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(195, 30, 39, 0.98), rgba(122, 8, 26, 0.72)),
    #1d1d1d;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.service-icon::before {
  content: '';
  width: 28px;
  height: 28px;
  background-image: var(--icon-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.service-icon--wedding {
  --icon-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f7efe1' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21s-6.5-3.9-9-8.2C1 9.5 2.9 6 6.7 6c2 0 3.2 1 4.3 2.4C12.1 7 13.3 6 15.3 6 19.1 6 21 9.5 21 12.8 18.5 17.1 12 21 12 21Z'/%3E%3C/svg%3E");
}

.service-icon--event {
  --icon-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f7efe1' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='5' width='16' height='15' rx='3'/%3E%3Cpath d='M8 3v4M16 3v4M4 10h16'/%3E%3C/svg%3E");
}

.service-icon--engagement {
  --icon-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f7efe1' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 4.5 13.9 8l3.9.6-2.8 2.7.7 3.8-3.7-2-3.7 2 .7-3.8L6.2 8.6 10.1 8 12 4.5Z'/%3E%3C/svg%3E");
}

.service-icon--ads {
  --icon-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f7efe1' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 14V10a2 2 0 0 1 2-2h3l5-3v14l-5-3H7a2 2 0 0 1-2-2Z'/%3E%3Cpath d='M17 9.5a4.5 4.5 0 0 1 0 5'/%3E%3C/svg%3E");
}

.service-icon--film {
  --icon-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f7efe1' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='6' width='16' height='12' rx='2'/%3E%3Cpath d='M9 6 11 3h4l-2 3M15 6l2-3'/%3E%3C/svg%3E");
}

.service-icon--camera {
  --icon-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f7efe1' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 9a2 2 0 0 1 2-2h7a2 2 0 0 1 1.4.6l1 1H18a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V9Z'/%3E%3Ccircle cx='11.5' cy='13' r='3'/%3E%3Cpath d='m20 10 2-1.2v8.4L20 16'/%3E%3C/svg%3E");
}

.service-card p {
  margin: 14px 0 20px;
}

.section-link-button {
  margin-top: 18px;
}

.service-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  color: #ece3d2;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  font-weight: 800;
}

.service-card li::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 12px;
  border-radius: 999px;
  background: var(--accent);
  vertical-align: middle;
}

.section-about {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
}

.about-grid,
.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.about-copy {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.about-copy p {
  margin: 0;
}

.about-photo {
  overflow: hidden;
  padding: 14px;
}

.about-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: calc(var(--radius) - 10px);
  overflow: hidden;
  margin: 0;
  background: #121212;
}

.about-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 6, 6, 0.08), rgba(6, 6, 6, 0.32)),
    radial-gradient(circle at top right, rgba(242, 198, 126, 0.26), transparent 28%);
}

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

.contact-copy,
.contact-card {
  min-height: 100%;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contact-pill {
  --contact-icon: none;
  position: relative;
  display: grid;
  gap: 6px;
  padding: 18px 20px 18px 68px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.contact-pill::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 50%;
  width: 36px;
  height: 36px;
  transform: translateY(-50%);
  border-radius: 12px;
  background:
    var(--contact-icon) center / 18px 18px no-repeat,
    linear-gradient(135deg, rgba(195, 30, 39, 0.98), rgba(122, 8, 26, 0.72));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.contact-pill:hover,
.contact-pill:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(242, 198, 126, 0.35);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
}

.contact-pill-label {
  color: #f2c67e;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.68rem;
  font-weight: 800;
}

.contact-pill strong {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.3;
  font-weight: 700;
}

.contact-pill--mail {
  --contact-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f7efe1' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m4 7 8 6 8-6'/%3E%3C/svg%3E");
}

.contact-pill--phone {
  --contact-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f7efe1' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.9v3a2 2 0 0 1-2.2 2 19.8 19.8 0 0 1-8.6-3.1 19.4 19.4 0 0 1-6-6A19.8 19.8 0 0 1 2.1 4.1 2 2 0 0 1 4.1 2h3a2 2 0 0 1 2 1.7l.5 3.1a2 2 0 0 1-.6 1.8l-1.3 1.3a16 16 0 0 0 6 6l1.3-1.3a2 2 0 0 1 1.8-.6l3.1.5A2 2 0 0 1 22 16.9Z'/%3E%3C/svg%3E");
}

.landing-links,
.faq-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-item {
  padding: 28px;
}

.faq-item h3 {
  margin: 0 0 12px;
  font-size: 1.1rem;
}

.faq-item p,
.page-intro p,
.breadcrumb-links {
  color: var(--muted);
  line-height: 1.75;
}

.breadcrumb-links {
  margin: 0 0 18px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.page-intro {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.page-intro p {
  margin: 0;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.social-links a {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
}

.social-links a:hover,
.social-links a:focus-visible {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
}

.contact-card {
  padding: 28px;
}

.section-faq-home {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-accordion {
  display: grid;
  gap: 16px;
}

.faq-accordion-item {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-accordion-item summary {
  position: relative;
  display: block;
  list-style: none;
  cursor: pointer;
  padding: 24px 64px 24px 24px;
  font-size: 1.05rem;
  font-weight: 700;
}

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

.faq-accordion-item summary::after {
  content: '+';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: #f2c67e;
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 180ms ease;
}

.faq-accordion-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-accordion-content {
  padding: 0 24px 24px;
}

.faq-accordion-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

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

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

.contact-form span {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.68rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
  color: #fff;
  padding: 16px 18px;
  outline: none;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(223, 81, 45, 0.8);
  background: rgba(255, 255, 255, 0.04);
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-alert {
  margin-bottom: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid transparent;
  line-height: 1.6;
}

.form-alert-success {
  background: rgba(55, 168, 91, 0.12);
  border-color: rgba(55, 168, 91, 0.36);
}

.form-alert-error {
  background: rgba(223, 81, 45, 0.12);
  border-color: rgba(223, 81, 45, 0.36);
}

.site-footer {
  padding: 24px 0 44px;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.68rem;
}

.scroll-top {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.68rem;
  font-weight: 800;
  cursor: pointer;
}

.scroll-top:hover,
.scroll-top:focus-visible {
  border-color: rgba(255, 255, 255, 0.24);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 500ms ease, transform 500ms ease;
}

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

@media (max-width: 920px) {
  .header-cta {
    display: none;
  }

  .brand-logo {
    height: 42px;
    max-width: min(56vw, 220px);
  }

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

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(10, 10, 10, 0.96);
  }

  .site-nav.is-open {
    display: flex;
  }

  .section-head,
  .portfolio-grid,
  .service-grid,
  .landing-links,
  .faq-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 26px, 1180px);
  }

  .brand-logo {
    height: 38px;
    max-width: min(58vw, 190px);
  }

  .hero-content,
  .section {
    padding-top: 84px;
    padding-bottom: 84px;
  }

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

  .button,
  .scroll-top {
    width: 100%;
  }

  .service-card,
  .contact-card,
  .about-photo {
    border-radius: 22px;
  }

  .portfolio-modal {
    padding: 12px;
  }

  .portfolio-modal-dialog {
    border-radius: 20px;
  }

  .portfolio-modal-body {
    padding: 18px;
  }
}