* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --dark-red: #1a0a0a;
  --blood-red: #4d1a1a;
  --medium-red: #6b2020;
  --accent-red: #8b2a2a;
  --gold: #c5a572;
  --light-gold: #d4af37;
  --bright-gold: #e8c468;
  --dark-gold: #9a7b3d;
  --cream: #e8dcc4;
  --off-white: #f5f3ed;
  --text-muted: #b8ad94;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--cream);
  background-color: var(--dark-red);
  overflow-x: hidden;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(26, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
  background: rgba(26, 10, 10, 0.96);
  box-shadow: 0 6px 40px rgba(0, 0, 0, 0.6);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.25rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-text {
  font-size: 1.7rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--light-gold) 0%, var(--bright-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
}

.logo-text:hover {
  transform: scale(1.03);
  filter: brightness(1.2);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.8rem;
  align-items: center;
}

.nav-link {
  color: var(--cream);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
  letter-spacing: 0.5px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--bright-gold));
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.nav-link:hover {
  color: var(--bright-gold);
}

.nav-link:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--gold);
  margin: 4px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 6rem;
  background: linear-gradient(135deg, var(--dark-red) 0%, var(--blood-red) 40%, var(--medium-red) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 560px;
  height: 560px;
  background: linear-gradient(135deg, rgba(197, 165, 114, 0.15) 0%, rgba(212, 175, 55, 0.1) 100%);
  border-radius: 50%;
  box-shadow: 0 0 100px rgba(197, 165, 114, 0.2);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(45deg, transparent 0%, transparent 48%, rgba(197, 165, 114, 0.04) 50%, transparent 52%),
    linear-gradient(-45deg, transparent 0%, transparent 48%, rgba(197, 165, 114, 0.04) 50%, transparent 52%);
  background-size: 80px 80px;
  opacity: 0.6;
  animation: shimmer 25s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 0 0; }
  100% { background-position: 80px 80px; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content h1 {
  font-size: 5rem;
  margin-bottom: 1.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--bright-gold) 0%, var(--light-gold) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1.1;
  filter: drop-shadow(0 6px 25px rgba(197, 165, 114, 0.4));
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 3.5rem;
  color: var(--cream);
  opacity: 0.95;
  font-weight: 400;
  letter-spacing: 0.8px;
}

.cta-button {
  background: linear-gradient(135deg, var(--gold) 0%, var(--light-gold) 50%, var(--bright-gold) 100%);
  background-size: 200% 100%;
  color: var(--dark-red);
  padding: 1.3rem 3.5rem;
  border: none;
  border-radius: 60px;
  font-size: 1.15rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 35px rgba(197, 165, 114, 0.5);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 15px 45px rgba(197, 165, 114, 0.7);
  background-position: 100% 0;
}

.cta-button:active {
  transform: translateY(-2px) scale(1.01);
}

.section {
  padding: 7rem 2rem;
  position: relative;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-about {
  background: linear-gradient(180deg, var(--blood-red) 0%, var(--medium-red) 100%);
  position: relative;
}

.section-about::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 1200px;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  box-shadow: 0 0 20px rgba(197, 165, 114, 0.5);
}

.section-story {
  background: linear-gradient(180deg, var(--medium-red) 0%, var(--blood-red) 100%);
  position: relative;
  padding-top: 8rem;
}

.section-services {
  background: linear-gradient(180deg, var(--blood-red) 0%, var(--dark-red) 100%);
}

.section-contact {
  background: linear-gradient(180deg, var(--dark-red) 0%, var(--blood-red) 100%);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

h2 {
  font-size: 3.5rem;
  margin-bottom: 3.5rem;
  text-align: center;
  font-weight: 900;
  background: linear-gradient(135deg, var(--bright-gold) 0%, var(--light-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 3px;
  filter: drop-shadow(0 4px 15px rgba(197, 165, 114, 0.3));
}

h3 {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  font-weight: 700;
  color: var(--light-gold);
}

h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--light-gold);
  margin-bottom: 0.4rem;
}

.about-content {
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
}

.about-text p {
  font-size: 1.35rem;
  line-height: 2;
  color: var(--cream);
  font-weight: 400;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.story-box {
  background: linear-gradient(135deg, rgba(77, 26, 26, 0.6) 0%, rgba(26, 10, 10, 0.8) 100%);
  padding: 3rem 2.5rem;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  border: 3px solid rgba(197, 165, 114, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: left;
}

.story-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(197, 165, 114, 0.3);
  border-color: var(--gold);
}

.story-box h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--bright-gold);
  text-align: center;
}

.story-box p {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--cream);
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 3.5rem;
  margin-top: 4.5rem;
}

