/* ========== RESET & BASE ========== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #0A1628;
  background: #FAF6F0;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul { list-style: none; }

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

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 150, 12, 0.15);
  transition: transform 0.4s ease, background 0.3s ease;
}

.header--hidden {
  transform: translateY(-100%);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.logo-mark {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #C8960C;
  letter-spacing: -0.02em;
}

.logo-wordmark {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: #FAF6F0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(250, 246, 240, 0.7);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #C8960C;
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #FAF6F0;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link--cta {
  background: #C8960C;
  color: #0A1628 !important;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
}

.nav-link--cta::after { display: none; }

.nav-link--cta:hover {
  background: #D4A843;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #FAF6F0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ========== MOBILE MENU ========== */
.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: #0A1628;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 100%;
  padding: 24px;
}

.mobile-menu-link {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  color: rgba(250, 246, 240, 0.8);
  padding: 12px 0;
  transition: color 0.3s ease;
}

.mobile-menu-link:hover {
  color: #C8960C;
}

.mobile-menu-cta {
  margin-top: 16px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #0A1628 !important;
  background: #C8960C;
  padding: 14px 32px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, 0.92) 0%,
    rgba(15, 33, 64, 0.85) 50%,
    rgba(27, 58, 107, 0.75) 100%
  );
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(200, 150, 12, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 120px;
  width: 100%;
}

.hero-accent {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.accent-line {
  width: 48px;
  height: 2px;
  background: #C8960C;
  flex-shrink: 0;
}

.hero-accent span {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #C8960C;
}

.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.75rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.08;
  color: #FAF6F0;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
  max-width: 800px;
}

.hero-headline em {
  font-style: italic;
  color: #C8960C;
}

.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  color: rgba(250, 246, 240, 0.7);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 64px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn--gold {
  background: #C8960C;
  color: #0A1628;
  border-color: #C8960C;
}

.btn--gold:hover {
  background: #D4A843;
  border-color: #D4A843;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 150, 12, 0.3);
}

.btn--outline {
  background: transparent;
  color: #FAF6F0;
  border-color: rgba(250, 246, 240, 0.4);
}

.btn--outline:hover {
  border-color: #FAF6F0;
  background: rgba(250, 246, 240, 0.08);
  transform: translateY(-2px);
}

.btn--white {
  background: #FAF6F0;
  color: #0A1628;
  border-color: #FAF6F0;
}

.btn--white:hover {
  background: #F0E8D8;
  border-color: #F0E8D8;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn--large {
  padding: 18px 40px;
  font-size: 1rem;
}

.btn--full {
  width: 100%;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

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

.stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: #C8960C;
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250, 246, 240, 0.5);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(250, 246, 240, 0.2);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(250, 246, 240, 0.4);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: float 2s ease-in-out infinite;
}

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

/* ========== SECTION COMMON ========== */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C8960C;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: #0A1628;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.section-title .gold {
  color: #C8960C;
  font-style: italic;
}

.section-sub {
  font-size: 1.0625rem;
  color: #8A8278;
  max-width: 560px;
  line-height: 1.7;
  font-weight: 300;
}

/* ========== SERVICES ========== */
.services {
  padding: 120px 0;
  background: #FAF6F0;
}

.services .container {
  text-align: center;
}

.services .section-sub {
  margin: 0 auto 64px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.service-card {
  background: #fff;
  border: 1px solid rgba(10, 22, 40, 0.08);
  border-radius: 8px;
  padding: 40px 32px;
  text-align: left;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #C8960C;
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(10, 22, 40, 0.1);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 150, 12, 0.1);
  border-radius: 12px;
  margin-bottom: 24px;
  color: #C8960C;
  transition: background 0.3s ease;
}

.service-card:hover .service-icon {
  background: #C8960C;
  color: #0A1628;
}

.service-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0A1628;
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-card p {
  font-size: 0.9375rem;
  color: #8A8278;
  line-height: 1.7;
  font-weight: 300;
}

/* ========== ABOUT ========== */
.about {
  padding: 120px 0;
  background: #0A1628;
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 150, 12, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

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

.about-image {
  position: relative;
}

.about-img-wrapper {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-img-wrapper:hover .about-img {
  transform: scale(1.03);
}

.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: #C8960C;
  border-radius: 12px;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.badge-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #0A1628;
  line-height: 1;
}

.badge-text {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0A1628;
  text-align: center;
  line-height: 1.4;
}

.about-content .section-title {
  color: #FAF6F0;
}

.about-content > p {
  font-size: 1.0625rem;
  color: rgba(250, 246, 240, 0.65);
  line-height: 1.8;
  margin-bottom: 16px;
  font-weight: 300;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.value {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.value-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 150, 12, 0.15);
  border-radius: 8px;
  color: #C8960C;
}

.value-text {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(250, 246, 240, 0.85);
  padding-top: 6px;
  line-height: 1.4;
}

/* ========== PROCESS ========== */
.process {
  padding: 120px 0;
  background: #FAF6F0;
}

.process .container {
  text-align: center;
}

.process .section-sub {
  margin: 0 auto 64px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
  text-align: left;
}

.process-step {
  position: relative;
  padding: 48px 36px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid rgba(10, 22, 40, 0.06);
  transition: all 0.4s ease;
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(10, 22, 40, 0.08);
}

.step-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 4rem;
  font-weight: 700;
  color: rgba(200, 150, 12, 0.15);
  line-height: 1;
  margin-bottom: 20px;
}

