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

:root {
  --primary: #1a1a1a;
  --secondary: #8b7355;
  --accent: #c9a961;
  --light: #f7f5f2;
  --white: #ffffff;
  --text: #4a4a4a;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  color: var(--primary);
  line-height: 1.2;
}

h1 {
  font-size: 3.8rem;
  font-weight: 300;
}

h2 {
  font-size: 2.8rem;
  margin-bottom: 1.2rem;
}

h3 {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  color: var(--white);
  padding: 20px;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.privacy-popup.show {
  transform: translateY(0);
}

.privacy-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.privacy-content p {
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.5;
}

.privacy-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

.privacy-actions a {
  color: var(--accent);
  font-size: 0.9rem;
}

.privacy-actions button {
  background: var(--accent);
  color: var(--primary);
  border: none;
  padding: 10px 24px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.privacy-actions button:hover {
  background: var(--white);
}

.header {
  background: var(--white);
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1000;
}

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

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.5px;
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav a {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 400;
  position: relative;
}

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

.nav a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  width: 26px;
  height: 2px;
  background: var(--primary);
  transition: all 0.3s ease;
}

.hero {
  background: var(--light);
  padding: 80px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-label {
  display: inline-block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary);
  margin-bottom: 20px;
  font-weight: 500;
}

.hero-text h1 {
  margin-bottom: 24px;
}

.hero-text p {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 32px;
  color: var(--text);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 50px;
}

.btn-primary,
.btn-outline,
.btn-product,
.btn-submit {
  display: inline-block;
  padding: 15px 32px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: 'Jost', sans-serif;
}

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

.btn-primary:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-product {
  background: var(--secondary);
  color: var(--white);
  width: 100%;
  text-align: center;
  padding: 14px;
}

.btn-product:hover {
  background: var(--primary);
}

.btn-submit {
  background: var(--primary);
  color: var(--white);
  width: 100%;
  padding: 16px;
  font-size: 1rem;
}

.btn-submit:hover {
  background: var(--secondary);
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text);
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: var(--accent);
  color: var(--primary);
  padding: 12px 24px;
  font-size: 0.9rem;
  font-weight: 500;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary);
  margin-bottom: 12px;
  font-weight: 500;
}

.philosophy,
.services,
.showcase,
.expertise,
.process,
.testimonials,
.content-section,
.principles,
.products,
.luxury-features {
  padding: 100px 0;
}

.philosophy {
  background: var(--white);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.philosophy-card {
  background: var(--light);
  padding: 40px;
}

.card-number,
.principle-number,
.luxury-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  color: var(--accent);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 20px;
  display: block;
}

.philosophy-card h3 {
  margin-bottom: 16px;
}

.philosophy-card p {
  font-size: 0.95rem;
  line-height: 1.8;
}

.services {
  background: var(--light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--white);
  padding: 40px 32px;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
  margin-bottom: 16px;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.8;
}

.showcase {
  background: var(--white);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.showcase-item {
  position: relative;
  overflow: hidden;
}

.showcase-item img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.showcase-item:hover img {
  transform: scale(1.05);
}

.showcase-info {
  padding: 30px 0;
}

.project-type {
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--secondary);
  margin-bottom: 12px;
  font-weight: 500;
}

.showcase-info h3 {
  margin-bottom: 12px;
}

.showcase-info p {
  font-size: 0.95rem;
  line-height: 1.8;
}

.expertise {
  background: var(--light);
}

.expertise-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.expertise-text p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.expertise-text .btn-primary {
  margin-top: 20px;
}

.expertise-image img {
  width: 100%;
  height: auto;
}

.process {
  background: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.process-step {
  padding: 40px 32px;
  background: var(--light);
}

.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  color: var(--accent);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 20px;
  display: block;
}

.process-step h3 {
  margin-bottom: 12px;
}

.process-step p {
  font-size: 0.95rem;
  line-height: 1.8;
}

