@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Raleway:wght@300;400;500;600;700;800&display=swap');

/* ===================================================
   CSS VARIABLES & RESET
   =================================================== */
:root {
  --cream:        #FAF7F2;
  --warm-white:   #FFF9F5;
  --gold:         #B5895C;
  --gold-light:   #D4AD82;
  --gold-pale:    #EDD9BF;
  --brown-deep:   #2A1A10;
  --brown-mid:    #5C3B28;
  --brown-warm:   #8A6248;
  --sage:         #7E9177;
  --sage-light:   #B2C4AD;
  --rose:         #C49585;
  --rose-pale:    #EDD8CF;
  --text:         #3A2416;
  --text-mid:     #6B4F3A;
  --text-light:   #9B8070;
  --border:       #E4D5C5;
  --border-light: #F0E5D8;
  --bg-section:   #F7F2EC;
  --bg-alt:       #2A1A10;

  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Raleway', sans-serif;

  --shadow-xs:    0 1px 4px rgba(42,26,16,0.08);
  --shadow-sm:    0 2px 12px rgba(42,26,16,0.10);
  --shadow-md:    0 6px 28px rgba(42,26,16,0.13);
  --shadow-lg:    0 16px 60px rgba(42,26,16,0.18);
  --shadow-gold:  0 8px 32px rgba(181,137,92,0.22);

  --radius-sm:    6px;
  --radius-md:    14px;
  --radius-lg:    24px;
  --radius-full:  9999px;

  --nav-height:   72px;
  --transition:   0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ===================================================
   UTILITY
   =================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===================================================
   REVEAL ANIMATIONS
   =================================================== */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

/* Service, testimonial, process step reveals via JS */
.service-card,
.testimonial-card,
.process-step {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow var(--transition), border-color var(--transition);
}

/* ===================================================
   BUTTONS
   =================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), box-shadow var(--transition),
              transform var(--transition);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: var(--brown-mid);
  border-color: var(--brown-mid);
  box-shadow: 0 10px 36px rgba(92,59,40,0.28);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}

.btn-large {
  padding: 16px 36px;
  font-size: 0.9rem;
}

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

.btn-sent {
  background: var(--sage) !important;
  border-color: var(--sage) !important;
}

/* ===================================================
   SECTION HEADERS
   =================================================== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold-light);
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--brown-deep);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-description {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 400;
}

/* ===================================================
   HEADER / NAV
   =================================================== */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

#site-header.scrolled {
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(42,26,16,0.10);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  padding: 0 32px;
  max-width: 1400px;
  margin: 0 auto;
  gap: 20px;
}

/* Logo */
.nav-logo {
  flex: 0 0 auto;
}

.logo-link {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-decoration: none;
}

.logo-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.04em;
  transition: color var(--transition);
}

.logo-subtitle {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  transition: color var(--transition);
}

#site-header.scrolled .logo-name {
  color: var(--brown-deep);
}

#site-header.scrolled .logo-subtitle {
  color: var(--gold);
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 12px;
  right: 12px;
  height: 1.5px;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.nav-link:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

#site-header.scrolled .nav-link {
  color: var(--text-mid);
}

#site-header.scrolled .nav-link:hover {
  color: var(--gold);
  background: rgba(181,137,92,0.08);
}

#site-header.scrolled .nav-link::after {
  background: var(--gold);
}

/* CTA */
.nav-cta {
  flex: 0 0 auto;
}

/* Hamburger */
.menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), background var(--transition);
}

#site-header.scrolled .hamburger span {
  background: var(--brown-deep);
}

.menu-toggle:checked + .hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle:checked + .hamburger span:nth-child(2) {
  opacity: 0;
}
.menu-toggle:checked + .hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

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

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

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.04);
  animation: heroZoom 14s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.0); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(22,10,4,0.72) 0%,
    rgba(44,22,10,0.60) 50%,
    rgba(60,35,18,0.45) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
  padding: 120px 24px 80px;
  animation: heroFadeUp 1s ease 0.2s both;
}

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

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.hero-eyebrow i {
  font-size: 0.9rem;
}

.hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}

