/* ============================
   CSS Custom Properties
   ============================ */
:root {
  --color-bg: #0a0e1a;
  --color-bg-2: #131929;
  --color-bg-3: #1c2535;
  --color-gold: #c9a84c;
  --color-gold-light: #e8c870;
  --color-gold-dark: #8a6a20;
  --color-white: #ffffff;
  --color-gray-100: #f5f5f5;
  --color-gray-200: #e8e8e8;
  --color-gray-400: #aaaaaa;
  --color-gray-600: #666666;
  --color-text: #1a1a2e;

  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Noto Sans JP', sans-serif;

  --space-xl: 6rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --transition: all 0.3s ease;
  --transition-slow: all 0.6s ease;

  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
  --shadow-gold: 0 8px 32px rgba(201, 168, 76, 0.2);

  --max-width: 1200px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ============================
   Layout Utilities
   ============================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: var(--space-xl) 0;
}

/* ============================
   Typography
   ============================ */
.section-label {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

.section-desc {
  color: var(--color-gray-600);
  max-width: 600px;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .section-desc {
  margin: 0 auto;
}

/* ============================
   Buttons
   ============================ */
.btn {
  display: inline-block;
  padding: 0.875rem 2.5rem;
  border-radius: 2px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: var(--transition);
  cursor: pointer;
}

.btn-gold {
  background: var(--color-gold);
  color: var(--color-bg);
  font-weight: 700;
}

.btn-gold:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: var(--color-white);
}

.btn-outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  text-align: center;
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* ============================
   Fade-in Animation
   ============================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.services-grid .service-card:nth-child(2) { transition-delay: 0.1s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.2s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.3s; }

.works-grid .work-item:nth-child(2) { transition-delay: 0.1s; }
.works-grid .work-item:nth-child(3) { transition-delay: 0.2s; }
.works-grid .work-item:nth-child(4) { transition-delay: 0.1s; }
.works-grid .work-item:nth-child(5) { transition-delay: 0.2s; }
.works-grid .work-item:nth-child(6) { transition-delay: 0.3s; }

.testimonials-grid .testimonial-card:nth-child(2) { transition-delay: 0.15s; }
.testimonials-grid .testimonial-card:nth-child(3) { transition-delay: 0.3s; }

/* ============================
   HEADER
   ============================ */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

#header.scrolled {
  background: rgba(10, 14, 26, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(201, 168, 76, 0.2);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-white);
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--color-gold);
  color: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--color-white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  transition: var(--transition);
  font-weight: 400;
}

.nav-links a:hover {
  color: var(--color-gold);
}

.nav-links .nav-cta {
  background: var(--color-gold);
  color: var(--color-bg);
  padding: 0.5rem 1.5rem;
  font-weight: 700;
  border-radius: 2px;
}

.nav-links .nav-cta:hover {
  background: var(--color-gold-light);
  color: var(--color-bg);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: var(--transition);
  transform-origin: center;
}

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

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

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

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(10, 14, 26, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.5rem 0 2rem;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}

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

.mobile-menu li a {
  display: block;
  padding: 0.875rem 2rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  transition: var(--transition);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu li a:hover {
  color: var(--color-gold);
  padding-left: 2.5rem;
}

/* ============================
   HERO
   ============================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--color-bg);
  overflow: hidden;
}

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

.geo {
  position: absolute;
  border-radius: 50%;
}

.geo-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.07) 0%, transparent 70%);
  top: -250px;
  right: -150px;
  animation: geoFloat 28s infinite ease-in-out;
}

.geo-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(29, 53, 120, 0.45) 0%, transparent 70%);
  bottom: -150px;
  left: -150px;
  animation: geoFloat 22s infinite ease-in-out;
  animation-delay: -11s;
}

.geo-3 {
  width: 2px;
  height: 320px;
  background: linear-gradient(to bottom, transparent, rgba(201, 168, 76, 0.25), transparent);
  top: 8%;
  right: 22%;
  border-radius: 0;
  animation: geoFloat 18s infinite ease-in-out;
  animation-delay: -6s;
}

.geo-4 {
  width: 220px;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.18), transparent);
  top: 38%;
  right: 8%;
  border-radius: 0;
  animation: geoFloat 20s infinite ease-in-out;
  animation-delay: -9s;
}

.geo-5 {
  width: 340px;
  height: 340px;
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: 50%;
  top: 50%;
  right: 12%;
  transform: translateY(-50%);
  animation: geoRotate 35s infinite linear;
}

@keyframes geoFloat {
  0%, 100% { transform: translateY(0) translateX(0); }
  33% { transform: translateY(-20px) translateX(10px); }
  66% { transform: translateY(10px) translateX(-15px); }
}

@keyframes geoRotate {
  from { transform: translateY(-50%) rotate(0deg); }
  to { transform: translateY(-50%) rotate(360deg); }
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: 80px;
}

.hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 400;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: heroFadeUp 1s ease 0.3s forwards;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--color-white);
  margin-bottom: 2rem;
  opacity: 0;
  animation: heroFadeUp 1s ease 0.5s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--color-gold);
}

.hero-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  line-height: 2;
  max-width: 540px;
  margin-bottom: 3rem;
  opacity: 0;
  animation: heroFadeUp 1s ease 0.7s forwards;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeUp 1s ease 0.9s forwards;
}

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

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: heroFadeUp 1s ease 1.2s forwards;
}

.hero-scroll span {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(201, 168, 76, 0.6), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 1; }
}

/* ============================
   SERVICES
   ============================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

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

.service-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 1.5rem;
  color: var(--color-gold);
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  font-size: 0.975rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--color-gray-600);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.service-link {
  font-size: 0.8rem;
  color: var(--color-gold-dark);
  font-weight: 600;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.service-link span {
  transition: transform 0.3s ease;
  display: inline-block;
}

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

.service-link:hover span {
  transform: translateX(5px);
}

/* ============================
   ABOUT
   ============================ */
.about-section {
  background: var(--color-bg);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.about-section::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  background: linear-gradient(135deg, var(--color-bg-2), var(--color-bg-3));
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-text .section-title {
  color: var(--color-white);
}

.about-text p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.95;
  margin-bottom: 1rem;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat-item {
  padding: 2rem 1.5rem;
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.025);
  text-align: center;
  transition: var(--transition);
}

.stat-item:hover {
  background: rgba(201, 168, 76, 0.05);
  border-color: rgba(201, 168, 76, 0.4);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 500;
  color: var(--color-gold);
  line-height: 1;
  display: inline-block;
}

.stat-unit {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-gold);
  display: inline-block;
  margin-left: 2px;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}

