:root {
  --charcoal: #121212;
  --off-white: #f7f3ef;
  --gold: #d4a34e;
  --gold-light: #e8c97a;
  --gold-deep: #b8893a;
  --gray-dark: #1e1e1e;
  --gray-medium: #4a4a4a;
  --gray-light: #c8c4c0;
  --gray-border: rgba(255,255,255,0.08);

  --font-serif: 'Syne', sans-serif;
  --font-sans: 'Inter', sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2.5rem;
  --space-lg: 5rem;
  --space-xl: 8rem;

  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --shadow-sm: 0 2px 12px rgba(0,0,0,0.15);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.2);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.3);
  --shadow-gold: 0 4px 20px rgba(212, 163, 78, 0.25);
}

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

body {
  font-family: var(--font-sans);
  color: var(--off-white);
  background-color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6, .logo {
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.8rem, 8vw, 5.5rem);
}

h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: var(--space-md);
}

h3 {
  font-size: 1.6rem;
  margin-bottom: var(--space-sm);
}

h4 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
  font-weight: 600;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-lg);
  position: relative;
  display: inline-block;
  width: 100%;
}

.section-title::after {
  content: '';
  display: block;
  width: 70px;
  height: 2px;
  background: var(--gold);
  margin: var(--space-sm) auto 0;
  border-radius: 2px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.narrow-text {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.85;
}

.gold {
  color: var(--gold);
}

a {
  text-decoration: none;
  color: var(--off-white);
  transition: var(--transition);
}

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

p {
  margin-bottom: 1rem;
}

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

.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:active::after {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--gold);
  color: var(--charcoal);
}

.btn-primary:hover {
  background: var(--gold-light);
  color: var(--charcoal);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

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

.btn-outline:hover {
  background: var(--gold);
  color: var(--charcoal);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(18, 18, 18, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-border);
  padding: var(--space-sm) 0;
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 2px 30px rgba(0,0,0,0.4);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.logo-accent {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: var(--space-md);
  align-items: center;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  padding-bottom: 4px;
}

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

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

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  z-index: 1001;
}

.bar {
  width: 26px;
  height: 2px;
  background: var(--off-white);
  transition: var(--transition);
  border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.hero {
  height: 100vh;
  min-height: 650px;
  background-image: linear-gradient(
    to bottom,
    rgba(0,0,0,0.25) 0%,
    rgba(0,0,0,0.55) 50%,
    rgba(0,0,0,0.75) 100%
  ), url('https://images.unsplash.com/photo-1542038784456-1ea8e935640e?w=1600&h=1000&fit=crop');
  background-size: cover;
  background-position: center 30%;
  position: relative;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content h1 {
  margin-bottom: var(--space-sm);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: var(--space-md);
  opacity: 0.85;
  font-weight: 300;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-md);
}

.cards-flex {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
}

.teaser-card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 4/5;
  display: block;
}

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

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

.overlay-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent 0%, rgba(0,0,0,0.85) 100%);
  padding: var(--space-lg) var(--space-md) var(--space-md);
  text-align: center;
  font-weight: 500;
  font-size: 1.05rem;
  transform: translateY(30%);
  transition: var(--transition-slow);
  opacity: 0;
}

.teaser-card:hover .overlay-caption {
  transform: translateY(0);
  opacity: 1;
}

.service-card {
  background: var(--gray-dark);
  padding: var(--space-md) var(--space-md);
  border-radius: 12px;
  text-align: center;
  flex: 1;
  min-width: 260px;
  transition: var(--transition);
  border: 1px solid var(--gray-border);
}

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

.service-card i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.testimonials {
  background: var(--gray-dark);
  padding: var(--space-xl) 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
}

.testimonial {
  background: rgba(255,255,255,0.04);
  padding: var(--space-md);
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--gray-border);
  transition: var(--transition);
}

.testimonial:hover {
  border-color: rgba(212, 163, 78, 0.3);
  transform: translateY(-2px);
}

