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

:root {
  --bg-dark: #1a1a1a;
  --bg-darker: #111111;
  --bg-card: #222222;
  --bg-section-alt: #1e1e1e;
  --gold: #c8a96e;
  --gold-light: #dfc08a;
  --gold-dark: #a88b4a;
  --text-white: #ffffff;
  --text-light: #e0e0e0;
  --text-muted: #aaaaaa;
  --font-heading: 'Raleway', sans-serif;
  --font-body: 'Roboto', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--gold-light); }

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER ===== */
.site-header {
  background: var(--bg-darker);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid var(--gold);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}

.logo-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-white);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Navigation */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.main-nav a {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}

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

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

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--text-white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--bg-darker) 0%, #2a2218 50%, var(--bg-darker) 100%);
  text-align: center;
  padding: 100px 20px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at center, rgba(200,169,110,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--text-white);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 30px;
}

.scroll-arrow {
  display: inline-block;
  font-size: 2rem;
  color: var(--gold);
  animation: bounce 2s infinite;
  margin-top: 20px;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* ===== INTRO / SOCIAL ===== */
.intro-section {
  background: var(--bg-section-alt);
  padding: 60px 20px;
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--text-white);
  font-size: 1.4rem;
  transition: background 0.3s, color 0.3s;
}

.social-links a:hover {
  background: var(--gold);
  color: var(--bg-dark);
}

.intro-section h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--text-white);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.intro-section .subtitle {
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 25px;
  font-style: italic;
}

.btn {
  display: inline-block;
  padding: 12px 35px;
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: background 0.3s, color 0.3s;
  cursor: pointer;
}

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

/* ===== GALLERY ===== */
.gallery-section {
  background: var(--bg-darker);
  padding: 60px 20px;
  text-align: center;
}

.gallery-section h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--text-white);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.gallery-viewer {
  max-width: 832px;
  margin: 0 auto 30px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.gallery-main-img {
  width: 100%;
  aspect-ratio: 832 / 448;
  object-fit: cover;
  border-radius: 8px;
  transition: opacity 0.4s;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  font-size: 1.5rem;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s;
  z-index: 2;
}

.gallery-nav:hover { background: rgba(200,169,110,0.8); }
.gallery-nav.prev { left: 10px; }
.gallery-nav.next { right: 10px; }

.gallery-thumbs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.gallery-thumb {
  width: 120px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  border: 3px solid transparent;
  opacity: 0.6;
  transition: opacity 0.3s, border-color 0.3s;
}

.gallery-thumb.active,
.gallery-thumb:hover {
  opacity: 1;
  border-color: var(--gold);
}

/* ===== SERVICES ===== */
.services-section {
  background: var(--bg-dark);
  padding: 80px 20px;
}

.services-section > h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  text-align: center;
  color: var(--text-white);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  text-align: center;
  padding: 30px 20px;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid #333;
  transition: transform 0.3s, border-color 0.3s;
}

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

.service-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 3px solid var(--gold);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.service-card ul {
  list-style: none;
  text-align: left;
}

.service-card li {
  padding: 6px 0;
  border-bottom: 1px solid #333;
  color: var(--text-light);
  font-size: 0.95rem;
}

.service-card li:last-child { border-bottom: none; }

.service-card li::before {
  content: '✂ ';
  color: var(--gold);
  margin-right: 5px;
}

.services-btn-wrap {
  text-align: center;
  margin-top: 40px;
}

/* ===== WHY CHOOSE US ===== */
.why-section {
  background: var(--bg-section-alt);
  padding: 80px 20px;
}

.why-inner {
  max-width: 800px;
  margin: 0 auto;
}

.why-section h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--text-white);
  text-align: center;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.why-section .intro-text {
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.8;
}

.why-section h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.why-points {
  list-style: none;
  margin-bottom: 40px;
}

.why-points li {
  padding: 10px 0;
  padding-left: 25px;
  position: relative;
  color: var(--text-light);
  line-height: 1.7;
}

.why-points li::before {
  content: '★';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.cta-block {
  text-align: center;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #333;
}

.cta-block h3 {
  text-align: center;
  color: var(--text-white);
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.cta-block p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 5px;
}

.cta-block .tagline {
  color: var(--gold);
  font-style: italic;
  margin-top: 15px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-darker);
  padding: 50px 20px 30px;
  border-top: 2px solid var(--gold);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.footer-col p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

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

.footer-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-top: 10px;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #333;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #555;
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: all 0.3s;
}

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

/* ===== ABOUT PAGE ===== */
.page-hero {
  background: linear-gradient(135deg, var(--bg-darker), #2a2218);
  padding: 80px 20px;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--text-white);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.page-hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.about-content {
  background: var(--bg-dark);
  padding: 60px 20px;
}

.about-inner {
  max-width: 800px;
  margin: 0 auto;
}

.about-inner h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: 1px;
  margin: 40px 0 15px;
}

.about-inner h2:first-child { margin-top: 0; }

.about-inner p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 15px;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.about-value {
  background: var(--bg-card);
  padding: 25px;
  border-radius: 8px;
  border-left: 3px solid var(--gold);
}

.about-value h3 {
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 8px;
}

.about-value p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ===== CONTACTS PAGE ===== */
.contact-content {
  background: var(--bg-dark);
  padding: 60px 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-item i {
  color: var(--gold);
  font-size: 1.2rem;
  margin-top: 3px;
  width: 20px;
  text-align: center;
}

.contact-item p {
  color: var(--text-light);
  line-height: 1.6;
}

.contact-item strong {
  color: var(--text-white);
}

.contact-form h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 25px;
}

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

.contact-form input,
.contact-form textarea {
  background: var(--bg-card);
  border: 1px solid #444;
  border-radius: 6px;
  padding: 12px 15px;
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s;
}

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

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

.contact-form .btn { align-self: flex-start; border: 2px solid var(--gold); }

.map-embed {
  margin-top: 40px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.map-embed iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 8px;
  filter: grayscale(0.5) brightness(0.8);
}

.map-embed:hover iframe {
  filter: grayscale(0) brightness(1);
  transition: filter 0.5s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hamburger { display: flex; }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-darker);
    border-top: 1px solid #333;
    padding: 20px;
  }

  .main-nav.open { display: block; }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .main-nav li {
    border-bottom: 1px solid #333;
  }

  .main-nav a {
    display: block;
    padding: 12px 0;
  }

  .hero h1 { font-size: 1.8rem; letter-spacing: 1px; }
  .hero { padding: 60px 20px 50px; }

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

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

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-social { justify-content: center; }

  .gallery-thumb { width: 80px; height: 46px; }

  .logo-text { font-size: 1rem; letter-spacing: 1px; }
  .logo-img { width: 45px; height: 45px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.4rem; }
  .intro-section h3 { font-size: 1.4rem; }
  .gallery-section h2,
  .services-section > h2 { font-size: 1.4rem; }
}
