﻿:root {
  --bg: #faf8f3;
  --surface: #ffffff;
  --surface-strong: #ffffff;

  --text: #c9a44c;
  --muted: #7b6b47;

  --primary: #d4af37;
  --primary-dark: #b88b2c;
  --accent: #e7c86b;
  --secondary: #d4af37;

  --shadow: 0 30px 80px rgba(212,175,55,.15);
  --shadow-sm: 0 10px 30px rgba(212,175,55,.10);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: linear-gradient(135deg, #e5efff 0%, #f2e7ff 35%, #f9f1ff 65%, #fff9fb 100%);
  background-size: 500% 500%;
  animation: subtleShift 24s ease-in-out infinite;
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

@keyframes subtleShift {
  0% {
    background-position: 0% 30%;
  }
  50% {
    background-position: 100% 70%;
  }
  100% {
    background-position: 0% 30%;
  }
}

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

button,
a {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 18px 6%;
  background: rgba(255,255,255,0.55);
  background-image: linear-gradient(180deg, rgba(255,255,255,0.6), rgba(250,248,255,0.45));
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 8px 40px rgba(15, 23, 42, 0.06);
  transition: transform 0.32s cubic-bezier(.2,.9,.25,1), opacity 0.32s ease, background 0.3s ease;
}

.site-header.hidden {
  transform: translateY(-120%);
  opacity: 0;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo-text {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-tag {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.08);
  color: var(--primary-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

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

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 999px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(99, 102, 241, 0.12);
  color: var(--primary-dark);
  transform: translateY(-1px);
}

.nav-links a{
    color:#b88b2c;
}

.nav-links a:hover{
    color:#d4af37;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-cta {
  padding: 12px 20px;
  border-radius: 999px;
}

.header-contact {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(99, 102, 241, 0.12);
  background: rgba(255, 255, 255, 0.8);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.header-contact:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(99, 102, 241, 0.08);
}

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

.menu-toggle span {
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: var(--text);
  display: block;
  transition: transform 0.3s ease;
}

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

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: color 0.3s ease, transform 0.3s ease, text-shadow 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width 0.3s ease;
}

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

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

.section {
  padding: 100px 6%;
}

.hero-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 4rem;
  min-height: calc(100vh - 100px);
}

.hero-content {
  max-width: 620px;
  animation: slideInLeft 0.8s ease;
}

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

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.12), rgba(168, 85, 247, 0.08));
  color: var(--primary);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  font-weight: 700;
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.hero-section h1 {
    font-size: clamp(2.5rem,4.5vw,4rem);
    line-height: 1.15;
    color: #d4af37;
    font-weight: 900;
}

.hero-text {
  max-width: 610px;
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 36px;
  line-height: 1.8;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 16px 32px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  box-shadow: 0 20px 50px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 25px 60px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: rgba(99, 102, 241, 0.05);
  position: relative;
}

.btn-secondary:hover {
  background: rgba(99, 102, 241, 0.1);
  box-shadow: 0 12px 30px rgba(99, 102, 241, 0.2);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.3);
  gap: 10px;
}

.btn-whatsapp:hover {
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.4);
  background: linear-gradient(135deg, #20ba5a, #0f7b6e);
}

.whatsapp-icon {
  width: 24px;
  height: 24px;
  display: block;
  object-fit: contain;
}

.form-divider {
  text-align: center;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
  margin: 8px 0;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.hero-stats div {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(99, 102, 241, 0.05));
  border: 1px solid rgba(99, 102, 241, 0.15);
  padding: 24px 20px;
  border-radius: 16px;
  color: var(--text);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.hero-stats div:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(99, 102, 241, 0.08));
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.15);
}

.hero-stats strong {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
}

.hero-stats span {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 500;
}

.hero-image {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 40px 100px rgba(99, 102, 241, 0.25);
  animation: slideInRight 0.8s ease;
}

.hero-image img {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.section-header {
  max-width: 760px;
  margin-bottom: 50px;
}

.section-header h2{
    color:#b88b2c;
    font-weight:900;
}

.design-grid,
.gallery-grid,
.about-grid {
  display: grid;
  gap: 28px;
}

.design-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.design-card {
  background: var(--surface);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(99, 102, 241, 0.08);
  position: relative;
}

.design-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.design-card:hover::before {
  opacity: 1;
}

.design-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 40px 100px rgba(99, 102, 241, 0.2);
  border-color: rgba(99, 102, 241, 0.2);
}

