:root {
  --bg: #071018;
  --bg-soft: #0d1821;
  --panel: #111f2a;
  --panel-light: #172936;
  --text: #f5f8fa;
  --muted: #aab8c2;
  --line: rgba(255,255,255,.11);
  --gold: #f7b51b;
  --gold-light: #ffd776;
  --orange: #ed7d31;
  --blue: #7fb0ca;
  --shadow: 0 22px 60px rgba(0,0,0,.38);
  --radius: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 80% 10%, rgba(247,181,27,.08), transparent 30%),
    linear-gradient(180deg, #061018 0%, #09131b 42%, #061018 100%);
  line-height: 1.6;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

.launch-bar {
  background: linear-gradient(90deg, #f0a80c, #ffc94f, #e68435);
  color: #12100a;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center;
  padding: .55rem 1rem;
}

.site-header {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 20;
}
.brand { display: flex; align-items: center; gap: .85rem; text-decoration: none; }
.brand img { width: 58px; height: 58px; border-radius: 50%; box-shadow: 0 8px 22px rgba(0,0,0,.35); }
.brand span { display: flex; flex-direction: column; }
.brand strong { font-size: 1.18rem; letter-spacing: .02em; }
.brand small { color: var(--muted); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 1.35rem; }
.site-nav a { text-decoration: none; color: #d9e2e8; font-size: .94rem; font-weight: 650; }
.site-nav a:hover { color: var(--gold-light); }
.site-nav .nav-cta { border: 1px solid rgba(247,181,27,.55); border-radius: 999px; padding: .66rem 1rem; color: var(--gold-light); }
.menu-button { display: none; }

.hero {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 70px 0 90px;
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 3.5rem;
  position: relative;
  overflow: hidden;
}
.hero-copy, .hero-visual { position: relative; z-index: 2; }
.eyebrow { color: var(--gold-light); font-size: .78rem; font-weight: 850; letter-spacing: .18em; text-transform: uppercase; margin: 0 0 1rem; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(3.15rem, 6vw, 5.9rem); line-height: .98; letter-spacing: -.055em; margin-bottom: 1.4rem; max-width: 780px; }
h2 { font-size: clamp(2.15rem, 4.5vw, 4rem); line-height: 1.04; letter-spacing: -.04em; margin-bottom: 1.25rem; }
h3 { font-size: 1.3rem; line-height: 1.2; }
.hero-lead { color: #c4d0d7; font-size: 1.18rem; max-width: 680px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin: 2rem 0; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: .8rem 1.2rem; border-radius: 999px; text-decoration: none; font-weight: 850; border: 1px solid transparent; cursor: pointer; }
.button.primary { background: linear-gradient(135deg, var(--gold), #f39424); color: #11100b; box-shadow: 0 14px 35px rgba(238,143,36,.25); }
.button.primary:hover { transform: translateY(-1px); filter: brightness(1.06); }
.button.secondary { border-color: var(--line); background: rgba(255,255,255,.035); color: var(--text); }
.button.secondary:hover { border-color: rgba(247,181,27,.55); }
.full { width: 100%; }
.trust-row { display: flex; flex-wrap: wrap; gap: 1.3rem; color: var(--muted); font-size: .84rem; }
.trust-row span::before { content: "•"; color: var(--gold); margin-right: .45rem; }
.hero-visual { display: grid; place-items: center; }
.hero-visual img { width: min(100%, 540px); border-radius: 50%; filter: drop-shadow(0 40px 60px rgba(0,0,0,.5)); animation: float 7s ease-in-out infinite; }
.logo-orbit { position: absolute; border-radius: 50%; border: 1px solid rgba(247,181,27,.2); }
.orbit-one { width: 112%; aspect-ratio: 1; }
.orbit-two { width: 132%; aspect-ratio: 1; border-color: rgba(127,176,202,.13); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(30px); opacity: .7; }
.hero-glow-one { width: 380px; height: 380px; right: 2%; top: 18%; background: rgba(246,166,32,.16); }
.hero-glow-two { width: 260px; height: 260px; right: 24%; bottom: 4%; background: rgba(56,113,147,.18); }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-13px); } }

.intro-strip { border-block: 1px solid var(--line); background: rgba(255,255,255,.025); }
.intro-strip p { width: min(calc(100% - 32px), 980px); margin: 0 auto; padding: 1.25rem 0; text-align: center; color: #cbd5db; }
.intro-strip strong { color: var(--text); }

.section { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; padding: 105px 0; }
.section-heading { max-width: 760px; margin-bottom: 3rem; }
.section-heading > p:last-child { color: var(--muted); font-size: 1.06rem; }
.centered { text-align: center; margin-inline: auto; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
.service-card { padding: 2rem; border: 1px solid var(--line); background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.018)); border-radius: var(--radius); min-height: 340px; display: flex; flex-direction: column; box-shadow: 0 16px 35px rgba(0,0,0,.15); }
.service-card:hover { transform: translateY(-4px); border-color: rgba(247,181,27,.32); }
.service-card p { color: var(--muted); }
.service-card a { margin-top: auto; color: var(--gold-light); font-weight: 800; text-decoration: none; }
.service-icon { width: 58px; height: 58px; border-radius: 18px; display: grid; place-items: center; font-size: 1.7rem; color: #15120b; background: linear-gradient(135deg, var(--gold-light), var(--orange)); margin-bottom: 1.6rem; }
.featured-card { background: linear-gradient(145deg, rgba(247,181,27,.11), rgba(255,255,255,.025)); }

.construction-section { display: grid; grid-template-columns: .88fr 1.12fr; gap: 5rem; align-items: center; }
.construction-visual { position: relative; padding: 2.1rem; border: 1px solid var(--line); background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.015)); border-radius: 34px; box-shadow: var(--shadow); }
.construction-visual img { border-radius: 28px; }
.visual-label { position: absolute; left: 3.2rem; right: 3.2rem; bottom: 3.1rem; background: rgba(4,10,14,.83); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.14); border-radius: 18px; padding: 1rem 1.1rem; display: flex; flex-direction: column; }
.visual-label span { color: var(--muted); font-size: .84rem; }
.construction-copy > p:not(.eyebrow):not(.fine-print) { color: #c7d1d7; font-size: 1.08rem; }
.check-list { list-style: none; padding: 0; margin: 1.7rem 0; display: grid; gap: .8rem; }
.check-list li { color: #dce4e8; padding-left: 1.7rem; position: relative; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 900; }
.fine-print { color: #8ea0ac; font-size: .82rem; border-left: 2px solid rgba(247,181,27,.45); padding-left: 1rem; }

.pricing-section { border-top: 1px solid var(--line); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; align-items: stretch; }
.price-card { position: relative; padding: 2rem; border: 1px solid var(--line); background: var(--panel); border-radius: var(--radius); display: flex; flex-direction: column; }
.price-card.popular { border-color: rgba(247,181,27,.55); background: linear-gradient(180deg, rgba(247,181,27,.12), var(--panel) 32%); transform: translateY(-12px); box-shadow: var(--shadow); }
.popular-tag { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); white-space: nowrap; color: #141008; background: var(--gold); border-radius: 999px; padding: .35rem .85rem; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 900; }
.price-label { color: var(--gold-light); font-weight: 850; letter-spacing: .06em; text-transform: uppercase; font-size: .82rem; }
.price { font-size: 3.2rem; line-height: 1; font-weight: 900; letter-spacing: -.04em; margin-bottom: 1.6rem; }
.price span { font-size: .78rem; color: var(--muted); letter-spacing: 0; text-transform: uppercase; }
.price-card ul { padding-left: 1.2rem; color: var(--muted); margin-bottom: 2rem; }
.price-card .button { margin-top: auto; }
.pricing-details { margin-top: 2rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.pricing-details div { padding: 1.2rem; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.02); }
.pricing-details strong, .pricing-details span { display: block; }
.pricing-details strong { color: var(--gold-light); margin-bottom: .35rem; }
.pricing-details span { color: var(--muted); font-size: .88rem; }

.process-section { border-block: 1px solid var(--line); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.process-grid article { padding: 1.5rem; border-radius: 20px; background: rgba(255,255,255,.025); border: 1px solid var(--line); }
.process-grid article > span { color: var(--gold); font-size: .8rem; letter-spacing: .14em; font-weight: 900; }
.process-grid h3 { margin-top: 1rem; }
.process-grid p { color: var(--muted); font-size: .92rem; margin-bottom: 0; }

.about-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 5rem; align-items: start; }
.about-copy p { color: #c5d0d6; font-size: 1.05rem; }
.about-badges { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 1.5rem; }
.about-badges span { border: 1px solid rgba(247,181,27,.3); color: var(--gold-light); border-radius: 999px; padding: .55rem .8rem; font-size: .82rem; }

.contact-section { background: linear-gradient(145deg, rgba(247,181,27,.09), rgba(255,255,255,.025)); border: 1px solid var(--line); border-radius: 36px; padding: 3.5rem; display: grid; grid-template-columns: .85fr 1.15fr; gap: 3.5rem; margin-bottom: 105px; }
.contact-copy > p:not(.eyebrow) { color: var(--muted); }
.contact-lines { display: grid; gap: .7rem; margin-top: 1.6rem; }
.contact-lines a { color: var(--gold-light); text-decoration: none; font-weight: 800; }
.contact-lines span { color: #c3ced4; }
.quote-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; padding: 1.4rem; border-radius: 24px; background: rgba(5,12,17,.62); border: 1px solid var(--line); }
.quote-form label { display: grid; gap: .4rem; color: #dce4e8; font-size: .84rem; font-weight: 700; }
.quote-form input, .quote-form select, .quote-form textarea { width: 100%; border: 1px solid rgba(255,255,255,.13); background: rgba(255,255,255,.045); color: var(--text); border-radius: 12px; padding: .82rem .9rem; outline: none; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: rgba(247,181,27,.65); box-shadow: 0 0 0 3px rgba(247,181,27,.1); }
.quote-form option { color: #111; }
.wide { grid-column: 1 / -1; }
.form-note { color: #8fa1ac; font-size: .74rem; margin: 0; font-weight: 500; }

footer { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; padding: 2rem 0 3rem; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; color: var(--muted); font-size: .82rem; }
.footer-brand { display: flex; align-items: center; gap: .7rem; }
.footer-brand img { width: 44px; height: 44px; border-radius: 50%; }
.footer-brand div { display: flex; flex-direction: column; }
.footer-brand strong { color: var(--text); }
.footer-brand span { font-size: .7rem; }
footer a { color: var(--gold-light); text-decoration: none; }

@media (max-width: 940px) {
  .menu-button { display: inline-flex; color: var(--text); background: transparent; border: 1px solid var(--line); border-radius: 999px; padding: .55rem .8rem; }
  .site-nav { display: none; position: absolute; top: 78px; right: 0; width: min(320px, calc(100vw - 32px)); padding: 1rem; border: 1px solid var(--line); border-radius: 18px; background: rgba(5,12,17,.96); box-shadow: var(--shadow); flex-direction: column; align-items: stretch; }
  .site-nav.open { display: flex; }
  .site-nav a { padding: .65rem; }
  .hero { grid-template-columns: 1fr; text-align: center; padding-top: 55px; }
  .hero-copy { display: grid; justify-items: center; }
  .hero-visual img { width: min(78vw, 520px); }
  .trust-row { justify-content: center; }
  .service-grid, .pricing-grid { grid-template-columns: 1fr; }
  .price-card.popular { transform: none; }
  .construction-section, .about-section, .contact-section { grid-template-columns: 1fr; gap: 2.5rem; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .pricing-details { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .launch-bar { font-size: .67rem; }
  .site-header { min-height: 74px; }
  .brand img { width: 48px; height: 48px; }
  .brand small { display: none; }
  .hero { min-height: auto; padding-bottom: 70px; }
  h1 { font-size: clamp(2.7rem, 14vw, 4rem); }
  h2 { font-size: 2.35rem; }
  .section { padding: 76px 0; }
  .service-card, .price-card { padding: 1.45rem; }
  .construction-visual { padding: 1rem; }
  .visual-label { position: static; margin-top: .8rem; }
  .process-grid { grid-template-columns: 1fr; }
  .contact-section { padding: 1.4rem; border-radius: 24px; margin-bottom: 75px; }
  .quote-form { grid-template-columns: 1fr; padding: 1rem; }
  .quote-form label, .wide { grid-column: 1; }
  footer { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}


/* Multi-page portfolio and owner profile additions */
.inline-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1rem; margin-top: 1.8rem; }
.text-link { color: var(--gold-light); font-weight: 850; text-decoration: none; }
.portfolio-teaser { display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: 4rem; border-top: 1px solid var(--line); }
.portfolio-teaser-copy > p:not(.eyebrow) { color: var(--muted); font-size: 1.05rem; }
.teaser-gallery { display: grid; grid-template-columns: 1.12fr .88fr; grid-template-rows: 1fr 1fr; gap: .8rem; }
.teaser-gallery img { width: 100%; height: 100%; object-fit: cover; border-radius: 22px; border: 1px solid var(--line); box-shadow: var(--shadow); }
.teaser-gallery img:first-child { grid-row: 1 / 3; min-height: 480px; }

.inner-hero { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; padding: 80px 0 95px; display: grid; grid-template-columns: 1.12fr .88fr; gap: 4rem; align-items: center; min-height: 610px; }
.inner-hero h1 { font-size: clamp(3rem, 6vw, 5.25rem); }
.inner-hero-mark { width: min(100%, 510px); border-radius: 50%; justify-self: center; filter: drop-shadow(0 35px 55px rgba(0,0,0,.48)); }

.filter-row { display: flex; justify-content: center; flex-wrap: wrap; gap: .65rem; margin-bottom: 2.3rem; }
.filter-button { border: 1px solid var(--line); background: rgba(255,255,255,.025); color: #d7e1e7; border-radius: 999px; padding: .68rem 1rem; font-weight: 800; cursor: pointer; }
.filter-button:hover, .filter-button.active { color: #161108; border-color: var(--gold); background: var(--gold); }
.portfolio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.portfolio-card { overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line); background: var(--panel); transition: transform .2s ease, border-color .2s ease; }
.portfolio-card:hover { transform: translateY(-4px); border-color: rgba(247,181,27,.38); }
.portfolio-card.hidden { display: none; }
.media-open, .video-placeholder { position: relative; display: block; width: 100%; aspect-ratio: 14 / 9; padding: 0; border: 0; background: #08111a; overflow: hidden; cursor: pointer; }
.media-open img, .video-placeholder img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.portfolio-card:hover .media-open img, .portfolio-card:hover .video-placeholder img { transform: scale(1.025); }
.media-type { position: absolute; left: 1rem; bottom: 1rem; background: rgba(4,10,14,.85); color: var(--gold-light); border: 1px solid rgba(247,181,27,.32); border-radius: 999px; padding: .4rem .7rem; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 900; }
.play-symbol { position: absolute; inset: 50% auto auto 50%; transform: translate(-50%,-50%); width: 68px; height: 68px; border-radius: 50%; display: grid; place-items: center; background: rgba(247,181,27,.94); color: #13100a; font-size: 1.5rem; padding-left: .15rem; box-shadow: 0 12px 35px rgba(0,0,0,.35); }
.portfolio-card-copy { padding: 1.55rem; }
.card-kicker { color: var(--gold-light); text-transform: uppercase; letter-spacing: .13em; font-size: .72rem; font-weight: 900; margin-bottom: .7rem; }
.portfolio-card-copy p:last-child { color: var(--muted); margin-bottom: 0; }
.case-study-section { border-top: 1px solid var(--line); }
.case-study-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.case-study-grid article { border: 1px solid var(--line); border-radius: 20px; padding: 1.4rem; background: rgba(255,255,255,.024); }
.case-study-grid strong { color: var(--gold-light); display: block; margin-bottom: .55rem; }
.case-study-grid p { color: var(--muted); margin-bottom: 0; font-size: .9rem; }
.split-cta { display: flex; justify-content: space-between; align-items: center; gap: 3rem; padding: 3.2rem; margin-bottom: 90px; border: 1px solid rgba(247,181,27,.28); border-radius: 30px; background: linear-gradient(135deg, rgba(247,181,27,.1), rgba(255,255,255,.025)); }
.split-cta > div { max-width: 760px; }
.split-cta p:not(.eyebrow) { color: var(--muted); margin-bottom: 0; }
.lightbox { width: min(1100px, calc(100vw - 30px)); max-height: calc(100vh - 30px); padding: 0; border: 1px solid rgba(255,255,255,.15); border-radius: 22px; background: #050b10; box-shadow: var(--shadow); }
.lightbox::backdrop { background: rgba(0,0,0,.84); backdrop-filter: blur(5px); }
.lightbox img { width: 100%; max-height: calc(100vh - 70px); object-fit: contain; }
.lightbox-close { position: absolute; right: .8rem; top: .8rem; width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); background: rgba(5,12,17,.86); color: white; font-size: 1.6rem; cursor: pointer; z-index: 2; }

.owner-photo-wrap { padding: 1rem; border-radius: 30px; border: 1px solid var(--line); background: rgba(255,255,255,.035); box-shadow: var(--shadow); }
.owner-photo-wrap img { border-radius: 22px; width: 100%; max-height: 600px; object-fit: cover; }
.owner-photo-wrap p { color: var(--muted); font-size: .78rem; margin: .8rem .45rem .2rem; }
.owner-story { display: grid; grid-template-columns: .8fr 1.2fr; gap: 5rem; border-top: 1px solid var(--line); }
.owner-story-copy p { color: #c7d2d8; font-size: 1.08rem; }
.owner-story-copy strong { color: white; }
.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.values-grid article { border: 1px solid var(--line); border-radius: 22px; padding: 1.5rem; background: rgba(255,255,255,.025); }
.values-grid span { color: var(--gold); font-size: .76rem; letter-spacing: .13em; font-weight: 900; }
.values-grid h3 { margin-top: .85rem; }
.values-grid p { color: var(--muted); margin-bottom: 0; }
.experience-card { padding: 3rem; border-radius: 34px; border: 1px solid var(--line); background: linear-gradient(145deg, rgba(247,181,27,.08), rgba(255,255,255,.02)); }
.experience-columns { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; margin-top: 2rem; }
.experience-columns div { padding: 1.35rem; border-left: 2px solid rgba(247,181,27,.5); }
.experience-columns p { color: var(--muted); margin-bottom: 0; }
.service-area-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 5rem; align-items: start; }
.service-area-section > div:last-child > p { color: #c7d2d8; font-size: 1.05rem; }

@media (max-width: 940px) {
  .portfolio-teaser, .inner-hero, .owner-story, .service-area-section { grid-template-columns: 1fr; gap: 2.5rem; }
  .inner-hero { text-align: center; }
  .inner-hero > div:first-child { display: grid; justify-items: center; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .case-study-grid, .values-grid { grid-template-columns: 1fr 1fr; }
  .experience-columns { grid-template-columns: 1fr; }
  .split-cta { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  .teaser-gallery { grid-template-columns: 1fr; grid-template-rows: auto; }
  .teaser-gallery img:first-child { grid-row: auto; min-height: auto; }
  .case-study-grid, .values-grid { grid-template-columns: 1fr; }
  .split-cta, .experience-card { padding: 1.5rem; border-radius: 24px; }
  .inner-hero { padding: 60px 0 75px; }
}


/* Separate-page navigation and layouts */
.site-nav a[aria-current="page"] { color: var(--gold-light); }
.site-nav a[aria-current="page"]:not(.nav-cta) { box-shadow: inset 0 -2px 0 rgba(247,181,27,.75); padding-bottom: .3rem; }
.page-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.page-card { padding: 1.7rem; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.018)); display: flex; flex-direction: column; min-height: 290px; }
.page-card:hover { transform: translateY(-4px); border-color: rgba(247,181,27,.35); }
.page-card > span { color: var(--gold); font-size: .78rem; font-weight: 900; letter-spacing: .14em; }
.page-card h3 { margin-top: 1rem; }
.page-card p { color: var(--muted); }
.page-card a { margin-top: auto; color: var(--gold-light); text-decoration: none; font-weight: 850; }
.service-grid-six { grid-template-columns: repeat(3, 1fr); }
.pricing-group { border-top: 1px solid var(--line); }
.price-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 24px; background: rgba(255,255,255,.02); }
.price-table { width: 100%; min-width: 760px; border-collapse: collapse; }
.price-table th, .price-table td { padding: 1rem 1.15rem; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.price-table th { color: var(--gold-light); background: rgba(247,181,27,.08); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
.price-table td { color: #c7d2d8; }
.price-table td:first-child { color: var(--text); font-weight: 800; }
.price-table td:last-child { color: var(--gold-light); font-weight: 900; white-space: nowrap; }
.price-table tr:last-child td { border-bottom: 0; }
.policy-section { border-top: 1px solid var(--line); }
.policy-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.policy-grid article { padding: 1.7rem; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.025); }
.policy-grid h3 { color: var(--gold-light); }
.policy-grid p { color: var(--muted); margin-bottom: 0; }

@media (max-width: 1050px) {
  .site-nav { gap: .85rem; }
  .site-nav a { font-size: .88rem; }
  .page-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 940px) {
  .service-grid-six { grid-template-columns: 1fr; }
  .site-nav a[aria-current="page"]:not(.nav-cta) { box-shadow: none; padding-bottom: .65rem; }
}
@media (max-width: 640px) {
  .page-grid, .policy-grid { grid-template-columns: 1fr; }
  .page-card { min-height: 240px; }
}

/* Launch-ready additions */
.launch-preview-card {
  min-height: 150px;
  padding: 1.4rem;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(12,38,62,.92), rgba(4,18,30,.96));
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.launch-preview-card h3 { margin: 0 0 .55rem; }
.launch-preview-card p { margin: 0; color: var(--muted); }
.contact-actions-panel { align-content: center; gap: 1rem; }
.contact-actions-panel h3, .contact-actions-panel p { grid-column: 1 / -1; margin: 0; }
.contact-actions-panel .button { text-align: center; }
.portfolio-coming-card strong { color: var(--accent); font-size: .9rem; text-transform: uppercase; letter-spacing: .08em; }
@media (max-width: 760px) {
  .contact-actions-panel .button { grid-column: 1 / -1; }
}

/* Email-only project inquiry form */
.honeypot-field { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important; }
.quote-form button { border: 0; cursor: pointer; justify-content: center; }
.quote-form textarea { resize: vertical; min-height: 150px; }
.thank-you-hero { min-height: 650px; }
.thank-you-nav { margin-left: auto; }

/* Professional V1 home-page additions */
.why-section { border-top: 1px solid var(--line); }
.home-service-area { border-top: 1px solid var(--line); }
.faq-section { border-top: 1px solid var(--line); }
.faq-section .policy-grid article { min-height: 190px; }
