@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@400;500;600;700&display=swap');

:root {
  --signal-amber: #D48500;
  --burnt-copper: #8B4500;
  --carbon-black: #1A1A1A;
  --bond-grey: #292929;
  --sheet-white: #FCFAF6;
  --primer-mist: #F2F0EA;
  --substrate-stone: #E6E4DE;
  --amber-glow: rgba(212, 133, 0, 0.18);
  --amber-shadow: rgba(212, 133, 0, 0.24);
}

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

strong, p {
  color: inherit;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Code Pro', monospace;
  background: var(--sheet-white);
  color: var(--bond-grey);
  line-height: 1.6;
  font-size: 15px;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at 15% 25%, rgba(212, 133, 0, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 75%, rgba(139, 69, 0, 0.05) 0%, transparent 45%),
    radial-gradient(ellipse at 45% 85%, rgba(212, 133, 0, 0.04) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 15%, rgba(139, 69, 0, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 25% 65%, rgba(212, 133, 0, 0.05) 0%, transparent 48%);
  pointer-events: none;
  z-index: -1;
  animation: meshBreathing 18s ease-in-out infinite;
}

@keyframes meshBreathing {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.02); }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(252, 250, 247, 0.97);
  border-bottom: 1px solid var(--signal-amber);
  transition: padding 0.2s ease-out;
  padding: 30px 16px;
}

.header-container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px 32px;
  padding: 0 28px 0 56px;
  align-items: start;
  justify-content: space-between;
}

.brand-block {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  position: absolute;
  left: 28px;
  top: 18px;
}

.brand-icon {
  width: 18px;
  height: 18px;
  color: var(--signal-amber);
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.domain-name {
  font-family: 'Source Code Pro', monospace;
  font-weight: 700;
  font-size: 9px;
  color: var(--carbon-black);
  letter-spacing: 0.12em;
  line-height: 1.2;
}

.company-name {
  font-family: 'Source Code Pro', monospace;
  font-weight: 500;
  font-size: 6px;
  color: var(--bond-grey);
  letter-spacing: 0.04em;
  line-height: 1.2;
}

nav {
  display: flex;
  align-items: center;
  gap: 16px;
  position: absolute;
  right: 56px;
  top: 18px;
}

nav a {
  font-family: 'Source Code Pro', monospace;
  font-weight: 500;
  font-size: 10px;
  color: var(--bond-grey);
  text-decoration: none;
  padding: 6px 8px;
  transition: color 0.18s ease;
  white-space: nowrap;
}

nav a:hover {
  color: var(--signal-amber);
}

.cta-button {
  margin-left: auto;
  padding: 8px 16px;
  background: linear-gradient(135deg, var(--signal-amber), var(--burnt-copper));
  color: white;
  font-family: 'Source Code Pro', monospace;
  font-weight: 500;
  font-size: 8px;
  border: none;
  cursor: pointer;
  box-shadow: 0 3px 8px rgba(212, 133, 0, 0.20);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.cta-button:hover {
  transform: scale(1.02);
  box-shadow: 0 5px 12px rgba(212, 133, 0, 0.28);
}

.mobile-menu-toggle {
  display: none;
  width: 32px;
  height: 32px;
  position: fixed;
  top: 8px;
  right: 14px;
  z-index: 10000;
  background: none;
  border: 1px solid var(--signal-amber);
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--carbon-black);
  margin: 4px 0;
  transition: all 0.2s ease;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(252, 250, 247, 0.98);
  z-index: 10001;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  font-family: 'Source Code Pro', monospace;
  font-weight: 700;
  font-size: 13px;
  color: var(--carbon-black);
  text-decoration: none;
  padding: 12px 24px;
  transition: color 0.18s ease;
}

.mobile-menu a:hover {
  color: var(--signal-amber);
}

.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  color: var(--carbon-black);
  cursor: pointer;
  background: none;
  border: none;
}