.design-card img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  background: linear-gradient(135deg, #f9f7ff, #f0f4ff);
  transition: transform 0.4s ease;
}

.design-card:hover img {
  transform: scale(1.05);
}

.design-card-body {
  padding: 28px 26px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.design-card-body h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
}

.design-card-body p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.card-link {
  align-self: start;
  color: var(--primary);
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.card-link::after {
  content: '→';
  transition: transform 0.3s ease;
}

.card-link:hover {
  color: var(--accent);
  gap: 12px;
}

.card-link:hover::after {
  transform: translateX(4px);
}

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

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  min-height: 400px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(99, 102, 241, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card:hover {
  box-shadow: 0 40px 100px rgba(99, 102, 241, 0.2);
  border-color: rgba(99, 102, 241, 0.2);
}

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

.gallery-card:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 28px;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.8) 50%, rgba(15, 23, 42, 0.95) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.about-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.99), rgba(99, 102, 241, 0.04));
  border: 1px solid rgba(99, 102, 241, 0.12);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 20px 20px 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.about-card:hover {
  box-shadow: 0 30px 80px rgba(99, 102, 241, 0.18);
  border-color: rgba(99, 102, 241, 0.2);
  transform: translateY(-6px);
}

.about-card h3 {
  margin-bottom: 18px;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
}

.about-card p {
  color: var(--muted);
  line-height: 1.85;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
}

.contact-copy {
  max-width: 500px;
}

.contact-copy h2{
    color:#b88b2c;
    font-weight:900;
}

.contact-copy p {
  color: var(--muted);
  line-height: 1.9;
  font-size: 1.025rem;
}

.contact-address {
  margin-top: 16px;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.3px;
}

.contact-email {
  margin-top: 8px;
}

.contact-email a {
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 600;
}

.contact-email a:hover {
  text-decoration: underline;
}

.contact-form {
  display: grid;
  gap: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(99, 102, 241, 0.04));
  border: 1px solid rgba(99, 102, 241, 0.15);
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid rgba(99, 102, 241, 0.16);
  font-size: 1rem;
  color: var(--text);
  resize: vertical;
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

  .form-message {
    margin: -8px 0 18px;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
  }


.contact-form button {
  border: none;
  cursor: pointer;
}

.site-footer {
  padding: 40px 6%;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(168, 85, 247, 0.05));
  border-top: 1px solid rgba(99, 102, 241, 0.1);
  font-weight: 500;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(4px);
  z-index: 1000;
  padding: 24px;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal.open {
  display: flex;
}

.modal-content {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 24px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.3);
}

.close {
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: 2.8rem;
  color: #fff;
  cursor: pointer;
  line-height: 1;
  background: rgba(255, 255, 255, 0.1);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.fade-up {
  opacity: 0;
  transform: translateY(40px);
}

@media (max-width: 1100px) {
  .hero-section,
  .contact-panel {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .hero-image {
    order: -1;
  }
}

@media (max-width: 900px) {
  .design-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .section {
    padding: 80px 5%;
  }
}

@media (max-width: 760px) {
  .site-header {
    flex-wrap: wrap;
    padding: 16px 5%;
  }

  .brand-wrap {
    flex: 1;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 20px 5%;
    flex-direction: column;
    gap: 16px;
    background: rgba(255,255,255,0.76);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    font-size: 1rem;
  }

  .header-actions {
    display: none;
  }

  .section {
    padding: 60px 5%;
  }

  .design-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .design-card {
    border-radius: 16px;
  }

  .design-card img {
    height: 200px;
  }

  .contact-panel {
    gap: 30px;
  }
}

@media (max-width: 520px) {
  .hero-section h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .design-grid {
    gap: 12px;
  }

  .design-card img {
    height: 180px;
  }

  .hero-stats strong {
    font-size: 1.4rem;
  }

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

  .contact-form {
    padding: 24px 20px;
  }

  .modal-content {
    border-radius: 16px;
  }
}


.btn-primary{
    background:#d4af37;
    color:#fff;
}

.btn-secondary{
    border:2px solid #d4af37;
    color:#d4af37;
    background:#fff;
}
.hero-stats strong{
    color:#d4af37;
    background:none;
    -webkit-text-fill-color:unset;
}
.card-link{
    color:#d4af37;
}

.contact-email a{
    color:#d4af37;
}
.brand-badge{
    background:#f8f1d9;
    color:#b88b2c;
}