.process-step h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0A1628;
  margin-bottom: 16px;
}

.process-step p {
  font-size: 0.9375rem;
  color: #8A8278;
  line-height: 1.7;
  font-weight: 300;
}

.process-step a {
  color: #C8960C;
  font-weight: 500;
  border-bottom: 1px solid rgba(200, 150, 12, 0.3);
  transition: border-color 0.3s ease;
}

.process-step a:hover {
  border-color: #C8960C;
}

/* ========== GALLERY ========== */
.gallery {
  padding: 120px 0;
  background: #fff;
}

.gallery .container {
  text-align: center;
}

.gallery .section-sub {
  margin: 0 auto 64px;
}

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

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3/2;
  cursor: pointer;
}

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

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

/* ========== CTA BANNER ========== */
.cta-banner {
  padding: 100px 0;
  background: #0A1628;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(200, 150, 12, 0.05) 1px, transparent 1px);
  background-size: 24px 24px;
}

.cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.cta-accent {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 120px;
  background: #C8960C;
  border-radius: 2px;
}

.cta-text h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 700;
  color: #FAF6F0;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.cta-text p {
  font-size: 1.0625rem;
  color: rgba(250, 246, 240, 0.6);
  line-height: 1.7;
  max-width: 480px;
  font-weight: 300;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

/* ========== CONTACT ========== */
.contact {
  padding: 120px 0;
  background: #FAF6F0;
}

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

.contact-info .section-title {
  margin-bottom: 20px;
}

.contact-info > p {
  font-size: 1.0625rem;
  color: #8A8278;
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 300;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 150, 12, 0.1);
  border-radius: 12px;
  color: #C8960C;
}

.contact-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8A8278;
  margin-bottom: 4px;
}

.contact-item a {
  font-size: 1rem;
  font-weight: 500;
  color: #0A1628;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #C8960C;
}

.contact-item span {
  font-size: 1rem;
  color: #0A1628;
  line-height: 1.6;
}

/* ========== FORM ========== */
.contact-form-wrap {
  background: #fff;
  border-radius: 12px;
  padding: 48px;
  box-shadow: 0 8px 32px rgba(10, 22, 40, 0.06);
  border: 1px solid rgba(10, 22, 40, 0.06);
}

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

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

.form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0A1628;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  color: #0A1628;
  background: #FAF6F0;
  border: 1px solid rgba(10, 22, 40, 0.12);
  border-radius: 6px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #8A8278;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #C8960C;
  box-shadow: 0 0 0 3px rgba(200, 150, 12, 0.12);
}

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

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(200, 150, 12, 0.1);
  border: 1px solid rgba(200, 150, 12, 0.3);
  border-radius: 8px;
  color: #0A1628;
  font-weight: 500;
  font-size: 0.9375rem;
}

.form-success.show {
  display: flex;
}

.form-success svg {
  color: #C8960C;
  flex-shrink: 0;
}

/* ========== FOOTER ========== */
.footer {
  background: #070F1C;
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(250, 246, 240, 0.08);
}

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.9375rem;
  color: rgba(250, 246, 240, 0.5);
  line-height: 1.7;
  max-width: 280px;
  font-weight: 300;
}

.footer-links h4,
.footer-contact h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #FAF6F0;
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  font-size: 0.9375rem;
  color: rgba(250, 246, 240, 0.5);
  padding: 6px 0;
  transition: color 0.3s ease, padding-left 0.3s ease;
  font-weight: 300;
}

.footer-links a:hover {
  color: #C8960C;
  padding-left: 6px;
}

.footer-contact p {
  font-size: 0.9375rem;
  color: rgba(250, 246, 240, 0.5);
  line-height: 1.8;
  font-weight: 300;
}

.footer-contact a {
  color: rgba(250, 246, 240, 0.5);
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #C8960C;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(250, 246, 240, 0.3);
  font-weight: 300;
}

/* ========== ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    gap: 48px;
  }

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

  .process-step:last-child {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
  }

  .cta-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cta-accent {
    display: none;
  }

  .cta-actions {
    flex-direction: row;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }

  .hero-content {
    padding: 60px 24px 100px;
  }

  .hero-headline {
    font-size: clamp(2.25rem, 10vw, 3.5rem);
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .stat-divider { display: none; }

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

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

  .about-badge {
    bottom: -16px;
    right: 16px;
  }

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

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

  .process-step:last-child {
    max-width: none;
  }

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

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

  .contact-form-wrap {
    padding: 32px 24px;
  }

  .cta-actions {
    flex-direction: column;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

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