:root {
  --bg-color: #0b0b0d; /* Matte Black */
  --panel-bg: #111114;
  --accent-gold: #c5a880; /* Burnished gold */
  --accent-gold-dark: #8c7353;
  --text-light: #ecebec;
  --text-muted: #737175;
  --border-color: #242429;
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-light);
  font-family: 'Lora', serif;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Cinzel', serif;
  color: #fff;
  letter-spacing: 1px;
}

.container {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center {
  text-align: center;
}

.w-full {
  width: 100%;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: flex-start;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 40px;
  border-bottom: 1px solid var(--border-color);
  background-color: var(--bg-color);
}

.brand {
  font-family: 'Cinzel', serif;
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: 3px;
  color: var(--accent-gold);
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.95rem;
  letter-spacing: 1px;
  transition: color 0.2s;
}

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

/* Buttons */
.btn {
  display: inline-block;
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 14px 32px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-gold {
  background-color: transparent;
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
}

.btn-gold:hover {
  background-color: var(--accent-gold);
  color: #000;
  box-shadow: 0 0 20px rgba(197, 168, 128, 0.4);
}

/* Hero */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
}

.hero-frame {
  max-width: 800px;
  border: 1px solid var(--accent-gold);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  box-shadow: inset 0 0 40px rgba(197, 168, 128, 0.05);
}

.hero-frame::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(197, 168, 128, 0.15);
  pointer-events: none;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 36px;
  font-style: italic;
}

/* Sections General */
.section {
  padding: 100px 0;
  border-bottom: 1px solid var(--border-color);
}

.heading-meta {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.8rem;
  color: var(--accent-gold);
  letter-spacing: 2px;
  display: block;
  margin-bottom: 12px;
}

.section h2 {
  font-size: 2.2rem;
  margin-bottom: 24px;
}

/* About */
.about-section {
  background-color: var(--panel-bg);
}

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

/* Portfolio Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 48px;
}

.portfolio-card {
  border: 1px solid var(--border-color);
  padding: 8px;
  background-color: var(--bg-color);
  transition: all 0.3s;
}

.portfolio-card:hover {
  border-color: var(--accent-gold);
}

.portfolio-card .img-wrapper {
  aspect-ratio: 1/1;
  overflow: hidden;
  margin-bottom: 16px;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(110%);
  transition: filter 0.4s;
}

.portfolio-card:hover img {
  filter: grayscale(0%) contrast(100%);
}

.portfolio-card .info {
  padding: 10px 4px;
}

.portfolio-card h3 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.portfolio-card .tag {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.75rem;
  color: var(--accent-gold);
}

/* Booking Section */
.booking-container {
  max-width: 700px;
}

.booking-desc {
  color: var(--text-muted);
  font-size: 1rem;
  margin: 12px 0 40px;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.booking-form input,
.booking-form textarea {
  background-color: var(--panel-bg);
  border: 1px solid var(--border-color);
  padding: 14px;
  color: #fff;
  font-family: inherit;
  outline: none;
  font-size: 0.95rem;
}

.booking-form input:focus,
.booking-form textarea:focus {
  border-color: var(--accent-gold);
}

/* Footer */
.footer {
  text-align: center;
  padding: 60px 40px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 800px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .navbar {
    flex-direction: column;
    gap: 15px;
  }
}
