:root {
  --bg: #030504;
  --surface: #0a1210;
  --surface-hover: #101c18;
  --surface-border: rgba(0, 240, 255, 0.1);
  --mint: #00f0ff;
  --coral: #00ffaa;
  --electric: #00f0ff;
  --text-main: #ffffff;
  --text-muted: #8aa39f;
  --display: "Alexandria", sans-serif;
  --body: "IBM Plex Sans Arabic", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text-main);
  font-family: var(--body);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea {
  font: inherit;
}

img {
  display: block;
  width: 100%;
}

/* Header */
.site-header {
  height: 90px;
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 0 5vw;
  position: absolute;
  z-index: 20;
  top: 0;
  width: 100%;
  color: white;
  border-bottom: 1px solid var(--surface-border);
  background: rgba(3, 3, 5, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.brand-mark {
  font: 800 34px/1 var(--display);
  letter-spacing: -6px;
}

.brand-mark > span {
  color: var(--mint);
}

.brand > span:last-child {
  display: flex;
  flex-direction: column;
}

.brand b {
  font: 800 15px/1 var(--display);
  letter-spacing: 2px;
}

.brand small {
  font-size: 10px;
  margin-top: 5px;
  color: var(--text-muted);
}

.site-header nav {
  display: flex;
  gap: 35px;
  font-size: 14px;
  font-weight: 500;
}

.site-header nav a {
  position: relative;
  transition: color 0.3s;
}

.site-header nav a:hover {
  color: var(--mint);
}

.header-cta {
  border: 1px solid var(--surface-border);
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 100px;
  background: rgba(255,255,255,0.03);
  transition: 0.3s;
}

.header-cta:hover {
  background: var(--mint);
  color: var(--bg);
  border-color: var(--mint);
}

.header-cta span {
  color: var(--mint);
  margin-right: 10px;
  transition: 0.3s;
}

.header-cta:hover span {
  color: var(--bg);
}

.menu-btn {
  display: none;
}

/* Hero Section */
.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 140px 8vw 70px;
  isolation: isolate;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: radial-gradient(circle at 80% 20%, rgba(0, 240, 255, 0.15), transparent 40%),
              radial-gradient(circle at 20% 80%, rgba(0, 255, 170, 0.15), transparent 40%);
  filter: blur(60px);
  animation: pulseGlow 10s ease-in-out infinite alternate, rotateBg 30s linear infinite;
}

@keyframes rotateBg {
  0% { transform: rotate(0deg) scale(1.2); }
  100% { transform: rotate(360deg) scale(1.2); }
}

@keyframes pulseGlow {
  0% { opacity: 0.8; }
  100% { opacity: 1; }
}

/* Remove duplicate pulseGlow */

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(180deg, transparent, var(--bg));
}

.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.hero-content {
  max-width: 900px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 100px;
  color: var(--text-muted);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--mint);
  animation: dotPulse 2s infinite;
}

@keyframes dotPulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(0, 240, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 240, 255, 0); }
}

h1, h2, h3, p {
  margin-top: 0;
}

.hero h1 {
  font: 700 clamp(48px, 7vw, 100px)/1.1 var(--display);
  letter-spacing: -3px;
  margin: 30px 0;
  background: linear-gradient(to right, #fff, #888, #fff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 4s linear infinite;
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

.hero h1 .latin {
  font-weight: 800;
  letter-spacing: -5px;
  -webkit-text-fill-color: var(--mint);
  text-shadow: 0 0 30px rgba(0, 240, 255, 0.4);
}

em {
  font-style: normal;
  color: var(--electric);
}

.hero-copy {
  font-size: 20px;
  line-height: 1.8;
  max-width: 600px;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 45px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 32px;
  border: 0;
  font-weight: 700;
  cursor: pointer;
  border-radius: 100px;
  font-family: var(--body);
}

.btn-primary {
  background: var(--mint);
  color: var(--bg);
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px -10px rgba(0, 240, 255, 0.5);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
  transform: rotate(45deg);
  transition: 0.5s;
  opacity: 0;
}

.btn-primary:hover::after {
  opacity: 1;
  transform: rotate(45deg) translate(50%, 50%);
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 40px -10px rgba(0, 240, 255, 0.7);
}

.text-link {
  color: var(--text-main);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}

.text-link:hover {
  color: var(--mint);
}

.hero-index {
  position: absolute;
  left: 5vw;
  bottom: 40px;
  font: 500 10px var(--display);
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--text-muted);
}

.hero-index i {
  width: 60px;
  height: 1px;
  background: var(--surface-border);
}

/* Sections General */
section {
  padding: 120px 7vw;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 50px;
  padding: 8px 16px;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 100px;
  color: var(--text-muted);
}

.section-kicker span {
  color: var(--electric);
}

.intro-heading, .work-head, .packages-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 70px;
}

