/* ======================================================
   T.A. Cuisine & Agencement — Luxury Design System
   ====================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@200;300;400;500&display=swap');

/* ── Palette ── */
:root {
  --bg: #F9F8F6;
  --bg-alt: #F2F0EC;
  --surface: #FFFFFF;
  --text: #1D1D1B;
  --text-sec: #6B6B68;
  --text-thin: #9A9A96;
  --accent: #B08D6E;
  --accent-h: #9A7758;
  --accent-l: rgba(176, 141, 110, .08);
  --border: rgba(0, 0, 0, .06);
  --card-sh: 0 2px 20px rgba(0, 0, 0, .04);
  --card-sh-h: 0 8px 40px rgba(0, 0, 0, .07);
  --r: 12px;
  --r-sm: 8px;
  --ff-h: 'Cormorant Garamond', Georgia, serif;
  --ff-b: 'Inter', system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(.25, .46, .45, .94);
}

[data-theme="dark"] {
  --bg: #0E0E0C;
  --bg-alt: #151513;
  --surface: #1A1A17;
  --text: #EDECEA;
  --text-sec: #A5A5A0;
  --text-thin: #5E5E5A;
  --accent: #C8A882;
  --accent-h: #D4B896;
  --accent-l: rgba(200, 168, 130, .08);
  --border: rgba(255, 255, 255, .05);
  --card-sh: 0 2px 20px rgba(0, 0, 0, .15);
  --card-sh-h: 0 8px 40px rgba(0, 0, 0, .25);
}

/* ── Reset ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--bg-alt);
}

body {
  font-family: var(--ff-b);
  font-weight: 300;
  color: var(--text);
  background: var(--bg);
  line-height: 1.8;
  letter-spacing: .01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background .4s var(--ease), color .4s var(--ease);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit
}

img {
  max-width: 100%;
  height: auto;
  display: block
}

ul,
ol {
  list-style: none
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none
}

::selection {
  background: var(--accent);
  color: #fff
}

::-webkit-scrollbar {
  width: 4px
}

::-webkit-scrollbar-track {
  background: transparent
}

::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 99px
}

/* ── Container ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px
}

/* ── Section Foundations ── */
.section-label {
  font-family: var(--ff-b);
  font-size: .65rem;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: var(--ff-h);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -.01em;
}

.section-title em {
  font-weight: 400;
  color: var(--accent);
}

.section-subtitle {
  font-size: .9rem;
  font-weight: 300;
  color: var(--text-sec);
  max-width: 520px;
  line-height: 1.9;
}

.section-header {
  margin-bottom: 60px;
}

.section-header.center {
  text-align: center;
}

.section-header.center .section-subtitle {
  margin: 0 auto;
}

/* ═══════════════════════════════════════
   HEADER
   ═══════════════════════════════════════ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: all .5s var(--ease);
}

.header.scrolled {
  padding: 14px 0;
  background: rgba(249, 248, 246, .92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

[data-theme="dark"] .header.scrolled {
  background: rgba(14, 14, 12, .92);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  height: 70px;
  width: auto;
  transition: opacity .3s
}

.logo-light {
  display: block
}

.logo-dark {
  display: none
}

[data-theme="dark"] .logo-light {
  display: none
}

[data-theme="dark"] .logo-dark {
  display: block
}

/* Hero override — white logo + text */
.header:not(.scrolled) .logo-light {
  display: none
}

.header:not(.scrolled) .logo-dark {
  display: block
}

.header:not(.scrolled) .nav-link {
  color: rgba(255, 255, 255, .55)
}

.header:not(.scrolled) .nav-link:hover,
.header:not(.scrolled) .nav-link.active {
  color: #fff
}

.header:not(.scrolled) .hamburger span {
  background: rgba(255, 255, 255, .8)
}

.header:not(.scrolled) .theme-toggle {
  color: rgba(255, 255, 255, .6);
  border-color: rgba(255, 255, 255, .12)
}

.header:not(.scrolled) .theme-toggle:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, .3)
}

/* Nav */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 36px
}

.nav-link {
  font-size: .78rem;
  font-weight: 300;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-sec);
  padding: 6px 0;
  position: relative;
  transition: color .35s var(--ease);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: all .35s var(--ease);
  transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text)
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px
}

/* Theme toggle */
.theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-sec);
  border: 1px solid var(--border);
  transition: all .35s var(--ease);
  font-size: .95rem;
}

.theme-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.theme-toggle .icon-sun {
  display: none
}

.theme-toggle .icon-moon {
  display: block
}