main {
  padding-top: 68px;
}

section {
  padding: 80px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.18fr 1fr;
  gap: 0;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0;
}

.hero-content {
  padding-right: 96px;
  max-width: 100%;
}

.hero h1 {
  font-family: 'Source Code Pro', monospace;
  font-weight: 700;
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  color: var(--carbon-black);
  line-height: 0.58;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero h1 span {
  display: inline-block;
  animation: cascadeWord 0.6s ease-out forwards;
  opacity: 0;
}

@keyframes cascadeWord {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
  font-family: 'Source Code Pro', monospace;
  font-size: 15px;
  color: var(--bond-grey);
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 32px;
  animation: fadeUp 0.8s ease-out 0.4s forwards;
  opacity: 0;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 26px 52px;
  background: linear-gradient(135deg, var(--signal-amber), var(--burnt-copper));
  color: white;
  font-family: 'Source Code Pro', monospace;
  font-weight: 600;
  font-size: 12px;
  text-decoration: none;
  box-shadow: 0 26px 88px var(--amber-shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  white-space: nowrap;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 32px 96px var(--amber-shadow);
}

.hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 24px;
  font-family: 'Source Code Pro', monospace;
  font-weight: 700;
  font-size: 11px;
  color: var(--carbon-black);
}

.hero-visual {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at 30% 40%, rgba(212, 133, 0, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 60%, rgba(139, 69, 0, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 50%, rgba(212, 133, 0, 0.06) 0%, transparent 50%);
  animation: meshBreathing 16s ease-in-out infinite;
}

.hero-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 80px);
  height: calc(100% - 80px);
  border: 1px solid var(--signal-amber);
  pointer-events: none;
}

.hero-frame::before,
.hero-frame::after {
  content: '';
  position: absolute;
  background: var(--signal-amber);
}

.hero-frame::before {
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--signal-amber) 0, var(--signal-amber) 20px, transparent 20px, transparent 40px);
}

.hero-frame::after {
  top: 0;
  left: 0;
  bottom: 0;
  width: 1px;
  background: repeating-linear-gradient(180deg, var(--signal-amber) 0, var(--signal-amber) 20px, transparent 20px, transparent 40px);
}

.hero-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bounce 2s infinite;
}

.scroll-indicator span {
  font-size: 10px;
  color: var(--bond-grey);
  letter-spacing: 0.1em;
}

.scroll-indicator::before {
  content: '';
  width: 1px;
  height: 40px;
  background: var(--signal-amber);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.section-title {
  font-family: 'Source Code Pro', monospace;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--carbon-black);
  line-height: 1.1;
  margin-bottom: 48px;
  letter-spacing: -0.01em;
}

.services-section {
  background: var(--primer-mist);
  padding: 100px 0;
}

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

.service-card {
  background: var(--sheet-white);
  border: 1px solid rgba(212, 133, 0, 0.14);
  padding: 24px 20px;
  position: relative;
  transition: transform 0.22s ease, box-shadow 0.22s ease, z-index 0.22s ease;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--amber-glow);
  z-index: 96;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--signal-amber);
}

.service-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
}

.service-card h3 {
  font-family: 'Source Code Pro', monospace;
  font-weight: 700;
  font-size: 13px;
  color: var(--carbon-black);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.service-card p {
  font-size: 12px;
  color: var(--bond-grey);
  line-height: 1.5;
  margin-bottom: 16px;
}

.service-price {
  font-family: 'Source Code Pro', monospace;
  font-weight: 700;
  font-size: 14px;
  color: var(--signal-amber);
}

.service-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 11px;
  color: var(--signal-amber);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.18s ease;
}

.service-link:hover {
  color: var(--burnt-copper);
}

