@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Poppins:wght@300;400;500;600&display=swap');

:root {
  --black: #0d0d0d;
  --black-soft: #171512;
  --gold: #c9a35c;
  --gold-light: #e6c98a;
  --gold-dark: #8a6e37;
  --cream: #f5efe4;
  --text-muted: #b8b0a0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--cream);
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.5px;
}

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

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

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header / Navbar ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201, 163, 92, 0.25);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  max-width: 1160px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  height: 52px;
  width: auto;
  border-radius: 50%;
}

.brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--gold-light);
  line-height: 1.1;
}

.brand-text span {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 3px;
  color: var(--text-muted);
  font-weight: 400;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--cream);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.25s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}

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

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--gold-light);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  background: transparent;
}

.btn:hover {
  background: var(--gold);
  color: var(--black);
}

.btn-solid {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--black);
  border: none;
  font-weight: 500;
}

.btn-solid:hover {
  filter: brightness(1.1);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 30%, rgba(201,163,92,0.18), transparent 60%),
    linear-gradient(180deg, #0d0d0d 0%, #14110c 100%);
  padding: 60px 24px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=1600&q=60');
  background-size: cover;
  background-position: center;
  opacity: 0.16;
}

.hero-content {
  position: relative;
  max-width: 720px;
}

.hero-logo {
  width: 150px;
  margin: 0 auto 20px;
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(201,163,92,0.35);
}

.hero p.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.8rem;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 18px;
}

.hero p.lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Sections ---------- */
.section {
  padding: 90px 0;
}

.section-alt {
  background: var(--black-soft);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-header p.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.78rem;
  margin-bottom: 14px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 16px;
}

.section-header p.desc {
  color: var(--text-muted);
}

.divider {
  width: 70px;
  height: 1px;
  background: var(--gold);
  margin: 18px auto 0;
}

/* ---------- Highlights (home) ---------- */
.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.highlight-card {
  border: 1px solid rgba(201,163,92,0.25);
  padding: 32px 26px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}

.highlight-icon {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.highlight-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.highlight-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* ---------- Service Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.service-card {
  background: var(--black-soft);
  border: 1px solid rgba(201,163,92,0.18);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}

.service-img {
  position: relative;
  height: 190px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.08);
}

.service-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,13,13,0) 40%, rgba(13,13,13,0.85));
}

.service-body {
  padding: 24px 22px 28px;
}

.service-body .tag {
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.service-body h3 {
  font-size: 1.2rem;
  margin: 8px 0 10px;
}

.service-body p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* ---------- CTA band ---------- */
.cta-band {
  text-align: center;
  padding: 80px 24px;
  background: linear-gradient(135deg, rgba(201,163,92,0.12), rgba(13,13,13,0));
  border-top: 1px solid rgba(201,163,92,0.2);
  border-bottom: 1px solid rgba(201,163,92,0.2);
}

.cta-band h2 {
  margin-bottom: 20px;
}

/* ---------- About page ---------- */
.about-hero {
  padding: 80px 24px 40px;
  text-align: center;
}

.about-hero p.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.8rem;
  margin-bottom: 16px;
}

.about-hero h1 {
  font-size: clamp(2.1rem, 5vw, 3rem);
  max-width: 780px;
  margin: 0 auto 20px;
}

.about-hero p.lead {
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
}

.about-banner {
  max-width: 1160px;
  margin: 0 auto 10px;
  padding: 0 24px;
}

.about-banner .img-wrap {
  height: 360px;
  overflow: hidden;
  border: 1px solid rgba(201,163,92,0.25);
}

.about-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8) saturate(1.05);
}

.about-block {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.about-block h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.1rem);
  margin-bottom: 20px;
}

.about-block p.body-text {
  color: var(--text-muted);
  font-size: 1.02rem;
}

.verse {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--gold-light);
  font-size: 0.95rem;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(201,163,92,0.25);
}

.verse cite {
  display: block;
  font-style: normal;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 8px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}

.value-card {
  border: 1px solid rgba(201,163,92,0.2);
  padding: 26px 24px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
}

.value-card h3 {
  font-size: 1.02rem;
  margin-bottom: 8px;
}

.value-card .num {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
}

.value-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.lema-section {
  text-align: center;
  padding: 90px 24px;
  background:
    radial-gradient(circle at 50% 20%, rgba(201,163,92,0.14), transparent 60%),
    var(--black-soft);
  border-top: 1px solid rgba(201,163,92,0.2);
  border-bottom: 1px solid rgba(201,163,92,0.2);
}

.lema-quote {
  max-width: 720px;
  margin: 0 auto 26px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: var(--gold-light);
  line-height: 1.4;
}

.lema-quote::before,
.lema-quote::after {
  content: '"';
  color: var(--gold);
}

.lema-section p.explain {
  max-width: 620px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.slogan-note {
  max-width: 640px;
  margin: 46px auto 0;
  padding-top: 30px;
  border-top: 1px solid rgba(201,163,92,0.2);
}

.slogan-note p.tag {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.72rem;
  margin-bottom: 12px;
}

.slogan-note p.slogan {
  font-family: 'Playfair Display', serif;
  color: var(--gold-light);
  font-size: 1.25rem;
}

/* ---------- Construction page ---------- */
.construction {
  min-height: 65vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
}

.construction .icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 24px;
}

.construction h1 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 16px;
}

.construction p {
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
}

.progress-bar {
  width: 260px;
  height: 4px;
  background: rgba(201,163,92,0.2);
  margin: 34px auto 0;
  position: relative;
  overflow: hidden;
}

.progress-bar::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 40%;
  background: var(--gold);
  animation: loading 1.8s ease-in-out infinite;
}

@keyframes loading {
  0% { left: -40%; }
  100% { left: 100%; }
}

/* ---------- Contacts ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(201,163,92,0.18);
}

.contact-item .icon {
  font-size: 1.3rem;
  color: var(--gold);
  min-width: 32px;
}

.contact-item a, .contact-item span {
  font-size: 1.02rem;
}

.contact-item small {
  display: block;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.7rem;
  margin-bottom: 4px;
}

.services-list {
  margin-top: 30px;
}

.services-list h3 {
  font-size: 1rem;
  margin-bottom: 14px;
}

.services-list ul {
  list-style: none;
  columns: 2;
  gap: 10px;
}

.services-list li {
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 6px 0;
}

.services-list li::before {
  content: '— ';
  color: var(--gold);
}

.contact-form {
  background: var(--black-soft);
  border: 1px solid rgba(201,163,92,0.2);
  padding: 34px;
}

.contact-form label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  background: var(--black);
  border: 1px solid rgba(201,163,92,0.3);
  color: var(--cream);
  padding: 12px 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--gold);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #050505;
  border-top: 1px solid rgba(201,163,92,0.2);
  padding: 56px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand img {
  height: 60px;
  margin-bottom: 14px;
  border-radius: 50%;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 0.95rem;
  margin-bottom: 16px;
  color: var(--gold-light);
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.25s ease;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  border-top: 1px solid rgba(201,163,92,0.12);
  padding-top: 22px;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(13,13,13,0.98);
    border-bottom: 1px solid rgba(201,163,92,0.25);
    padding: 20px 24px;
    gap: 20px;
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .services-list ul {
    columns: 1;
  }
}