[data-theme="dark"] .theme-toggle .icon-sun {
  display: block
}

[data-theme="dark"] .theme-toggle .icon-moon {
  display: none
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  padding: 4px 0;
  cursor: pointer;
  z-index: 1010;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--text);
  border-radius: 99px;
  transition: all .4s var(--ease);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(8.5px)
}

.hamburger.active span:nth-child(2) {
  opacity: 0
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8.5px)
}

/* Mobile nav */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 75%;
  max-width: 320px;
  height: 100vh;
  height: 100dvh;
  background: var(--surface);
  border-left: 1px solid var(--border);
  padding: 110px 36px 40px;
  transition: right .5s var(--ease);
  z-index: 1005;
}

.mobile-nav-close {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-sec);
  font-size: 1.1rem;
  transition: all .3s var(--ease);
  cursor: pointer;
  background: none;
}

.mobile-nav-close:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.mobile-nav.open {
  right: 0
}

.mobile-nav .nav-link {
  display: block;
  font-size: .8rem;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.mobile-nav .nav-link::after {
  display: none
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .35);
  z-index: 1004;
  backdrop-filter: blur(4px);
}

.mobile-overlay.active {
  display: block
}

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.3);
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero .container {
  position: relative;
  z-index: 1
}

.hero-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 160px 0 120px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 99px;
  padding: 8px 22px;
  font-size: .6rem;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
}

.hero-badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .4;
    transform: scale(1.6)
  }
}

.hero-title {
  font-family: var(--ff-h);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -.02em;
}

.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
}

.hero-desc {
  font-size: .9rem;
  font-weight: 300;
  color: rgba(255, 255, 255, .5);
  line-height: 1.9;
  margin: 0 auto 40px;
  max-width: 460px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 99px;
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all .4s var(--ease);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-h);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(176, 141, 110, .25);
}

.btn-outline-white {
  color: rgba(255, 255, 255, .7);
  border: 1px solid rgba(255, 255, 255, .18);
}

.btn-outline-white:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, .4);
  background: rgba(255, 255, 255, .05);
}

.btn-outline {
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .3);
  font-size: .6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: drift 3s ease-in-out infinite;
}

.hero-scroll .line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, .3), transparent);
}

@keyframes drift {

  0%,
  100% {
    transform: translateX(-50%) translateY(0)
  }

  50% {
    transform: translateX(-50%) translateY(-8px)
  }
}

/* ═══════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════ */
.services {
  padding: 100px 0;
  background: var(--bg)
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}

.service-card {
  background: var(--surface);
  padding: 44px 32px;
  transition: all .4s var(--ease);
  position: relative;
}

.service-card:hover {
  background: var(--accent-l);
}

.service-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  color: var(--accent);
  transition: transform .4s var(--ease);
}

.service-card:hover .service-icon {
  transform: translateY(-3px);
}

.service-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1;
  fill: none;
}

.service-card h3 {
  font-family: var(--ff-h);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 10px;
  letter-spacing: -.01em;
}

.service-card p {
  font-size: .82rem;
  font-weight: 300;
  color: var(--text-sec);
  line-height: 1.8;
}

/* ═══════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════ */
.about {
  padding: 100px 0;
  background: var(--bg-alt)
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  position: relative
}

.about-img {
  border-radius: var(--r);
  overflow: hidden;
}

.about-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform .8s var(--ease);
}

.about-img:hover img {
  transform: scale(1.03)
}

.about-img-accent {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 140px;
  height: 140px;
  border: 1px solid var(--accent);
  border-radius: var(--r);
  z-index: -1;
  opacity: .15;
}

.about-text .section-subtitle {
  margin-bottom: 20px
}

.about-text p {
  color: var(--text-sec);
  font-size: .88rem;
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 16px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.stat {
  text-align: center;
  padding: 24px 12px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--surface);
  transition: all .35s var(--ease);
}

.stat:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--card-sh-h);
}

.stat-num {
  font-family: var(--ff-h);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-text {
  font-size: .65rem;
  font-weight: 400;
  color: var(--text-thin);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ═══════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════ */
.gallery {
  padding: 100px 0;
  background: var(--bg)
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  border-radius: var(--r);
  overflow: hidden;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease), filter .7s var(--ease);
}

.gallery-over {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .65) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .4s var(--ease);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(.8)
}

.gallery-item:hover .gallery-over {
  opacity: 1
}

.gallery-over h4 {
  font-family: var(--ff-h);
  font-size: 1.05rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 3px;
}

