/* --- Variables --- */
:root {
  --bg-dark: #0a0a0a;
  --bg-card: #141414;
  --gold: #a8986b;
  --gold-light: #c4b896;
  --gold-muted: #6b6248;
  --text: #e8e6e1;
  --text-muted: #9a958a;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Outfit", system-ui, sans-serif;
  --space: clamp(1.5rem, 4vw, 3rem);
  --max: 75rem;
}

/* --- Reset & base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-dark);
}

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

a {
  color: var(--gold-light);
  text-decoration: none;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.75) 50%,
    rgba(0, 0, 0, 0.9) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--space);
}

.hero-logo {
  margin: 0 auto;
  max-width: min(90vw, 560px);
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.4));
}

.hero-tagline {
  margin: 1.25rem 0 0;
  font-family: var(--sans);
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* --- About + Contact (combined) --- */
.about-contact {
  padding: calc(var(--space) * 2) var(--space);
  background: var(--bg-dark);
  text-align: center;
}

.about-contact-inner {
  max-width: 40rem;
  margin: 0 auto;
}

.about-contact-inner h2 {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 1rem;
}

.about-contact-intro {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 1.05rem;
}

.about-contact-divider {
  width: 4rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-muted), transparent);
  margin: 2.5rem auto;
}

.about-contact-details {
  margin: 0 0 1.5rem;
}

.about-contact-details .contact-name {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 0.5rem;
}

.about-contact-details .contact-links {
  margin: 0 0 0.35rem;
  color: var(--text);
  line-height: 1.6;
}

.about-contact-details .contact-links a {
  color: var(--gold-light);
}

.about-contact-details .contact-links a:hover {
  text-decoration: underline;
}

.about-contact-details .contact-location {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.about-contact-services {
  font-size: 0.8rem;
  color: var(--gold-muted);
  line-height: 1.5;
  margin: 0;
  letter-spacing: 0.02em;
}

/* --- Services --- */
.services {
  padding: calc(var(--space) * 2) var(--space);
  background: var(--bg-card);
}

.services h2 {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  color: var(--gold);
  text-align: center;
  margin: 0 0 var(--space);
}

.services-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--space);
}

.service-card {
  display: block;
  background: var(--bg-dark);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card span {
  display: block;
  padding: 1rem;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text);
  text-align: center;
  border-top: 1px solid rgba(168, 152, 107, 0.2);
}

/* --- Gallery strip --- */
.gallery {
  padding: var(--space) 0;
  overflow: hidden;
}

.gallery-track {
  display: flex;
  gap: 1rem;
  padding: 0 var(--space);
  animation: scroll 40s linear infinite;
}

.gallery-track img {
  flex-shrink: 0;
  width: 280px;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-track {
    animation: none;
  }
}

/* --- Gallery page (category grid) --- */
.gallery-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.gallery-header {
  padding: var(--space);
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}

.back-link {
  display: inline-block;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 1rem;
  transition: color 0.2s ease;
}

.back-link:hover {
  color: var(--gold);
}

.gallery-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  color: var(--gold);
  margin: 0;
  letter-spacing: 0.02em;
}

.gallery-main {
  flex: 1;
  padding: 0 var(--space) calc(var(--space) * 2);
}

.gallery-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.gallery-item {
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  vertical-align: middle;
}

.gallery-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem;
  color: var(--text-muted);
  font-size: 1.1rem;
}

.gallery-empty:hover {
  color: var(--gold);
}

@media (min-width: 900px) {
  .gallery-grid {
    gap: 1.5rem;
  }
  .gallery-item img {
    min-height: 280px;
  }
}


/* --- Footer --- */
.site-footer {
  padding: 1.5rem var(--space);
  border-top: 1px solid rgba(168, 152, 107, 0.15);
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}
