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

:root {
  --bg:          #F2F1ED;   /* warm off-white / cream */
  --surface:     #FAFAF7;   /* slightly lighter cream */
  --white:       #FFFFFF;
  --ink:         #0F0F0E;   /* near-black */
  --ink-soft:    #888884;   /* muted gray */
  --border:      #E2E1DC;
  --border-dark: #C8C7C2;
  --radius:      12px;
  --radius-lg:   18px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── CONTAINER ─── */
.container {
  width: 90%;
  max-width: 1140px;
  margin: 0 auto;
}

/* ─── TYPE ─── */
h1, h2, h3 {
  font-family: 'Syne', Arial, sans-serif;
  line-height: 1.0;
  letter-spacing: -0.03em;
}

h1 { font-size: clamp(48px, 6vw, 78px); font-weight: 800; }
h2 { font-size: clamp(34px, 5vw, 58px); font-weight: 800; }
h3 { font-size: 22px; font-weight: 700; letter-spacing: -0.01em; }

em { font-style: italic; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.btn.primary {
  background: var(--ink);
  color: #fff;
  border: 2px solid var(--ink);
}
.btn.primary:hover {
  background: #2a2a28;
  border-color: #2a2a28;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

.btn.ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--border-dark);
}
.btn.ghost:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}

.btn.small  { padding: 9px 20px; font-size: 13px; }
.btn.large  { padding: 18px 40px; font-size: 16px; }

/* ─── NAV ─── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
  border-bottom: 1px solid transparent;
}

#nav.scrolled {
  background: rgba(242, 241, 237, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  width: 90%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 21px;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.04em;
}
.logo span { opacity: 0.4; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a:not(.btn) {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:not(.btn):hover { color: var(--ink); }

/* ─── HERO ─── */
.hero {
  padding: 140px 0 100px;
  background: var(--bg);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 60px;
  align-items: center;
}

.hero-copy { max-width: 540px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink-soft);
}

.hero h1 { margin-bottom: 28px; }
.hero h1 em { font-style: italic; opacity: 0.45; }

.hero-sub {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 420px;
  margin-bottom: 40px;
  line-height: 1.75;
}

.buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* HERO IMAGE */
.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 32px 80px rgba(0,0,0,0.12);
}

.hero-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(242, 241, 237, 0.94);
  backdrop-filter: blur(12px);
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-tag span {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.03em;
}

/* ─── MARQUEE ─── */
.marquee-strip {
  background: var(--ink);
  overflow: hidden;
  padding: 16px 0;
}

.marquee-track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.marquee-track .dot { color: rgba(255,255,255,0.25); }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── SECTION HEADER ─── */
.section-header { margin-bottom: 56px; }

.label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.label.light { color: rgba(255,255,255,0.5); }

/* ─── PORTFOLIO ─── */
.section-work {
  padding: 110px 0;
  background: var(--surface);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 12px;
}

.portfolio-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--border);
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.portfolio-item.wide { grid-column: span 2; }
.portfolio-item.tall { grid-row: span 2; }

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.portfolio-item:hover img { transform: scale(1.05); }

.portfolio-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 44px 16px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.72), transparent);
  opacity: 1;
}

.portfolio-label .tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 3px 9px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.2);
  margin-bottom: 6px;
}
.portfolio-label p {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.portfolio-location {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  padding: 3px 9px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.2);
}

/* ─── LIGHTBOX ─── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, background 0.35s ease, backdrop-filter 0.35s ease;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.lightbox-close {
  position: fixed;
  top: 24px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  z-index: 1001;
}
.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  transform: scale(1.08);
}

.lightbox-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: min(90vw, 1100px);
  max-height: 92vh;
  transform: scale(0.94) translateY(16px);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.lightbox.open .lightbox-inner {
  transform: scale(1) translateY(0);
}

.lightbox-inner img {
  display: block;
  max-width: 100%;
  max-height: calc(92vh - 72px);
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.lightbox-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  align-self: flex-start;
}

.lightbox-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.7);
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.lightbox-title {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  letter-spacing: 0.01em;
}

.lightbox-location {
  margin-left: auto;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 4px 10px;
  border-radius: 4px;
}

/* ─── SERVICES ─── */
.section-services {
  padding: 110px 0;
  background: var(--bg);
}

.services-list { display: flex; flex-direction: column; }

.service-row {
  display: grid;
  grid-template-columns: 240px 1fr auto auto;
  align-items: center;
  gap: 32px;
  padding: 36px 0;
  border-top: 1px solid var(--border);
  transition: background 0.2s;
}
.services-list .service-row:last-child { border-bottom: 1px solid var(--border); }

.service-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.service-name-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.service-price-tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}

.service-num {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-soft);
  letter-spacing: 0.1em;
}

.service-desc {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
}

.service-reach {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
}

/* ─── BUNDLES ─── */
.section-bundles {
  padding: 110px 0;
  background: var(--surface);
}

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