.gallery-over p {
  font-size: .7rem;
  font-weight: 300;
  color: rgba(255, 255, 255, .6);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════ */
.testimonials {
  padding: 100px 0;
  background: var(--bg-alt)
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 36px;
  transition: all .4s var(--ease);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-sh-h);
}

.testimonial-stars {
  color: var(--accent);
  font-size: .7rem;
  margin-bottom: 20px;
  letter-spacing: 4px;
}

.testimonial-card blockquote {
  font-family: var(--ff-h);
  font-size: 1rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border);
}

.testimonial-name {
  font-size: .82rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: .02em;
}

.testimonial-role {
  font-size: .7rem;
  font-weight: 300;
  color: var(--text-thin);
}

/* ═══════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════ */
.cta-banner {
  padding: 100px 0;
  background: var(--text);
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .cta-banner {
  background: #1A1917;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(176, 141, 110, .08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1
}

.cta-inner .section-label {
  color: var(--accent)
}

.cta-inner .section-title {
  color: #fff;
  margin-bottom: 12px
}

.cta-inner .section-subtitle {
  color: rgba(255, 255, 255, .4);
  margin: 0 auto 36px
}

/* ═══════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════ */
.contact {
  padding: 100px 0;
  background: var(--bg)
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 32px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  font-size: .9rem;
  transition: all .3s var(--ease);
}

.contact-info-item:hover .contact-icon {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.contact-info-item h4 {
  font-family: var(--ff-h);
  font-size: .95rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 3px;
}

.contact-info-item p {
  font-size: .82rem;
  font-weight: 300;
  color: var(--text-sec);
  line-height: 1.7;
}

.contact-info-item a {
  transition: color .3s;
}

.contact-info-item a:hover {
  color: var(--accent)
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.form-group {
  margin-bottom: 18px
}

.form-group label {
  display: block;
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-sec);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 18px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-b);
  font-size: .85rem;
  font-weight: 300;
  transition: all .3s var(--ease);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-l);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-thin);
  font-weight: 300
}

.contact-form .btn {
  width: 100%;
  justify-content: center
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 60px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-desc {
  font-size: .82rem;
  font-weight: 300;
  color: var(--text-sec);
  line-height: 1.8;
  margin-top: 18px;
  max-width: 300px;
}

.footer-logo {
  height: 50px;
  width: auto
}

.footer-col h4 {
  font-family: var(--ff-h);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 18px;
}

.footer-links li {
  margin-bottom: 10px
}

.footer-links a {
  font-size: .8rem;
  font-weight: 300;
  color: var(--text-sec);
  transition: color .3s var(--ease);
}

.footer-links a:hover {
  color: var(--accent)
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  font-size: .72rem;
  font-weight: 300;
  color: var(--text-thin)
}

.footer-social {
  display: flex;
  gap: 10px
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-sec);
  transition: all .35s var(--ease);
}

.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* ═══════════════════════════════════════
   REVEAL
   ═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

.reveal-d1 {
  transition-delay: .12s
}

.reveal-d2 {
  transition-delay: .24s
}

.reveal-d3 {
  transition-delay: .36s
}

/* ═══════════════════════════════════════
   RESPONSIVE — Tablet
   ═══════════════════════════════════════ */
@media(max-width:1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .testimonials-grid {
    grid-template-columns: 1fr 1fr
  }

  .about-grid {
    gap: 50px
  }

  .contact-grid {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px
  }
}

/* ═══════════════════════════════════════
   RESPONSIVE — Mobile
   ═══════════════════════════════════════ */
@media(max-width:768px) {
  .hamburger {
    display: flex
  }

  .nav-desktop {
    display: none
  }

  .hero-content {
    padding: 140px 0 100px
  }

  .hero-title {
    font-size: clamp(2.2rem, 9vw, 3rem)
  }

  .hero-cta {
    flex-direction: column;
    padding: 0 20px
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center
  }

  .about-grid {
    grid-template-columns: 1fr
  }

  .about-img img {
    height: 300px
  }

  .about-img-accent {
    display: none
  }

  .services-grid {
    grid-template-columns: 1fr
  }

  .gallery-grid {
    grid-template-columns: 1fr
  }

  .gallery-over {
    opacity: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, .55) 0%, transparent 40%)
  }

  .testimonials-grid {
    grid-template-columns: 1fr
  }

  .form-row {
    grid-template-columns: 1fr
  }

  .contact-form {
    padding: 28px
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center
  }
}

@media(max-width:480px) {
  .about-stats {
    grid-template-columns: 1fr;
    gap: 10px
  }

  .container {
    padding: 0 20px
  }
}