.hero-content h1 em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 300;
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.82);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.85;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* Hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 20px 40px;
  max-width: 560px;
  margin: 0 auto;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  text-align: center;
}

.hero-stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  animation: scrollBounce 2s ease-in-out infinite;
  transition: color var(--transition);
  padding: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-scroll-cue:hover {
  color: var(--gold-light);
  border-color: rgba(212,173,130,0.5);
}

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

/* ===================================================
   SERVICES
   =================================================== */
.services {
  padding: 100px 0;
  background: var(--warm-white);
}

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

.service-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

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

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

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold-pale), rgba(181,137,92,0.15));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 1.5rem;
  color: var(--gold);
  transition: background var(--transition), transform var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
  transform: scale(1.08) rotate(-3deg);
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--brown-deep);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 24px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--transition), color var(--transition);
}

.service-link:hover {
  color: var(--brown-mid);
  gap: 12px;
}

/* ===================================================
   GALLERY
   =================================================== */
.gallery {
  padding: 100px 0;
  background: var(--bg-section);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

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

.gallery-featured {
  grid-row: 1 / 3;
  min-height: 480px;
}

.gallery-item:not(.gallery-featured) {
  min-height: 228px;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42,26,16,0.70) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px 24px;
  opacity: 0;
  transition: opacity var(--transition);
}

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

.gallery-overlay span {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ===================================================
   ABOUT / CHI SIAMO
   =================================================== */
.about {
  padding: 100px 0;
  background: var(--warm-white);
}

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

.about-image-col {
  position: relative;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image-wrapper img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 16px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: var(--shadow-gold);
  min-width: 140px;
  text-align: center;
}

.about-badge i {
  font-size: 1.6rem;
  color: var(--gold-pale);
}

.about-content .section-eyebrow {
  justify-content: flex-start;
}

.about-content .section-eyebrow::before {
  display: none;
}

.about-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 500;
  color: var(--brown-deep);
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-lead {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  font-style: italic;
  color: var(--brown-mid);
  line-height: 1.7;
  margin-bottom: 18px;
  border-left: 3px solid var(--gold);
  padding-left: 20px;
}

.about-content p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 16px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  margin: 28px 0 36px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
}

.about-feature i {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ===================================================
   PROCESS
   =================================================== */
.process {
  padding: 100px 0;
  background: linear-gradient(160deg, var(--brown-deep) 0%, #3D2215 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.process::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(181,137,92,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.process::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(181,137,92,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.process .section-header {
  position: relative;
  z-index: 1;
}

.process .section-header h2 {
  color: #fff;
}

.process .section-description {
  color: rgba(255,255,255,0.70);
}

.process-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
}

.process-step:last-child {
  border-bottom: none;
}

.step-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(181,137,92,0.25);
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
  transition: color var(--transition);
}

.process-step:hover .step-number,
.process-step.revealed .step-number {
  color: var(--gold);
}

.step-content h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}

.step-content p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
}

.step-content strong {
  color: var(--gold-light);
}

.process-image-col {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.process-image-col img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.process-image-col:hover img {
  transform: scale(1.04);
}

/* ===================================================
   TESTIMONIALS
   =================================================== */
.testimonials {
  padding: 100px 0;
  background: var(--bg-section);
}

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

.testimonial-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

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

.testimonial-icon {
  font-size: 2rem;
  color: var(--gold-pale);
  display: block;
  margin-bottom: 20px;
  line-height: 1;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 28px;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.testimonial-author strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brown-deep);
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--text-light);
  letter-spacing: 0.06em;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
  font-size: 0.85rem;
}

/* ===================================================
   CONTACT
   =================================================== */
.contact {
  padding: 100px 0;
  background: var(--warm-white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: start;
}

.contact-info h3,
.contact-form-wrapper h3 {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--brown-deep);
  margin-bottom: 28px;
  line-height: 1.3;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
}

.contact-item:last-of-type {
  border-bottom: none;
  margin-bottom: 4px;
}

.contact-item-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--gold-pale), rgba(181,137,92,0.15));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
  transition: background var(--transition), color var(--transition);
}

