@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 300;
  color: #1A1A1A;
  background-color: #FAF8F5;
  line-height: 1.6;
}

.font-display {
  font-family: 'Space Grotesk', sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 56px;
  background-color: #FFFFFF;
  border-bottom: 1px solid rgba(201, 169, 166, 0.15);
  z-index: 50;
}

nav .container {
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

nav .logo img {
  height: 36px;
  width: auto;
}

nav .nav-links {
  display: none;
}

@media (min-width: 768px) {
  nav .nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
  }
}

nav .nav-links a {
  font-size: 14px;
  font-weight: 300;
  color: #666;
  transition: color 0.2s ease;
}

nav .nav-links a:hover,
nav .nav-links a.active {
  color: #C9A9A6;
}

nav .contact-btn {
  display: none;
}

@media (min-width: 640px) {
  nav .contact-btn {
    display: block;
    padding: 6px 20px;
    font-size: 12px;
    font-weight: 400;
    color: #FFF;
    background-color: #C9A9A6;
    border: 1px solid #C9A9A6;
    transition: all 0.2s ease;
  }
}

nav .contact-btn:hover {
  background-color: transparent;
  color: #C9A9A6;
}

main {
  padding-top: 56px;
  background-color: #FAF8F5;
}

section {
  width: 100%;
}

.hero-section {
  position: relative;
  overflow: hidden;
  height: 100vh;
  min-height: 600px;
}

.hero-section video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.5);
}

.hero-section .content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 24px;
  text-align: center;
}

.hero-section h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4.5vw, 56px);
  line-height: 1.2;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: #FFFFFF;
}

.hero-section p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
  margin-top: 24px;
  max-width: 800px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 1024px) {
  .container {
    padding: 0 40px;
  }
}

.section-padding {
  padding: 80px 0;
}

.section-padding-lg {
  padding: 100px 0;
}

.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-cols-2-lg {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gap-3 {
  gap: 12px;
}

.gap-4 {
  gap: 16px;
}

.gap-5 {
  gap: 20px;
}

.gap-6 {
  gap: 24px;
}

.gap-12 {
  gap: 48px;
}

@media (min-width: 1024px) {
  .gap-16-lg {
    gap: 64px;
  }
}

.text-center {
  text-align: center;
}

.about-section h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #1A1A1A;
  line-height: 1.4;
  margin-bottom: 24px;
}

.about-section p {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  font-weight: 300;
  margin-bottom: 16px;
}

.about-section p:last-child {
  color: #1A1A1A;
  font-weight: 400;
}

.about-section img {
  width: 100%;
  object-fit: cover;
  max-height: 600px;
}

.divider {
  height: 1px;
  background-color: rgba(201, 169, 166, 0.2);
  margin: 0 auto;
}

.process-section .section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: #1A1A1A;
  line-height: 1.5;
  margin-bottom: 48px;
}

.process-section .process-grid {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .process-section .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.process-section .process-grid img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16/10;
}

.process-section .process-label {
  font-size: 14px;
  font-weight: 300;
  color: #666;
  text-align: center;
  margin-top: 8px;
}

.cta-section {
  padding: 60px 0 80px;
  background-color: #F5F0EB;
  text-align: center;
}

.cta-section .cta-title {
  font-size: 14px;
  color: #888;
  font-weight: 300;
  margin-bottom: 24px;
}

.cta-section .cta-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.cta-section .cta-links a {
  font-size: 15px;
  font-weight: 300;
  color: #C9A9A6;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.service-card,
.product-card {
  margin-bottom: 20px;
}

.service-card img,
.product-card img {
  width: 100%;
  object-fit: cover;
  margin-bottom: 16px;
}

.service-card img {
  aspect-ratio: 16/10;
}

.product-card img {
  aspect-ratio: 4/3;
}

.service-card p,
.product-card p {
  font-size: 14px;
  font-weight: 300;
  color: #1A1A1A;
  line-height: 1.5;
}

.news-card {
  display: block;
  border: 1px solid rgba(201, 169, 166, 0.15);
  overflow: hidden;
}

.news-card .news-image {
  height: 180px;
  background-color: #FFFFFF;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-card .news-image .news-icon {
  font-size: 40px;
  font-weight: 200;
  color: rgba(201, 169, 166, 0.15);
}

.news-card .news-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 11px;
  font-weight: 400;
  color: #C9A9A6;
  border: 1px solid rgba(201, 169, 166, 0.3);
  padding: 2px 10px;
}

.news-card .news-content {
  padding: 20px;
}

.news-card .news-content h3 {
  font-size: 15px;
  font-weight: 400;
  color: #1A1A1A;
  line-height: 1.5;
  margin-bottom: 8px;
}

.news-card .news-content p {
  font-size: 13px;
  font-weight: 300;
  color: #888;
  line-height: 1.6;
  margin-bottom: 16px;
}

.news-card .news-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news-card .news-footer .news-date {
  font-size: 12px;
  font-weight: 300;
  color: #AAA;
}

.news-card .news-footer .news-read {
  font-size: 12px;
  font-weight: 400;
  color: #C9A9A6;
}

.contact-section .contact-image img {
  width: 100%;
  object-fit: cover;
  max-height: 500px;
  margin-bottom: 32px;
}

.contact-section .map-placeholder {
  height: 240px;
  background-color: #F0EBE5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}

.contact-section .map-placeholder .map-content {
  text-align: center;
}

.contact-section .map-placeholder .map-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(201, 169, 166, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.contact-section .map-placeholder .map-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #C9A9A6;
  stroke-width: 1.5;
}

.contact-section .map-placeholder .map-title {
  font-size: 14px;
  font-weight: 300;
  color: #1A1A1A;
}

.contact-section .map-placeholder .map-address {
  font-size: 12px;
  font-weight: 300;
  color: #999;
  margin-top: 4px;
}

.contact-section .contact-info {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .contact-section .contact-info {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-section .contact-item {
  text-align: center;
  padding: 24px 16px;
  border: 1px solid rgba(201, 169, 166, 0.15);
}

.contact-section .contact-item .contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(201, 169, 166, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.contact-section .contact-item .contact-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #C9A9A6;
  stroke-width: 1.5;
}

.contact-section .contact-item .contact-label {
  font-size: 13px;
  font-weight: 400;
  color: #1A1A1A;
  margin-bottom: 4px;
}

.contact-section .contact-item .contact-value {
  font-size: 12px;
  font-weight: 300;
  color: #888;
}

footer {
  padding: 24px 0;
  background-color: #F5F0EB;
  border-top: 1px solid rgba(201, 169, 166, 0.1);
}

footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

@media (min-width: 768px) {
  footer .container {
    flex-direction: row;
    justify-content: space-between;
  }
}

footer p {
  font-size: 12px;
  font-weight: 300;
  color: #AAA;
}