/* ============================
   WORKS
   ============================ */
.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.work-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.work-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.work-thumb-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transition: opacity 0.4s ease;
}

.work-icon-bg {
  opacity: 0.85;
}

.work-thumb-label {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.15em;
}

.work-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 26, 0.93);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.work-item:hover .work-overlay {
  opacity: 1;
}

.work-item:hover .work-thumb-content {
  opacity: 0;
}

.work-cat {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.work-overlay h3 {
  font-size: 1.05rem;
  color: var(--color-white);
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.work-overlay p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
}

/* ============================
   TESTIMONIALS
   ============================ */
.testimonials-section {
  background: var(--color-gray-100);
}

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

.testimonial-card {
  background: var(--color-white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.quote-mark {
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--color-gold);
  opacity: 0.25;
  line-height: 0.8;
  margin-bottom: 1rem;
  font-weight: 600;
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--color-gray-600);
  line-height: 1.95;
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-white);
  font-weight: 600;
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
  font-size: 0.9rem;
}

.author-role {
  font-size: 0.78rem;
  color: var(--color-gray-400);
  margin-top: 0.2rem;
}

/* ============================
   CONTACT
   ============================ */
.contact-section {
  background: var(--color-bg);
  color: var(--color-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}

.contact-info .section-title {
  color: var(--color-white);
}

.contact-info > p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.95;
  margin-bottom: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  flex-shrink: 0;
}

.detail-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.contact-detail-item > div:last-child {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  line-height: 1.65;
}

.contact-form-wrap {
  background: var(--color-bg-2);
  padding: 3rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201, 168, 76, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.5rem;
}

.required {
  color: var(--color-gold);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: var(--color-white);
  font-size: 0.9rem;
  transition: var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.22);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(201, 168, 76, 0.6);
  background: rgba(201, 168, 76, 0.04);
}

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

.form-group select option {
  background: var(--color-bg-2);
  color: var(--color-white);
}

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

/* ============================
   FOOTER
   ============================ */
footer {
  background: #060a14;
  color: rgba(255, 255, 255, 0.5);
  padding: 4rem 0 2rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 1rem;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.footer-link-group h4 {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.footer-link-group li {
  margin-bottom: 0.625rem;
}

.footer-link-group a {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.4);
  transition: var(--transition);
}

.footer-link-group a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.28);
}

.footer-policy {
  display: flex;
  gap: 1.5rem;
}

.footer-policy a {
  color: rgba(255, 255, 255, 0.28);
  transition: var(--transition);
}

.footer-policy a:hover {
  color: rgba(255, 255, 255, 0.6);
}

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

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

  .about-grid {
    gap: 3rem;
  }

  .about-section::after {
    display: none;
  }

  .contact-grid {
    gap: 3rem;
  }
}

/* ============================
   RESPONSIVE — Mobile
   ============================ */
@media (max-width: 768px) {
  :root {
    --space-xl: 4rem;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-desc br {
    display: none;
  }

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

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

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

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

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

  .contact-form-wrap {
    padding: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

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

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

  .btn {
    text-align: center;
  }

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