.bundle-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.bundle-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.bundle-card.highlight {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  padding: 44px 30px;
}
.bundle-card.highlight h3,
.bundle-card.highlight p { color: #fff; }
.bundle-card.highlight > p:not(.best-value) { color: rgba(255,255,255,0.6); }

.best-value {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 4px 10px;
  border-radius: 100px;
  width: fit-content;
}

.bundle-card h3 { font-size: 20px; }
.bundle-card .bundle-price {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--ink-soft);
  margin: -4px 0 2px;
}
.bundle-card.highlight .bundle-price { color: rgba(255,255,255,0.6); }
.bundle-card > p:not(.best-value) {
  color: var(--ink-soft);
  font-size: 15px;
  flex-grow: 1;
  line-height: 1.65;
}
.bundle-card .btn { align-self: flex-start; margin-top: 4px; }
.bundle-card.highlight .btn {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.bundle-card.highlight .btn:hover {
  background: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.9);
}

/* ─── TESTIMONIALS ─── */
.section-testimonials {
  padding: 110px 0;
  background: var(--bg);
}

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

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.testimonial-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.07);
  transform: translateY(-4px);
}

.quote {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink);
  flex-grow: 1;
}
.quote::before { content: '\201C'; }
.quote::after  { content: '\201D'; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
}
.author-role {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 2px;
}

/* ─── CONTACT FORM ─── */
.section-contact {
  padding: 110px 0;
  background: var(--surface);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-copy h2 { margin: 16px 0 14px; font-size: clamp(28px, 4vw, 44px); }

.contact-copy > p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-details li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact-details li span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.contact-details li a,
.contact-details li {
  font-size: 15px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
}
.contact-details li a:hover { text-decoration: underline; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--border-dark); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(15,15,14,0.08);
}

.form-group textarea { resize: vertical; min-height: 130px; }

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888884' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

/* ─── LIVE EXAMPLES ─── */
.section-examples {
  padding: 100px 0;
}
.examples-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}
.example-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}
.example-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.example-img-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f0f0f0;
}
.example-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.5s ease;
}
.example-card:hover .example-img-wrap img {
  transform: scale(1.03);
}
.example-info {
  padding: 16px 20px 20px;
}
.example-package {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
}
.example-package.business {
  background: rgba(15,15,14,0.08);
  color: var(--ink);
}
.example-package.premium {
  background: rgba(15,15,14,0.08);
  color: var(--ink);
}
.example-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 4px;
}
.example-price {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0;
}
.example-price strong {
  color: var(--ink);
}
@media (max-width: 640px) {
  .examples-grid { grid-template-columns: 1fr; }
}

/* ─── CTA ─── */
.section-cta {
  padding: 120px 0;
  background: var(--ink);
  text-align: center;
}
.section-cta h2 { color: #fff; margin-bottom: 16px; }
.section-cta h2 em { color: rgba(255,255,255,0.4); }
.section-cta p:not(.label) {
  font-size: 18px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 40px;
}
.section-cta .btn.primary {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.section-cta .btn.primary:hover {
  background: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.9);
  box-shadow: 0 8px 32px rgba(255,255,255,0.15);
}

/* ─── FOOTER ─── */
footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.footer-tagline { color: var(--ink-soft); font-size: 14px; }
.copyright { font-size: 12px; color: var(--border-dark); }

/* ─── NAV DROPDOWN ─── */
.nav-dropdown { position: relative; }

.nav-dropdown-trigger {
  display: flex !important;
  align-items: center;
  gap: 5px;
}

.nav-dropdown-trigger svg {
  transition: transform 0.2s;
  flex-shrink: 0;
  opacity: 0.55;
}

.nav-dropdown:hover .nav-dropdown-trigger svg { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 6px;
  min-width: 168px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 10;
}

/* Invisible bridge prevents hover gap from closing the dropdown */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  color: var(--ink) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  padding: 9px 14px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  display: block;
  transition: background 0.15s !important;
}

.nav-dropdown-menu a:hover {
  background: var(--bg);
  transform: none !important;
  opacity: 1 !important;
  color: var(--ink) !important;
}

/* ─── PAGE HERO ─── */
.page-hero {
  padding: 140px 0 80px;
  background: var(--bg);
}

.page-hero .eyebrow { margin-bottom: 20px; }
.page-hero h1 { margin-bottom: 20px; }
.page-hero .hero-sub {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 520px;
  line-height: 1.7;
}

/* ─── PRICING CARDS ─── */
.section-pricing {
  padding: 80px 0 110px;
  background: var(--surface);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s, transform 0.3s;
}

.pricing-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.pricing-card.featured {
  background: var(--ink);
  border-color: var(--ink);
  padding: 44px 30px;
}

.pricing-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 4px 10px;
  border-radius: 100px;
  width: fit-content;
  color: #fff;
  margin-bottom: 20px;
}