.service-card.animate,
.stacking-card.animate,
.team-item.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.service-card.animate.visible,
.stacking-card.animate.visible,
.team-item.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-section {
  padding: 100px 0;
  background: var(--sheet-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-content h2 {
  font-family: 'Source Code Pro', monospace;
  font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--carbon-black);
  line-height: 1.2;
  margin-bottom: 24px;
}

.about-content p {
  font-size: 15px;
  color: var(--bond-grey);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.stat-item {
  border: 1px solid rgba(212, 133, 0, 0.14);
  padding: 20px;
}

.stat-number {
  font-family: 'Source Code Pro', monospace;
  font-weight: 700;
  font-size: 28px;
  color: var(--signal-amber);
}

.stat-label {
  font-size: 12px;
  color: var(--bond-grey);
  margin-top: 4px;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border: 1px solid var(--signal-amber);
}

.process-section {
  padding: 100px 0;
  background: var(--substrate-stone);
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
}

.process-steps {
  position: sticky;
  top: 100px;
}

.process-step {
  padding: 20px 0;
  border-bottom: 1px solid rgba(212, 133, 0, 0.14);
  cursor: pointer;
  transition: all 0.22s ease;
}

.process-step:hover {
  padding-left: 12px;
}

.process-step.active {
  padding-left: 16px;
  border-left: 3px solid var(--signal-amber);
}

.step-number {
  font-family: 'Source Code Pro', monospace;
  font-weight: 700;
  font-size: 11px;
  color: var(--signal-amber);
  margin-bottom: 4px;
}

.step-title {
  font-family: 'Source Code Pro', monospace;
  font-weight: 600;
  font-size: 14px;
  color: var(--carbon-black);
}

.process-details {
  padding: 40px;
  background: var(--sheet-white);
  border: 1px solid rgba(212, 133, 0, 0.14);
}

.process-detail {
  display: none;
}

.process-detail.active {
  display: block;
}

.process-detail h3 {
  font-family: 'Source Code Pro', monospace;
  font-weight: 700;
  font-size: 20px;
  color: var(--carbon-black);
  margin-bottom: 16px;
}

.process-detail p {
  font-size: 14px;
  color: var(--bond-grey);
  line-height: 1.7;
  margin-bottom: 16px;
}

.marquee-section {
  padding: 40px 0;
  background: var(--carbon-black);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 56px;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  font-family: 'Source Code Pro', monospace;
  font-weight: 500;
  font-size: 13px;
  color: var(--sheet-white);
}

.marquee-item span:first-child {
  font-size: 18px;
}

.marquee-separator {
  color: var(--signal-amber);
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.advantages-section {
  padding: 100px 0;
  background: var(--primer-mist);
}

.stacking-cards {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
}

.stacking-card {
  background: var(--sheet-white);
  border: 1px solid rgba(212, 133, 0, 0.14);
  padding: 32px 40px;
  position: relative;
  transition: transform 0.22s ease, box-shadow 0.22s ease, z-index 0.22s ease;
}

.stacking-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 48px var(--amber-glow);
  z-index: 96 !important;
}

.stacking-card:nth-child(1) { z-index: 72; }
.stacking-card:nth-child(2) { z-index: 80; }
.stacking-card:nth-child(3) { z-index: 88; }
.stacking-card:nth-child(4) { z-index: 96; }
.stacking-card:nth-child(5) { z-index: 104; }
.stacking-card:nth-child(6) { z-index: 112; }

.stacking-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--signal-amber);
}

.card-icon {
  font-size: 24px;
  margin-bottom: 16px;
  display: block;
}

.stacking-card h3 {
  font-family: 'Source Code Pro', monospace;
  font-weight: 700;
  font-size: 16px;
  color: var(--carbon-black);
  margin-bottom: 8px;
}

.stacking-card p {
  font-size: 13px;
  color: var(--bond-grey);
  line-height: 1.6;
}

.team-section {
  padding: 100px 0;
  background: var(--sheet-white);
}

.team-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.team-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(212, 133, 0, 0.14);
  cursor: pointer;
  transition: padding-left 0.22s ease;
}