.intro-heading h2, .packages h2, .work h2, .about h2, .contact h2 {
  font: 700 clamp(38px, 5vw, 70px)/1.15 var(--display);
  letter-spacing: -2px;
  margin: 0;
}

.intro-heading p, .work-head p, .packages-head p {
  max-width: 400px;
  line-height: 1.8;
  color: var(--text-muted);
  font-size: 17px;
}

/* Bento Grid Services */
.services-list {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  grid-auto-rows: minmax(280px, auto);
}

.service {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service:hover {
  background: var(--surface-hover);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.service::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    800px circle at var(--mouse-x, 0) var(--mouse-y, 0),
    rgba(255, 255, 255, 0.06),
    transparent 40%
  );
  z-index: 0;
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.service:hover::before {
  opacity: 1;
}

.service > * {
  position: relative;
  z-index: 1;
}

/* Bento Sizing */
.service:nth-child(1) { grid-column: span 7; }
.service:nth-child(2) { grid-column: span 5; }
.service:nth-child(3) { grid-column: span 4; }
.service:nth-child(4) { grid-column: span 4; }
.service:nth-child(5) { grid-column: span 4; }

.service-no {
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--display);
}

.service-icon {
  font: 400 42px var(--display);
  margin: 30px 0 20px;
  color: var(--electric);
  transition: 0.4s;
}

.service:hover .service-icon {
  transform: scale(1.2) rotate(10deg);
  text-shadow: 0 0 20px var(--electric);
}

.service-icon.gift {
  color: var(--coral);
}

.service:hover .service-icon.gift {
  text-shadow: 0 0 20px var(--coral);
}

.service h3 {
  font: 600 26px/1.4 var(--display);
  letter-spacing: -1px;
  margin-bottom: 15px;
}

.service p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 15px;
  margin-bottom: 30px;
}

.service > a {
  margin-top: auto;
  align-self: flex-end;
  font-size: 24px;
  color: var(--text-main);
  background: rgba(255,255,255,0.05);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
}

.service:hover > a {
  background: var(--text-main);
  color: var(--bg);
  transform: rotate(-45deg);
}

/* Packages */
.packages {
  position: relative;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.package {
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--surface-border);
  border-radius: 32px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

.package:hover {
  border-color: var(--mint);
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 20px rgba(0, 240, 255, 0.1);
}

.package::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    800px circle at var(--mouse-x, 0) var(--mouse-y, 0),
    rgba(0, 240, 255, 0.08),
    transparent 40%
  );
  z-index: 0;
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.package:hover::before {
  opacity: 1;
}

.package > * {
  position: relative;
  z-index: 1;
}

.package:hover {
  border-color: var(--mint);
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 20px rgba(0, 240, 255, 0.1);
}

.package.featured {
  background: linear-gradient(145deg, rgba(0,240,255,0.1), rgba(0,240,255,0.02));
  border-color: rgba(0,240,255,0.3);
}

.package-top {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--surface-border);
  padding-bottom: 20px;
}

.package.featured .package-top {
  color: var(--mint);
  border-color: rgba(0,240,255,0.2);
}

.package h3 {
  font: 700 32px var(--display);
  margin: 30px 0;
}

.price {
  display: flex;
  align-items: center;
  gap: 12px;
  direction: rtl;
}

.price strong {
  font: 700 clamp(40px, 4vw, 60px) var(--display);
  letter-spacing: -2px;
}

.price span {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
}

.package ul {
  list-style: none;
  padding: 25px 0;
  margin: 15px 0;
  border-top: 1px solid var(--surface-border);
  line-height: 2.2;
  font-size: 15px;
  color: var(--text-muted);
}

.package li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.package li:before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: var(--mint);
  border-radius: 50%;
}

.package > a {
  margin-top: auto;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  padding: 16px;
  border-radius: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  transition: 0.3s;
}

.package.featured > a {
  background: var(--mint);
  color: var(--bg);
  border: none;
}

.package:hover > a:not(.featured > a) {
  background: white;
  color: var(--bg);
}

.package-note {
  text-align: center;
  margin: 50px 0 0;
  color: var(--text-muted);
}

.package-note a {
  color: var(--electric);
  border-bottom: 1px dashed var(--electric);
}