.testimonial i {
  color: var(--gold);
  font-size: 1.8rem;
  margin-bottom: var(--space-sm);
  opacity: 0.6;
}

.testimonial p {
  font-style: italic;
  margin-bottom: var(--space-sm);
  font-size: 1.05rem;
}

.testimonial span {
  font-size: 0.85rem;
  opacity: 0.6;
  font-weight: 400;
}

.cta-banner {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  padding: var(--space-xl) 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--charcoal);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.filter-buttons {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.filter-btn {
  background: transparent;
  border: 1.5px solid var(--gray-border);
  color: var(--gray-light);
  padding: 10px 24px;
  margin: 0 4px 10px;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-md);
}

.gallery-item {
  aspect-ratio: 4/5;
  overflow: hidden;
  cursor: pointer;
  border-radius: 4px;
}

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

.gallery-item:hover img {
  transform: scale(1.08);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.pricing-card {
  background: var(--gray-dark);
  border-radius: 16px;
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--gray-border);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 163, 78, 0.3);
}

.pricing-card.featured {
  border: 2px solid var(--gold);
  transform: scale(1.03);
  box-shadow: var(--shadow-gold);
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.price {
  font-size: 2.8rem;
  font-family: var(--font-serif);
  color: var(--gold);
  margin: var(--space-md) 0;
  font-weight: 700;
}

.pricing-card ul {
  list-style: none;
  margin: var(--space-md) 0;
}

.pricing-card li {
  padding: var(--space-xs) 0;
  border-bottom: 1px solid var(--gray-border);
  font-size: 0.95rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.product-card {
  background: var(--gray-dark);
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--gray-border);
  display: flex;
  flex-direction: column;
}

.product-card .card-body {
  padding: var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card .card-body .btn {
  margin-top: auto;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 163, 78, 0.3);
}

.product-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.product-card h3 {
  margin-top: var(--space-md);
}

.product-card p {
  padding: 0 var(--space-sm);
  font-size: 0.9rem;
  opacity: 0.7;
}

.product-price {
  font-size: 1.6rem;
  font-family: var(--font-serif);
  color: var(--gold);
  margin: var(--space-sm) 0;
  font-weight: 600;
}

.contact-form,
.payment-form {
  background: var(--gray-dark);
  padding: var(--space-lg);
  border-radius: 16px;
  border: 1px solid var(--gray-border);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--gray-border);
  color: var(--off-white);
  font-family: var(--font-sans);
  border-radius: 6px;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 3px rgba(212, 163, 78, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-light);
  opacity: 0.5;
}