.team-item:hover {
  padding-left: 16px;
}

.team-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.team-role {
  font-family: 'Source Code Pro', monospace;
  font-weight: 700;
  font-size: 11px;
  color: var(--signal-amber);
}

.team-name {
  font-family: 'Source Code Pro', monospace;
  font-weight: 600;
  font-size: 15px;
  color: var(--carbon-black);
}

.team-desc {
  font-size: 13px;
  color: var(--bond-grey);
}

.team-photo {
  width: 80px;
  height: 80px;
  border: 1px solid var(--signal-amber);
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.22s ease;
}

.team-item:hover .team-photo img {
  transform: scale(1.1);
}

.faq-section {
  padding: 100px 0;
  background: var(--substrate-stone);
}

.faq-container {
  max-width: 960px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(212, 133, 0, 0.14);
  background: var(--sheet-white);
  margin-bottom: 8px;
  transition: box-shadow 0.22s ease, z-index 0.22s ease;
  position: relative;
}

.faq-item:hover {
  z-index: 96;
  box-shadow: 0 8px 24px var(--amber-glow);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  cursor: pointer;
  transition: padding-left 0.22s ease;
}

.faq-item:hover .faq-question {
  padding-left: 40px;
}

.faq-question::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--signal-amber);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.faq-item:hover .faq-question::before,
.faq-item.active .faq-question::before {
  opacity: 1;
}

.faq-question h3 {
  font-family: 'Source Code Pro', monospace;
  font-weight: 700;
  font-size: 13px;
  color: var(--carbon-black);
  flex: 1;
  padding-right: 16px;
}

.faq-icon {
  font-size: 18px;
  color: var(--signal-amber);
  transition: transform 0.22s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.22s ease-out, padding 0.22s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 32px 24px;
  font-size: 13px;
  color: var(--bond-grey);
  line-height: 1.7;
}

.reviews-section {
  padding: 100px 0;
  background: var(--primer-mist);
}

.reviews-carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border: 1px solid var(--signal-amber);
  background: var(--sheet-white);
  color: var(--signal-amber);
  font-size: 20px;
  cursor: pointer;
  transition: all 0.22s ease;
  flex-shrink: 0;
}

.carousel-btn:hover {
  background: var(--signal-amber);
  color: white;
}

.reviews-carousel {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
  padding: 40px 0;
}

.review-card {
  background: var(--sheet-white);
  border: 1px solid rgba(212, 133, 0, 0.14);
  padding: 32px;
  width: 320px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--signal-amber);
}

.review-card:hover {
  box-shadow: 0 20px 60px var(--amber-glow);
}

.review-photo {
  width: 64px;
  height: 64px;
  border: 1px solid var(--signal-amber);
  margin-bottom: 20px;
  overflow: hidden;
}

.review-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-text {
  font-size: 14px;
  color: var(--bond-grey);
  line-height: 1.7;
  margin-bottom: 16px;
}

.review-author {
  font-family: 'Source Code Pro', monospace;
  font-weight: 700;
  font-size: 12px;
  color: var(--carbon-black);
}

.review-rating {
  color: var(--signal-amber);
  font-size: 14px;
  margin-top: 4px;
}

.contact-section {
  padding: 100px 0;
  background: var(--sheet-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-block {
  border: 1px solid rgba(212, 133, 0, 0.14);
  padding: 24px;
  position: relative;
}

.contact-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--signal-amber);
}

.contact-block h4 {
  font-family: 'Source Code Pro', monospace;
  font-weight: 700;
  font-size: 11px;
  color: var(--signal-amber);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-block p {
  font-size: 14px;
  color: var(--bond-grey);
  line-height: 1.6;
}

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

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

.form-group label {
  font-family: 'Source Code Pro', monospace;
  font-weight: 600;
  font-size: 11px;
  color: var(--carbon-black);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 14px 16px;
  border: 1px solid rgba(212, 133, 0, 0.14);
  background: var(--sheet-white);
  font-family: 'Source Code Pro', monospace;
  font-size: 13px;
  color: var(--bond-grey);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--signal-amber);
  box-shadow: 0 0 0 3px var(--amber-glow);
}

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