/* Work */
.work-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: repeat(2, 380px);
  gap: 20px;
}

.work-item {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

.work-large {
  grid-row: 1 / 3;
}

.work-item img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.work-item:hover img {
  transform: scale(1.05);
}

.work-item:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 60%);
}

.work-item figcaption {
  position: absolute;
  z-index: 2;
  bottom: 35px;
  right: 35px;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transform: translateY(20px);
  opacity: 0;
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.work-item:hover figcaption {
  transform: translateY(0);
  opacity: 1;
}

.work-item figcaption span {
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--mint);
  text-transform: uppercase;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  padding: 6px 12px;
  border-radius: 100px;
  align-self: flex-start;
}

.work-item figcaption b {
  font: 600 26px var(--display);
}

/* Testimonial */
.testimonial {
  text-align: center;
  position: relative;
  padding: 120px 15vw;
  background: linear-gradient(to right, rgba(255,51,102,0.05), rgba(0,240,255,0.05));
  border-top: 1px solid var(--surface-border);
  border-bottom: 1px solid var(--surface-border);
}

.quote-mark {
  font: 800 120px/1 var(--display);
  color: var(--surface-border);
  height: 80px;
}

.testimonial blockquote {
  font: 500 clamp(24px, 3.5vw, 42px)/1.6 var(--display);
  margin: 30px auto 40px;
  max-width: 900px;
  color: var(--text-main);
}

.quote-author {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.quote-author span {
  font-weight: 700;
  color: var(--mint);
}

.quote-author small {
  color: var(--text-muted);
}

.quote-nav {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  font-size: 13px;
  color: var(--text-muted);
}

.quote-nav button {
  border: 1px solid var(--surface-border);
  background: var(--surface);
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.quote-nav button:hover {
  background: white;
  color: var(--bg);
}

/* About */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: center;
}

.about-image {
  height: 700px;
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 32px;
  pointer-events: none;
}

.about-image img {
  height: 100%;
  object-fit: cover;
}

.about-content > p {
  font-size: 19px;
  line-height: 1.9;
  color: var(--text-muted);
  max-width: 560px;
  margin: 35px 0;
}

.trust {
  border-top: 1px solid var(--surface-border);
  padding-top: 35px;
  display: flex;
  align-items: center;
  gap: 25px;
}

.seal {
  width: 85px;
  height: 85px;
  border: 1px dashed var(--mint);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--mint);
  animation: spin 20s linear infinite;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}

.seal b {
  font: 800 20px var(--display);
}

.trust p {
  margin: 0;
  line-height: 1.7;
  color: var(--text-muted);
}

.trust p strong {
  color: var(--text-main);
  font-size: 17px;
}

/* Contact */
.contact {
  background: var(--surface);
  border-top: 1px solid var(--surface-border);
}

