/* ── RESET & ROOT ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold: #C8922A;
  --gold-light: #D4A843;
  --gold-dark: #A67520;
  --black: #1A1208;
  --dark: #2C1F0E;
  --cream: #FAF6F0;
  --cream2: #F5EFE6;
  --white: #FFFFFF;
  --text: #3D2B10;
  --text-light: #6B5230;
  --border: #E8D5B0;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

/* ── NAVBAR ── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(16px, 4vw, 60px);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  gap: 16px;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--white);
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
  display: none;
}

body.nav-open {
  overflow: hidden;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-emblem,
.emblem {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.logo-text {
  line-height: 1.1;
}

.logo-text .brand {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.5px;
}

.logo-text .sub {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 4px;
}

.logo-text .sub::before,
.logo-text .sub::after {
  content: '';
  display: inline-block;
  height: 1px;
  width: 20px;
  background: var(--gold);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
}

.nav-links a.active {
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-phone {
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 6px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: background 0.2s;
}

.nav-phone:hover {
  background: var(--gold-dark);
}

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
  background: var(--cream);
  overflow: hidden;
  padding: 0;
}

.hero-left {
  padding: clamp(32px, 6vw, 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-eyebrow {
  font-size: 13px;
  letter-spacing: 2.5px;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.25rem, 6vw, 4rem);
  line-height: 1.05;
  color: var(--dark);
  font-weight: 700;
  margin-bottom: 0;
}

.hero-title .gold {
  color: var(--gold);
}

.hero-divider {
  width: 180px;
  height: 1px;
  background: var(--gold);
  margin: 16px 0;
  position: relative;
}

.hero-divider::before {
  content: '❖';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--gold);
  font-size: 12px;
  background: var(--cream);
  padding: 0 6px;
}

.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.hero-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 100%;
  margin-bottom: 28px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.hero-right {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #C8922A22, #C8922A44);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 500;
  min-height: 500px;
}

.hero-img-placeholder .upload-icon {
  font-size: 48px;
  opacity: 0.5;
}

.hero-badges {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-light);
}

.badge svg {
  color: var(--gold-dark);
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 6px;
  padding: 13px 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: var(--gold-dark);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
  border-radius: 6px;
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
  border: none;
  border-radius: 6px;
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  transition: background 0.2s;
}

.btn-dark:hover {
  background: var(--black);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border: none;
  border-radius: 6px;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-whatsapp:hover {
  background: #1eb855;
}

/* ── SECTION COMMON ── */
section {
  padding: clamp(48px, 8vw, 70px) clamp(16px, 4vw, 60px);
}

.section-eyebrow {
  text-align: center;
  font-size: 11px;
  letter-spacing: 4px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: clamp(32px, 5vw, 48px);
}

.ornament {
  text-align: center;
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 8px;
  opacity: 0.5;
  margin-bottom: 6px;
}

/* ── SERVICES ── */
.services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
}

.service-card {
  background: var(--cream);
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s;
}

.service-card:hover {
  box-shadow: 0 8px 32px rgba(200, 146, 42, 0.15);
  transform: translateY(-2px);
}

.service-icon {
  width: 72px;
  height: 72px;
  background: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
}

.card-ornament {
  color: var(--gold);
  font-size: 18px;
  margin-top: 16px;
  opacity: 0.6;
}

/* ── WHY US ── */
.why {
  background: var(--cream2);
}

.why-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.why-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 14px;
}

.why-left p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 28px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.feature {
  text-align: center;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: var(--gold);
  font-size: 20px;
}

.feature h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
  line-height: 1.3;
}

.feature p {
  font-size: 11px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ── GALLERY ── */
.gallery {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--cream2);
  border: 1px solid var(--border);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  opacity: 0.4;
  flex-direction: column;
  gap: 6px;
  font-size: 11px;
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: var(--cream);
  padding: clamp(36px, 6vw, 50px) clamp(16px, 4vw, 60px) 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand .logo-text .brand {
  color: var(--cream);
}

.footer-brand .logo-text .sub {
  color: var(--gold);
}

.footer-brand .logo-text .sub::before,
.footer-brand .logo-text .sub::after {
  background: var(--gold);
}

.footer-desc {
  font-size: 13px;
  color: #BBA882;
  line-height: 1.7;
  margin: 16px 0 20px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border: 1px solid #5C4A2A;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s;
}

.social-links a:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.footer-col h4 {
  font-size: 11px;
  letter-spacing: 3px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 13px;
  color: #D4BF9A;
  word-break: break-word;
}

.contact-item .icon {
  color: var(--gold);
  font-size: 15px;
  flex-shrink: 0;
}

.footer-right p {
  font-size: 13px;
  color: #BBA882;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-bottom {
  border-top: 1px solid #3D2B10;
  padding-top: 20px;
  text-align: center;
  font-size: 12px;
  color: #7A5C30;
  line-height: 1.6;
}

/* ── RESPONSIVE ── */

/* Tablet landscape & small desktop */
@media (max-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-inner {
    grid-template-columns: 280px 1fr;
    gap: 40px;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .nav-desktop {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    display: none;
    position: fixed;
    top: 69px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    padding: 24px clamp(16px, 4vw, 32px) 32px;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    overflow-y: auto;
    z-index: 99;
    border-top: 1px solid var(--border);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu .nav-links {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }

  .nav-menu .nav-links li {
    border-bottom: 1px solid var(--border);
  }

  .nav-menu .nav-links a {
    display: block;
    padding: 16px 4px;
    font-size: 16px;
  }

  .nav-menu .nav-links a.active {
    border-bottom: none;
    padding-bottom: 16px;
  }

  .nav-phone-mobile {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 15px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-right {
    order: -1;
    min-height: 280px;
    max-height: 420px;
  }

  .hero-left {
    text-align: center;
    align-items: center;
  }

  .hero-divider {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-badges {
    justify-content: center;
    gap: 16px 20px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 720px;
  }

  .why-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .why-left h2 {
    font-size: clamp(1.75rem, 4vw, 2.125rem);
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .logo-text .brand {
    font-size: 16px;
  }

  .logo-text .sub {
    font-size: 9px;
    letter-spacing: 2px;
  }

  .logo-text .sub::before,
  .logo-text .sub::after {
    width: 12px;
  }

  .emblem {
    width: 44px;
    height: 44px;
  }

  .hero-right {
    min-height: 220px;
    max-height: 320px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-buttons {
    width: 100%;
    flex-direction: column;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    padding: 28px 24px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 16px;
  }

  .feature h4 {
    font-size: 13px;
  }

  .feature p {
    font-size: 12px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .footer-brand .logo {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }

  .contact-item {
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
  }

  .footer-right .btn-whatsapp {
    width: 100%;
    justify-content: center;
  }

  .ornament {
    font-size: 12px;
    letter-spacing: 4px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  nav {
    padding: 12px 16px;
  }

  .nav-menu {
    top: 63px;
    padding: 20px 16px 28px;
  }

  .hero-badges {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .badge {
    font-size: 11px;
  }

  .hero-divider {
    width: 140px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin: 0 auto;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item {
    aspect-ratio: 1;
  }

  .section-eyebrow {
    letter-spacing: 3px;
    font-size: 10px;
  }

  .footer-bottom {
    font-size: 11px;
    padding-left: 8px;
    padding-right: 8px;
  }
}