.form-submit {
  padding: 18px 32px;
  background: linear-gradient(135deg, var(--signal-amber), var(--burnt-copper));
  color: white;
  font-family: 'Source Code Pro', monospace;
  font-weight: 600;
  font-size: 12px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px var(--amber-shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px var(--amber-shadow);
}

footer {
  background: var(--substrate-stone);
  border-top: 2px solid var(--signal-amber);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo svg {
  width: 18px;
  height: 18px;
  color: var(--signal-amber);
}

.footer-logo span {
  font-family: 'Source Code Pro', monospace;
  font-weight: 700;
  font-size: 12px;
  color: var(--carbon-black);
}

.footer-desc {
  font-size: 12px;
  color: var(--bond-grey);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links h4 {
  font-family: 'Source Code Pro', monospace;
  font-weight: 700;
  font-size: 11px;
  color: var(--carbon-black);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links a {
  font-size: 12px;
  color: var(--bond-grey);
  text-decoration: none;
  transition: color 0.18s ease;
}

.footer-links a:hover {
  color: var(--signal-amber);
}

.footer-contact p {
  font-size: 12px;
  color: var(--bond-grey);
  line-height: 1.8;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(212, 133, 0, 0.14);
}

.footer-bottom p {
  font-family: 'Source Code Pro', monospace;
  font-weight: 700;
  font-size: 10px;
  color: var(--bond-grey);
}

.special-text {
  font-size: 11px;
  color: var(--signal-amber);
  margin-top: 8px;
  font-style: italic;
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: var(--sheet-white);
  border: 1px solid var(--signal-amber);
  padding: 24px;
  max-width: 420px;
  z-index: 9000;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.cookie-banner h4 {
  font-family: 'Source Code Pro', monospace;
  font-weight: 700;
  font-size: 12px;
  color: var(--carbon-black);
  margin-bottom: 12px;
}

.cookie-banner p {
  font-size: 12px;
  color: var(--bond-grey);
  line-height: 1.6;
  margin-bottom: 16px;
}

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

.cookie-btn {
  padding: 10px 20px;
  font-family: 'Source Code Pro', monospace;
  font-weight: 600;
  font-size: 10px;
  cursor: pointer;
  border: none;
  transition: all 0.18s ease;
}

.cookie-btn.accept {
  background: var(--signal-amber);
  color: white;
}

.cookie-btn.accept:hover {
  background: var(--burnt-copper);
}

.cookie-btn.decline {
  background: transparent;
  color: var(--bond-grey);
  border: 1px solid var(--bond-grey);
}

.cookie-btn.decline:hover {
  border-color: var(--signal-amber);
  color: var(--signal-amber);
}

.cookie-category {
  font-size: 11px;
  color: var(--bond-grey);
  margin: 4px 0;
  padding-left: 12px;
  border-left: 2px solid var(--signal-amber);
}

.hero-inner {
  min-height: 52vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--sheet-white);
  overflow: hidden;
}

.hero-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at 20% 30%, rgba(212, 133, 0, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(139, 69, 0, 0.06) 0%, transparent 45%);
  animation: meshBreathing 18s ease-in-out infinite;
}

.hero-inner h1 {
  font-family: 'Source Code Pro', monospace;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--carbon-black);
  line-height: 1.1;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 24px;
}

.thank-you-section {
  min-height: calc(100vh - 68px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}

.thank-you-section h1 {
  font-family: 'Source Code Pro', monospace;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--carbon-black);
  margin-bottom: 24px;
}

.thank-you-section p {
  font-size: 15px;
  color: var(--bond-grey);
  max-width: 480px;
  margin-bottom: 32px;
}

.thank-you-section a {
  display: inline-block;
  padding: 16px 32px;
  background: var(--signal-amber);
  color: white;
  text-decoration: none;
  font-family: 'Source Code Pro', monospace;
  font-weight: 600;
  font-size: 12px;
  transition: background 0.18s ease;
}

.thank-you-section a:hover {
  background: var(--burnt-copper);
}

.legal-section {
  padding: 80px 0;
  background: var(--sheet-white);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-family: 'Source Code Pro', monospace;
  font-weight: 700;
  font-size: 18px;
  color: var(--carbon-black);
  margin: 32px 0 16px;
}

.legal-content p {
  font-size: 14px;
  color: var(--bond-grey);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul {
  margin: 16px 0 16px 24px;
}

.legal-content li {
  font-size: 14px;
  color: var(--bond-grey);
  line-height: 1.8;
  margin-bottom: 8px;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 133, 0, 0.14);
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(6) {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(26,26,26,0.9));
  color: white;
  font-family: 'Source Code Pro', monospace;
  font-size: 11px;
}

.map-container {
  width: 100%;
  height: 400px;
  border: 1px solid rgba(212, 133, 0, 0.14);
  margin-top: 32px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.service-detail-section {
  padding: 80px 0;
  background: var(--sheet-white);
}

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

.service-detail-image {
  position: relative;
}

.service-detail-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border: 1px solid var(--signal-amber);
}

.service-detail-content h2 {
  font-family: 'Source Code Pro', monospace;
  font-weight: 700;
  font-size: 24px;
  color: var(--carbon-black);
  margin-bottom: 16px;
}

.service-detail-content p {
  font-size: 14px;
  color: var(--bond-grey);
  line-height: 1.8;
  margin-bottom: 24px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--bond-grey);
}

.service-feature::before {
  content: '✓';
  color: var(--signal-amber);
  font-weight: 700;
}

.service-price-tag {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 24px;
}

.service-price-tag .price {
  font-family: 'Source Code Pro', monospace;
  font-weight: 700;
  font-size: 28px;
  color: var(--signal-amber);
}

.service-price-tag .unit {
  font-size: 13px;
  color: var(--bond-grey);
}

.service-cta {
  display: inline-block;
  padding: 16px 32px;
  background: var(--signal-amber);
  color: white;
  text-decoration: none;
  font-family: 'Source Code Pro', monospace;
  font-weight: 600;
  font-size: 12px;
  transition: background 0.18s ease;
}

.service-cta:hover {
  background: var(--burnt-copper);
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content {
    padding: 80px 24px 48px;
    text-align: center;
  }

  .hero-subtitle {
    max-width: 100%;
  }

  .hero-visual {
    height: 50vh;
  }

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

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

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

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

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

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

  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .stacking-cards {
    padding: 0 24px;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 0 16px;
  }

  .hero-content {
    padding-right: 24px;
    padding-left: 24px;
    padding-top: 60px;
  }

  .hero-cta {
    padding: 18px 32px;
    white-space: normal;
    text-align: center;
  }

  .hero-secondary {
    display: block;
    margin-left: 0;
    margin-top: 16px;
  }

  nav {
    display: none;
  }

  .cta-button {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

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

  .about-stats {
    grid-template-columns: 1fr;
  }

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

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

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6) {
    grid-column: span 1;
  }

  .reviews-carousel {
    flex-wrap: wrap;
  }

  .reviews-carousel-wrapper {
    flex-wrap: wrap;
    gap: 16px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .review-card {
    width: 100%;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
    max-width: none;
  }

  .scroll-indicator {
    display: none;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card::before {
    width: 100%;
    height: 3px;
  }

  .cookie-banner {
    left: 8px;
    right: 8px;
    bottom: 8px;
  }

  .hero-cta {
    padding: 14px 24px;
    font-size: 11px;
  }
}