.contact-top {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.round-cta {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font: 700 17px/1.7 var(--display);
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.round-cta:hover {
  transform: scale(1.1) rotate(-15deg);
  box-shadow: 0 15px 40px rgba(0,240,255,0.4);
}

.round-cta span {
  font-size: 28px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 8vw;
  margin-top: 80px;
}

.contact form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.contact label {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact label:nth-child(n+3) {
  grid-column: 1 / 3;
}

.contact input, .contact select, .contact textarea {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--surface-border);
  border-radius: 12px;
  padding: 16px 20px;
  color: white;
  outline: 0;
  transition: 0.3s;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
}

.contact textarea {
  resize: vertical;
  min-height: 120px;
}

.contact input:focus, .contact select:focus, .contact textarea:focus {
  border-color: var(--mint);
  background: rgba(255,255,255,0.05);
  box-shadow: 0 0 0 4px rgba(0, 240, 255, 0.1), inset 0 2px 4px rgba(0,0,0,0.2);
}

.contact option {
  color: var(--bg);
}

.contact form .btn {
  grid-column: 1 / 3;
  justify-self: start;
  margin-top: 15px;
}

.contact-info {
  padding-right: 50px;
  border-right: 1px solid var(--surface-border);
}

.contact-info > div {
  margin-bottom: 40px;
}

.contact-info small {
  display: block;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-size: 13px;
}

.contact-info > a, .contact-info address {
  font: 500 22px/1.7 var(--display);
  color: var(--text-main);
}

.contact-info address {
  font-style: normal;
  font-size: 17px;
}

.socials {
  display: flex;
  gap: 25px;
  font-size: 14px;
}

.socials a {
  color: var(--text-muted);
  transition: 0.3s;
}

.socials a:hover {
  color: var(--mint);
}

.map-link {
  border-top: 1px solid var(--surface-border);
  padding-top: 30px;
  display: flex;
  justify-content: space-between !important;
  font-size: 15px !important;
  color: var(--text-muted) !important;
  transition: 0.3s;
}

.map-link:hover {
  color: white !important;
}

.map-link b {
  color: var(--electric);
  font-size: 24px;
}

/* Footer */
footer {
  background: #000;
  color: white;
  padding: 60px 7vw 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  border-top: 1px solid var(--surface-border);
}

.footer-brand {
  margin: 0;
  justify-self: start;
}

footer > p {
  text-align: left;
  color: var(--mint);
  font: 600 18px var(--display);
  margin: 0;
}

footer > div {
  display: flex;
  gap: 30px;
  font-size: 14px;
  color: var(--text-muted);
}

footer > div a:hover {
  color: white;
}

footer > small {
  text-align: left;
  color: var(--text-muted);
}

.whatsapp {
  position: fixed;
  z-index: 30;
  bottom: 30px;
  left: 30px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--mint);
  display: grid;
  place-items: center;
  color: var(--bg);
  font: 800 12px var(--display);
  box-shadow: 0 10px 30px rgba(0,240,255,0.3);
  transition: 0.3s;
}

.whatsapp:hover {
  transform: scale(1.1);
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.services-list .reveal:nth-child(2), .package-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.services-list .reveal:nth-child(3), .package-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.services-list .reveal:nth-child(4) { transition-delay: 0.3s; }
.services-list .reveal:nth-child(5) { transition-delay: 0.4s; }

/* Responsive */
@media (max-width: 1100px) {
  .services-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .service:nth-child(1), .service:nth-child(2), .service:nth-child(3), .service:nth-child(4), .service:nth-child(5) {
    grid-column: span 1;
  }
  .service:nth-child(5) {
    grid-column: span 2;
  }
  .work-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 500px 400px 400px;
  }
  .work-large {
    grid-row: auto;
  }
}

@media (max-width: 900px) {
  .site-header {
    height: 80px;
    padding: 0 24px;
  }
  .site-header nav, .header-cta {
    display: none;
  }
  .menu-btn {
    display: flex;
    width: 48px;
    height: 48px;
    border: 1px solid var(--surface-border);
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
  }
  .menu-btn i {
    display: block;
    width: 20px;
    height: 2px;
    background: white;
  }
  .site-header.open nav {
    display: flex;
    position: absolute;
    top: 80px;
    right: 0;
    left: 0;
    background: var(--bg);
    padding: 30px;
    flex-direction: column;
    border-bottom: 1px solid var(--surface-border);
  }
  .hero {
    padding: 140px 24px 60px;
    align-items: flex-end;
    min-height: 85svh;
  }
  .hero h1 {
    font-size: 52px;
    letter-spacing: -2px;
  }
  .hero-copy {
    font-size: 17px;
  }
  .hero-index {
    display: none;
  }
  section {
    padding: 90px 24px;
  }
  .intro-heading, .work-head, .packages-head {
    align-items: start;
    flex-direction: column;
    gap: 25px;
  }
  .package-grid {
    grid-template-columns: 1fr;
  }
  .package.featured {
    transform: none;
  }
  .testimonial {
    padding-left: 24px;
    padding-right: 24px;
  }
  .about {
    grid-template-columns: 1fr;
  }
  .about-image {
    height: 500px;
    order: 2;
  }
  .contact-top {
    align-items: start;
  }
  .round-cta {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-info {
    border-right: 0;
    border-top: 1px solid var(--surface-border);
    padding: 40px 0 0;
  }
  footer {
    grid-template-columns: 1fr;
  }
  footer > p, footer > small {
    text-align: right;
  }
}

@media (max-width: 520px) {
  .hero h1 {
    font-size: 42px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
  .services-list {
    grid-template-columns: 1fr;
  }
  .service:nth-child(5) {
    grid-column: span 1;
  }
  .price strong {
    font-size: 48px;
  }
  .work-grid {
    grid-template-rows: 400px 300px 300px;
  }
  .testimonial blockquote {
    font-size: 22px;
  }
  .about-image {
    height: 400px;
  }
  .contact-top {
    display: block;
  }
  .round-cta {
    margin: 40px auto 0;
  }
  .contact form {
    grid-template-columns: 1fr;
  }
  .contact label, .contact label:nth-child(n+3), .contact form .btn {
    grid-column: 1;
  }
  footer > div {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