.service-card {
  background: linear-gradient(135deg, rgba(77, 26, 26, 0.75) 0%, rgba(26, 10, 10, 0.85) 100%);
  padding: 3.5rem 3rem;
  border-radius: 25px;
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.4);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 3px solid rgba(197, 165, 114, 0.35);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: -60%;
  left: -60%;
  width: 220%;
  height: 220%;
  background: radial-gradient(circle, rgba(197, 165, 114, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 25px 70px rgba(197, 165, 114, 0.5);
  border-color: var(--light-gold);
}

.service-icon {
  color: var(--gold);
  margin-bottom: 2rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
}

.service-card:hover .service-icon {
  transform: scale(1.2) rotate(8deg);
  color: var(--bright-gold);
  filter: drop-shadow(0 0 20px rgba(197, 165, 114, 0.6));
}

.service-card h3 {
  color: var(--bright-gold);
  margin-bottom: 1.3rem;
  font-size: 2rem;
}

.service-card p {
  color: var(--cream);
  line-height: 1.9;
  font-size: 1.1rem;
  opacity: 0.92;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
  max-width: 1350px;
  margin: 0 auto;
}

.contact-left {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.owner-photo {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
}

.owner-photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 25px;
  border: 4px solid var(--gold);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.owner-photo img:hover {
  transform: scale(1.03);
  box-shadow: 0 25px 75px rgba(197, 165, 114, 0.4);
  border-color: var(--bright-gold);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.contact-detail-item {
  display: flex;
  gap: 1.8rem;
  align-items: flex-start;
  padding: 2rem;
  background: rgba(77, 26, 26, 0.45);
  border-radius: 18px;
  border: 2px solid rgba(197, 165, 114, 0.25);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-detail-item:hover {
  background: rgba(77, 26, 26, 0.65);
  border-color: var(--gold);
  transform: translateX(10px);
  box-shadow: 0 8px 30px rgba(197, 165, 114, 0.2);
}

.contact-detail-item svg {
  color: var(--light-gold);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.contact-detail-item h4 {
  color: var(--bright-gold);
  margin-bottom: 0.4rem;
  font-size: 1.1rem;
}

.contact-detail-item p {
  color: var(--cream);
  font-size: 1.1rem;
  line-height: 1.6;
}

.contact-right {
  position: sticky;
  top: 110px;
}

.quote-box {
  background: linear-gradient(135deg, rgba(77, 26, 26, 0.75) 0%, rgba(26, 10, 10, 0.92) 100%);
  padding: 3.5rem;
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 3px solid rgba(197, 165, 114, 0.4);
  transition: all 0.5s ease;
}

.quote-box:hover {
  box-shadow: 0 25px 75px rgba(197, 165, 114, 0.4);
  border-color: var(--light-gold);
}

.quote-box h3 {
  font-size: 2.3rem;
  margin-bottom: 2.5rem;
  text-align: center;
  color: var(--bright-gold);
}

#contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

#contact-form input,
#contact-form textarea {
  padding: 1.3rem;
  border: 2px solid rgba(197, 165, 114, 0.35);
  border-radius: 14px;
  font-size: 1.05rem;
  font-family: inherit;
  background: rgba(26, 10, 10, 0.7);
  color: var(--cream);
  transition: all 0.4s ease;
}

#contact-form input::placeholder,
#contact-form textarea::placeholder {
  color: var(--text-muted);
}

#contact-form input:focus,
#contact-form textarea:focus {
  outline: none;
  border-color: var(--light-gold);
  background: rgba(26, 10, 10, 0.85);
  box-shadow: 0 0 25px rgba(197, 165, 114, 0.25);
  transform: translateY(-2px);
}

#contact-form textarea {
  resize: vertical;
  min-height: 160px;
}

#contact-form button {
  margin-top: 1.2rem;
}

.footer {
  background: #0a0e0b;
  color: var(--cream);
  padding: 4rem 2rem 2rem;
  border-top: 3px solid rgba(197, 165, 114, 0.3);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
}

.footer-section h3 {
  font-size: 1.4rem;
  margin-bottom: 0;
  color: var(--bright-gold);
  font-weight: 700;
}

.footer-section p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.footer-center {
  text-align: center;
}

.footer-right {
  text-align: right;
}

.legal-link {
  color: var(--bright-gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-link:hover {
  color: var(--light-gold);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(197, 165, 114, 0.2);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0;
}

.privacy-hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blood-red) 0%, var(--dark-red) 100%);
  padding: 8rem 2rem 6rem;
  overflow: hidden;
}

.privacy-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(197, 165, 114, 0.1) 0%, transparent 60%);
}

.privacy-hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.privacy-hero h1 {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--bright-gold) 0%, var(--light-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 20px rgba(197, 165, 114, 0.3);
}

.privacy-hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin: 0;
}

.privacy-content {
  background: linear-gradient(180deg, var(--dark-red) 0%, var(--blood-red) 100%);
  padding: 6rem 2rem;
}

.privacy-container {
  max-width: 900px;
  margin: 0 auto;
}

.privacy-section {
  background: rgba(77, 26, 26, 0.4);
  border: 2px solid rgba(197, 165, 114, 0.2);
  border-radius: 20px;
  padding: 3rem;
  margin-bottom: 2.5rem;
  transition: all 0.4s ease;
}

.privacy-section:hover {
  border-color: rgba(197, 165, 114, 0.4);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(-5px);
}

.privacy-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--bright-gold);
  font-weight: 700;
  text-align: left;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: var(--bright-gold);
}

.privacy-section p {
  color: var(--cream);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.privacy-section ul {
  margin-left: 2rem;
  line-height: 1.8;
  color: var(--cream);
}

.privacy-section ul li {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.privacy-section ul li strong {
  color: var(--gold);
}

.contact-info-box {
  background: rgba(26, 10, 10, 0.5);
  border: 2px solid rgba(197, 165, 114, 0.3);
  border-radius: 15px;
  padding: 2rem;
  margin-top: 1.5rem;
}

.contact-info-box p {
  margin-bottom: 0.8rem;
  font-size: 1.05rem;
}

.contact-info-box a {
  color: var(--bright-gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-box a:hover {
  color: var(--light-gold);
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .contact-right {
    position: static;
  }

  .story-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 1rem 1.5rem;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: rgba(26, 10, 10, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-link {
    font-size: 1.2rem;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .hero-content p {
    font-size: 1.2rem;
  }

  .hero::before {
    width: 400px;
    height: 400px;
  }

  h2 {
    font-size: 2.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 4.5rem 1.5rem;
  }

  .owner-photo {
    max-width: 320px;
  }

  .quote-box {
    padding: 2.5rem;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