.pricing-tier {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 10px;
}

.pricing-card.featured .pricing-tier { color: #fff; }

.pricing-price {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 6px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.pricing-price strong {
  font-family: 'Syne', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
}

.pricing-card.featured .pricing-price { color: rgba(255,255,255,0.5); }
.pricing-card.featured .pricing-price strong { color: #fff; }

.pricing-delivery {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
  margin-top: 4px;
}

.pricing-card.featured .pricing-delivery {
  color: rgba(255,255,255,0.4);
  border-bottom-color: rgba(255,255,255,0.15);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  flex-grow: 1;
}

.pricing-features li {
  font-size: 14px;
  color: var(--ink-soft);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.pricing-features li::before {
  content: '·';
  position: absolute;
  left: 5px;
  top: 0;
  font-weight: 900;
  font-size: 16px;
  color: var(--border-dark);
}

.pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.65); }
.pricing-card.featured .pricing-features li::before { color: rgba(255,255,255,0.3); }

.pricing-ideal {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 28px;
  padding: 14px 16px;
  background: var(--bg);
  border-radius: 10px;
}

.pricing-ideal strong { color: var(--ink); font-weight: 600; }

.pricing-card.featured .pricing-ideal {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.55);
}

.pricing-card.featured .pricing-ideal strong { color: rgba(255,255,255,0.85); }

.pricing-card.featured .btn {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.pricing-card.featured .btn:hover {
  background: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.9);
}

/* ─── SERVICE DETAIL PAGE ─── */
.section-service-intro {
  padding: 80px 0 110px;
  background: var(--surface);
}

.service-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.service-intro-copy h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 20px;
}

.service-intro-copy > p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 36px;
}

.service-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-includes li {
  font-size: 15px;
  color: var(--ink);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}

.service-includes li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.service-cta-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: sticky;
  top: 100px;
}

.service-cta-box h3 { margin-bottom: 4px; }

.service-cta-box p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
}

.service-cta-box .btn { align-self: flex-start; }

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { padding: 36px 30px; }
  .service-intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .service-cta-box { position: static; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-image img { height: 420px; }
  .hero-copy { max-width: 100%; }

  .service-row {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .service-left { grid-column: span 2; }

  .bundles-grid { grid-template-columns: 1fr; }
  .bundle-card.highlight { padding: 36px 30px; }
}

/* ─── HAMBURGER & MOBILE MENU ─── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: var(--bg);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.open { display: flex; }

.mobile-menu a:not(.btn) {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.03em;
  transition: opacity 0.2s;
}
.mobile-menu a:not(.btn):hover { opacity: 0.45; }

.mobile-menu .btn {
  margin-top: 8px;
  padding: 14px 36px;
  font-size: 15px;
}

/* ─── MOBILE SERVICES DROPDOWN ─── */
.mobile-services-dropdown {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.mobile-services-trigger {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  transition: opacity 0.2s;
}

.mobile-services-trigger:hover { opacity: 0.45; }

.mobile-services-trigger svg {
  transition: transform 0.25s ease;
  opacity: 0.45;
  flex-shrink: 0;
}

.mobile-services-dropdown.open .mobile-services-trigger svg {
  transform: rotate(180deg);
}

.mobile-services-submenu {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 18px 0 6px;
}

.mobile-services-dropdown.open .mobile-services-submenu {
  display: flex;
}

.mobile-services-submenu a {
  font-family: 'Syne', sans-serif;
  font-size: 24px !important;
  font-weight: 700 !important;
  color: var(--ink) !important;
  text-decoration: none;
  letter-spacing: -0.02em;
  opacity: 0.6;
  transition: opacity 0.2s !important;
}

.mobile-services-submenu a:hover {
  opacity: 1 !important;
  transform: none !important;
}

.mobile-menu-close {
  position: absolute;
  top: 22px;
  right: 5%;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  line-height: 1;
  padding: 4px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.mobile-menu-close svg { display: block; }

@media (max-width: 720px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }
  .portfolio-item.tall { grid-row: span 1; }

  .service-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .service-left { grid-column: auto; }

  .page-hero {
    padding: 110px 0 56px;
  }
  .page-hero .hero-sub {
    font-size: 16px;
  }

  .service-cta-box {
    padding: 28px 24px;
    gap: 14px;
  }

  .section-service-intro {
    padding: 56px 0 72px;
  }

  .lightbox-inner {
    max-width: 96vw;
  }
  .lightbox-inner img {
    max-height: calc(85vh - 64px);
    border-radius: 8px;
  }
  .lightbox-close {
    top: 16px;
    right: 16px;
  }
}

@media (max-width: 480px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
  .portfolio-item.wide { grid-column: span 1; }

  .page-hero h1 { font-size: clamp(24px, 7.5vw, 52px); }

  .service-cta-box {
    padding: 24px 20px;
  }
}