.contact-item:hover .contact-item-icon {
  background: var(--gold);
  color: #fff;
}

.contact-item-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.9rem;
}

.contact-item-text strong {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

.contact-item-text a,
.contact-item-text span {
  color: var(--text-mid);
  line-height: 1.6;
  transition: color var(--transition);
}

.contact-item-text a:hover {
  color: var(--gold);
}

.contact-map-wrapper {
  margin-top: 24px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.contact-map {
  display: block;
  width: 100%;
  border: none;
}

/* Form */
.contact-form-wrapper {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-sm);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--cream);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(181,137,92,0.12);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23B5895C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.65;
}

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  background: linear-gradient(160deg, var(--brown-deep) 0%, #1E0E07 100%);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  margin-bottom: 18px;
}

.footer-logo .logo-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
}

.footer-logo .logo-subtitle {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.8;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}

.social-links a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

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

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.58);
  transition: color var(--transition), padding-left var(--transition);
}

.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact-list i {
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-list a {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.6;
  transition: color var(--transition);
}

.footer-contact-list a:hover {
  color: var(--gold-light);
}

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

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.03em;
}

/* ===================================================
   SCROLL-BASED ENHANCEMENTS
   =================================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-28px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(28px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ===================================================
   RESPONSIVE – TABLET (≤ 1024px)
   =================================================== */
@media (max-width: 1024px) {
  .navbar {
    padding: 0 20px;
  }

  .nav-links {
    gap: 2px;
  }

  .nav-link {
    padding: 8px 9px;
    font-size: 0.75rem;
  }

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

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

  .about-image-wrapper img {
    height: 440px;
  }

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

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

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

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

  .footer-brand {
    grid-column: 1 / -1;
    max-width: 100%;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: start;
  }

  .footer-brand p {
    margin-bottom: 0;
  }
}

/* ===================================================
   RESPONSIVE – MOBILE (≤ 768px)
   =================================================== */
@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  /* Nav mobile */
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26,12,6,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .menu-toggle:checked ~ .nav-links {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 1.1rem;
    padding: 14px 28px;
    color: rgba(255,255,255,0.9);
  }

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

  .nav-cta {
    display: none;
  }

  /* Hero */
  .hero-content {
    padding: 100px 20px 60px;
  }

  .hero-stats {
    padding: 16px 20px;
    flex-direction: column;
    gap: 16px;
  }

  .hero-stat {
    padding: 0;
  }

  .hero-stat-divider {
    width: 60px;
    height: 1px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  /* Services */
  .services {
    padding: 72px 0;
  }

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

  /* Gallery */
  .gallery {
    padding: 72px 0;
  }

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

  .gallery-featured {
    grid-row: auto;
    min-height: 300px;
  }

  .gallery-item:not(.gallery-featured) {
    min-height: 220px;
  }

  /* About */
  .about {
    padding: 72px 0;
  }

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

  .about-image-wrapper img {
    height: 320px;
  }

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

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

  /* Process */
  .process {
    padding: 72px 0;
  }

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

  .process-image-col {
    order: -1;
  }

  .process-image-col img {
    height: 260px;
  }

  /* Testimonials */
  .testimonials {
    padding: 72px 0;
  }

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

  /* Contact */
  .contact {
    padding: 72px 0;
  }

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

  .contact-form-wrapper {
    padding: 28px 22px;
  }

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

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand {
    grid-column: auto;
    display: block;
  }

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

/* ===================================================
   RESPONSIVE – SMALL MOBILE (≤ 480px)
   =================================================== */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .navbar {
    padding: 0 16px;
  }

  .hero-content h1 {
    font-size: 2.6rem;
  }

  .section-header h2 {
    font-size: 1.9rem;
  }

  .service-card,
  .testimonial-card {
    padding: 28px 22px;
  }

  .step-number {
    font-size: 2.2rem;
    width: 44px;
  }

  .contact-map-wrapper {
    display: none;
  }
}

/* ===================================================
   ACCESSIBILITY & MISC
   =================================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}

::selection {
  background: var(--gold-pale);
  color: var(--brown-deep);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-light);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}