.testimonials {
  background: var(--light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  padding: 40px;
}

.testimonial-card p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author strong {
  display: block;
  color: var(--primary);
  margin-bottom: 4px;
  font-weight: 500;
}

.testimonial-author span {
  font-size: 0.9rem;
  color: var(--secondary);
}

.page-hero {
  background: var(--light);
  padding: 80px 0;
}

.content-section {
  background: var(--white);
}

.content-text-full {
  max-width: 900px;
  margin: 0 auto;
}

.content-text-full p {
  margin-bottom: 24px;
  line-height: 1.8;
  font-size: 1.05rem;
}

.principles {
  background: var(--light);
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.principle-item {
  background: var(--white);
  padding: 40px;
}

.principle-item h3 {
  margin-bottom: 16px;
}

.principle-item p {
  font-size: 0.95rem;
  line-height: 1.8;
}

.products {
  background: var(--white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.product-card {
  background: var(--light);
  padding: 40px;
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.product-card h3 {
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.product-card p {
  font-size: 0.95rem;
  margin-bottom: 12px;
  line-height: 1.7;
}

.product-card .price {
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--secondary);
  margin: 20px 0;
  font-family: 'Cormorant Garamond', serif;
}

.luxury-features {
  background: var(--light);
}

.luxury-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.luxury-item {
  background: var(--white);
  padding: 40px;
}

.luxury-item h3 {
  margin-bottom: 16px;
}

.luxury-item p {
  font-size: 0.95rem;
  line-height: 1.8;
}

.contact-hero {
  background: var(--light);
  padding: 80px 0 60px;
  text-align: center;
}

.contact-hero h1 {
  margin-bottom: 16px;
}

.contact-hero p {
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto;
}

.contact-main {
  padding: 80px 0;
  background: var(--white);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info h2 {
  margin-bottom: 20px;
}

.contact-info > p {
  margin-bottom: 40px;
  line-height: 1.8;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.info-item h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.info-item p {
  font-size: 0.95rem;
  line-height: 1.7;
}

.contact-form-wrapper {
  background: var(--light);
  padding: 50px;
}

.contact-form h2 {
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--primary);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

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

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.checkbox-group {
  margin-top: 28px;
}

.checkbox-label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.6;
}

.checkbox-label input[type='checkbox'] {
  width: auto;
  margin-top: 4px;
  cursor: pointer;
}

.checkbox-label a {
  color: var(--secondary);
  text-decoration: underline;
}

.map-section {
  padding: 80px 0;
  background: var(--light);
}

.map-wrapper {
  width: 100%;
  height: 500px;
  overflow: hidden;
  margin-top: 40px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
}

.thankyou-section,
.error-section {
  min-height: calc(100vh - 50px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light);
  padding: 80px 0;
}

.thankyou-content,
.error-content {
  text-align: center;
  max-width: 700px;
}

.thankyou-content h1,
.error-content h1 {
  margin-bottom: 24px;
}

.error-content h1 {
  font-size: 7rem;
  color: var(--accent);
}

.error-content h2 {
  margin-bottom: 16px;
}

.thankyou-content p,
.error-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.thankyou-actions,
.error-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.final-cta {
  background: var(--primary);
  color: var(--white);
  padding: 100px 0;
}

.cta-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-box .section-label {
  color: var(--accent);
}

.cta-box h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.cta-box p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cta-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cta-contact span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.phone-link {
  font-size: 1.3rem;
  color: var(--accent);
  font-weight: 500;
}

.footer {
  background: var(--primary);
  color: var(--white);
  padding: 40px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-info p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

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

.policy-content {
  padding: 80px 0;
  background: var(--white);
}

.policy-content h1 {
  margin-bottom: 32px;
}

.policy-content h2 {
  margin-top: 48px;
  margin-bottom: 24px;
  font-size: 2rem;
}

.policy-content h3 {
  margin-top: 32px;
  margin-bottom: 16px;
}

.policy-content p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.policy-content ul,
.policy-content ol {
  margin-bottom: 24px;
  padding-left: 32px;
}

.policy-content li {
  margin-bottom: 12px;
  line-height: 1.8;
}

.policy-date {
  font-style: italic;
  color: var(--text);
  margin-bottom: 32px;
}

@media (max-width: 1024px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .hero-grid,
  .expertise-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-image {
    order: -1;
  }

  .services-grid,
  .process-grid,
  .testimonials-grid,
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase-grid,
  .philosophy-grid,
  .principles-grid,
  .luxury-grid {
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white);
    padding: 100px 32px 32px;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.4s ease;
    z-index: 999;
  }

  .nav.active {
    right: 0;
  }

  .nav ul {
    flex-direction: column;
    gap: 24px;
  }

  .menu-toggle {
    display: flex;
    z-index: 1001;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .hero,
  .philosophy,
  .services,
  .showcase,
  .expertise,
  .process,
  .testimonials,
  .content-section,
  .principles,
  .products,
  .luxury-features,
  .final-cta {
    padding: 60px 0;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }

  .services-grid,
  .process-grid,
  .testimonials-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 40px 24px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  .logo {
    font-size: 1.3rem;
  }

  .hero,
  .philosophy,
  .services,
  .showcase,
  .expertise,
  .process,
  .testimonials,
  .content-section,
  .principles,
  .products,
  .luxury-features,
  .final-cta {
    padding: 50px 0;
  }

  .hero-grid {
    gap: 40px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .philosophy-card,
  .service-card,
  .process-step,
  .principle-item,
  .luxury-item,
  .product-card,
  .testimonial-card {
    padding: 32px 24px;
  }

  .btn-primary,
  .btn-outline {
    padding: 14px 28px;
    font-size: 0.9rem;
  }

  .privacy-content {
    flex-direction: column;
    text-align: center;
  }

  .privacy-actions {
    flex-direction: column;
    width: 100%;
  }

  .privacy-actions button {
    width: 100%;
  }

  .thankyou-actions,
  .error-actions {
    flex-direction: column;
    width: 100%;
  }

  .thankyou-actions a,
  .error-actions a {
    width: 100%;
    text-align: center;
  }

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

  .footer-links {
    justify-content: center;
  }

  .stat-number {
    font-size: 2rem;
  }

  .card-number,
  .principle-number,
  .luxury-number,
  .step-number {
    font-size: 2.8rem;
  }
}

@media (max-width: 360px) {
  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .container {
    padding: 0 12px;
  }

  .hero-badge {
    bottom: 20px;
    left: 20px;
    padding: 10px 20px;
    font-size: 0.85rem;
  }
}