.site-footer {
  background: #0a0a0a;
  padding: var(--space-xl) 0 var(--space-md);
  margin-top: var(--space-xl);
  border-top: 1px solid var(--gray-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-brand h3 {
  font-size: 1.4rem;
  margin-bottom: var(--space-sm);
}

.footer-brand p {
  font-size: 0.9rem;
  opacity: 0.6;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.9rem;
  opacity: 0.7;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-contact p {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 0.5rem;
}

.footer-contact i {
  margin-right: 0.5rem;
  color: var(--gold);
}

.social-links {
  margin-top: var(--space-sm);
  display: flex;
  gap: var(--space-sm);
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gray-border);
  font-size: 1rem;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-md);
  border-top: 1px solid var(--gray-border);
  font-size: 0.8rem;
  opacity: 0.5;
}

section {
  padding: var(--space-xl) 0;
}

.payment-notice {
  background: rgba(212, 163, 78, 0.08);
  border-left: 3px solid var(--gold);
  padding: var(--space-md);
  margin: var(--space-md) 0;
  border-radius: 0 8px 8px 0;
  font-size: 0.95rem;
}

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

.mt-5 {
  margin-top: var(--space-lg);
}

.page-hero {
  padding-top: calc(80px + var(--space-lg));
  padding-bottom: var(--space-md);
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.two-column-reverse {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.responsive-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.rounded-img {
  border-radius: 12px;
  width: 100%;
}

.about-section {
  align-items: stretch;
}

.about-portrait {
  height: 100%;
}

.about-portrait img {
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  width: 100%;
}

.info-card {
  background: var(--gray-dark);
  padding: var(--space-md);
  border-radius: 12px;
  border: 1px solid var(--gray-border);
}

.map-container {
  margin-top: var(--space-md);
  border-radius: 12px;
  overflow: hidden;
}

.full-width-btn {
  width: 100%;
}

.section-spacing {
  margin-top: var(--space-lg);
}

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

.cal-placeholder {
  border: 1px dashed var(--gold);
  padding: var(--space-md);
  text-align: center;
  border-radius: 12px;
  margin-bottom: var(--space-md);
  opacity: 0.7;
}

.cal-placeholder i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.payment-card {
  background: var(--gray-dark);
  padding: var(--space-md);
  border-radius: 12px;
}

.sandbox-notice {
  font-size: 0.8rem;
  margin-top: var(--space-sm);
  text-align: center;
  opacity: 0.5;
}

.privacy-note {
  margin-top: var(--space-sm);
  font-size: 0.8rem;
  opacity: 0.5;
}

@media (max-width: 1024px) {
  .container {
    padding: 0 1.5rem;
  }

  .two-column,
  .two-column-reverse,
  .responsive-column {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pricing-card.featured {
    transform: scale(1.02);
  }

  .pricing-card.featured:hover {
    transform: scale(1.02) translateY(-4px);
  }

  section {
    padding: 3.5rem 0;
  }

  .page-hero {
    padding-top: calc(80px + 1.5rem);
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
    z-index: 10001;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgba(18, 18, 18, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    z-index: 10000;
    overflow-y: auto;
  }

  .nav-links a {
    font-size: 1.2rem;
    letter-spacing: 3px;
  }

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

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

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
  }

  .container {
    padding: 0 16px;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-4px);
  }

  .hero-content {
    padding: 0 16px;
    max-width: 480px;
  }

  .hero-content h1 {
    font-size: 51px;
    margin-bottom: 0.75rem;
  }

  .hero-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
  }

  section {
    padding: 3rem 0;
  }

  .page-hero {
    padding-top: calc(80px + 0.5rem);
  }

  h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 1.25rem;
  }

  .section-title {
    margin-bottom: 1.5rem;
  }

  .intro-section .section-title {
    margin-bottom: 0.5rem;
  }

  .intro-section p {
    margin-bottom: 0;
  }

  .section-title::after {
    margin-top: 0.5rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 2rem;
  }

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

  .product-card .card-body {
    padding: 1.25rem;
  }

  .product-card h3 {
    margin-top: 1.25rem;
  }

  .pricing-card {
    padding: 2.5rem 1.25rem;
  }

  .contact-form,
  .payment-form {
    padding: 1.5rem;
  }

  .site-header {
    padding: 12px 0;
  }

  .info-card {
    padding: 1.25rem;
  }

  .map-container {
    margin-top: 1.25rem;
  }

  .section-spacing {
    margin-top: 3rem;
  }

  .cal-placeholder {
    padding: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .payment-card {
    padding: 1.25rem;
  }

  .about-content p {
    margin-bottom: 1rem;
  }

  .btn {
    display: inline-block;
    width: auto;
    padding: 14px 24px;
  }

  .two-column,
  .two-column-reverse,
  .responsive-column {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero {
    min-height: 480px;
    background-image: linear-gradient(
      to bottom,
      rgba(0,0,0,0.15) 0%,
      rgba(0,0,0,0.40) 50%,
      rgba(0,0,0,0.60) 100%
    ), url('https://images.unsplash.com/photo-1542038784456-1ea8e935640e?w=1600&h=1000&fit=crop');
  }

  .testimonials {
    padding: 3rem 0;
  }

  .service-card {
    padding: 1.5rem;
  }

  .teaser-card .overlay-caption {
    padding: 2rem 1rem 1rem;
  }

  .testimonial-grid {
    gap: 1rem;
  }

  .footer-grid {
    gap: 2rem;
    margin-bottom: 2rem;
  }
}
