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

:root {
  --primary: #b8d4e8;
  --secondary: #d9e8f5;
  --accent: #8fb8d9;
  --light: #f4f8fc;
  --dark: #5a7a94;
  --text: #3d5266;
  --border: #d1e3f0;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: white;
  line-height: 1.7;
  font-size: 15px;
}

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

h1 {
  font-size: 3.2rem;
}
h2 {
  font-size: 2.4rem;
}
h3 {
  font-size: 1.7rem;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

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

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

.privacy-content p {
  margin: 0;
  font-size: 14px;
  flex: 1;
  min-width: 250px;
}

.privacy-content a {
  color: var(--primary);
  text-decoration: underline;
}

.btn-accept {
  background: var(--primary);
  color: var(--dark);
  border: none;
  padding: 12px 35px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  border-radius: 0;
  transition: 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-accept:hover {
  background: white;
}

.header {
  background: white;
  padding: 0;
  position: relative;
  border-bottom: 3px solid var(--primary);
  z-index: 1000;
}

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

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark);
  padding: 20px 0;
  display: flex;
  align-items: center;
}

.nav {
  display: flex;
  gap: 0;
  align-items: stretch;
}

.nav-link {
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
  padding: 0 20px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-left: 1px solid var(--border);
  transition: 0.3s;
}

.nav-link:hover,
.nav-link.active {
  background: var(--primary);
  color: var(--dark);
}

.menu-toggle {
  display: none;
  background: var(--primary);
  border: none;
  padding: 0 25px;
  color: var(--dark);
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 300;
}

.hero {
  background: linear-gradient(to bottom, var(--secondary) 0%, white 100%);
  padding: 100px 0;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: var(--primary);
  opacity: 0.3;
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
  background-image: url(../visual_gallery/seaside-wind-candle.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-title {
  font-size: 4.5rem;
  margin-bottom: 30px;
  font-weight: 300;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.15rem;
  margin-bottom: 45px;
  line-height: 1.9;
  color: var(--text);
}

.btn-primary {
  display: inline-block;
  background: var(--dark);
  color: white;
  padding: 18px 55px;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: 0.3s;
  border: 3px solid var(--dark);
}

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

.btn-secondary {
  display: inline-block;
  background: white;
  color: var(--dark);
  padding: 18px 55px;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 3px solid var(--dark);
  transition: 0.3s;
}

.btn-secondary:hover {
  background: var(--dark);
  color: white;
}

.btn-cta {
  display: inline-block;
  background: white;
  color: var(--dark);
  padding: 18px 55px;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: 0.3s;
  border: 3px solid white;
}

.btn-cta:hover {
  background: transparent;
  color: white;
}

.features {
  padding: 100px 0;
  background: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
}

.feature-card {
  padding: 0;
}

.feature-card h3 {
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.feature-card p {
  line-height: 1.9;
}

.about {
  padding: 100px 0;
  background: var(--light);
}

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

.about-image img {
  width: 100%;
}

.about-text h2 {
  margin-bottom: 30px;
}

.about-text p {
  margin-bottom: 25px;
  line-height: 1.9;
}

.about-text .btn-secondary {
  margin-top: 20px;
}

.collection {
  padding: 100px 0;
  background: white;
}

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

.section-header h2 {
  margin-bottom: 15px;
}

.section-header p {
  color: var(--accent);
  font-size: 16px;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.product-card {
  background: var(--light);
  overflow: hidden;
  transition: 0.3s;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(90, 122, 148, 0.15);
}

.product-image {
  aspect-ratio: 1;
  background: var(--secondary);
}

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

.product-info {
  padding: 35px;
  text-align: center;
}

.product-info h3 {
  margin-bottom: 15px;
}

.product-info p {
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.8;
}

.product-price {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 25px;
  font-family: 'Cormorant Garamond', serif;
}

.btn-product {
  display: inline-block;
  background: var(--dark);
  color: white;
  padding: 12px 35px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.3s;
}

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

.benefits {
  padding: 100px 0;
  background: var(--dark);
  color: white;
}

.benefits-content h2 {
  text-align: center;
  color: white;
  margin-bottom: 60px;
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
}

.benefit-item h4 {
  color: white;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.benefit-item p {
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.9);
}

.cta {
  padding: 100px 0;
  background: var(--primary);
  text-align: center;
}

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

.cta-content p {
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 40px;
}

.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.9);
  padding: 50px 0 25px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  margin-bottom: 40px;
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 20px;
}

.footer-info p {
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 13px;
  transition: 0.3s;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
  font-size: 13px;
}

.page-hero {
  background: var(--primary);
  padding: 100px 0;
  text-align: center;
}

.page-hero h1 {
  color: var(--dark);
  margin-bottom: 20px;
}

.page-hero p {
  font-size: 1.15rem;
  color: var(--text);
}

.limited-intro,
.mini-intro {
  padding: 100px 0;
  background: white;
}

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

.intro-content h2 {
  margin-bottom: 30px;
  text-align: center;
}

.intro-content p {
  margin-bottom: 25px;
  line-height: 1.9;
}

.limited-products,
.mini-products {
  padding: 100px 0;
  background: var(--light);
}

.products-showcase {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.showcase-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: white;
  padding: 50px;
}

.showcase-image {
  aspect-ratio: 4/3;
  background: var(--secondary);
  position: relative;
}

.showcase-card:nth-child(1) .showcase-image {
  background-image: url(../visual_gallery/1.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.showcase-card:nth-child(2) .showcase-image {
  background-image: url(../visual_gallery/2.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.showcase-card:nth-child(3) .showcase-image {
  background-image: url(../visual_gallery/3.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--dark);
  color: white;
  padding: 10px 25px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.showcase-content h3 {
  margin-bottom: 25px;
  font-size: 2.2rem;
}

.showcase-content p {
  line-height: 1.9;
  margin-bottom: 30px;
}

.showcase-details {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.detail-item {
  font-size: 14px;
  color: var(--accent);
  font-weight: 500;
}

.limited-features {
  padding: 100px 0;
  background: white;
}

.limited-features h2 {
  text-align: center;
  margin-bottom: 60px;
}

.feature-box {
  text-align: center;
  padding: 40px 30px;
  background: var(--light);
}

.feature-box h3 {
  margin-bottom: 20px;
}

.feature-box p {
  line-height: 1.8;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 70px;
  align-items: center;
}

.intro-text h2 {
  margin-bottom: 30px;
}

.intro-text p {
  margin-bottom: 25px;
  line-height: 1.9;
}

.intro-benefits {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit-mini {
  padding: 20px;
  background: var(--light);
  font-size: 14px;
  transition: 0.3s;
  border-left: 3px solid var(--primary);
}

.benefit-mini:hover {
  background: var(--primary);
  color: var(--dark);
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.mini-card {
  background: white;
  padding: 40px 30px;
  text-align: center;
  transition: 0.3s;
}

.mini-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(90, 122, 148, 0.15);
}

.mini-card h3 {
  margin-bottom: 15px;
}

.mini-card p {
  line-height: 1.8;
  margin-bottom: 25px;
}

.mini-specs {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
}

.mini-price {
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--dark);
  font-family: 'Cormorant Garamond', serif;
}

.mini-uses {
  padding: 100px 0;
  background: white;
}

.mini-uses h2 {
  text-align: center;
  margin-bottom: 60px;
}

.uses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
}

.use-card {
  padding: 35px;
  background: var(--light);
  border-top: 3px solid var(--primary);
}

.use-number {
  font-size: 3rem;
  font-weight: 300;
  color: var(--primary);
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 15px;
}

.use-card h3 {
  margin-bottom: 15px;
}

.use-card p {
  line-height: 1.8;
}

.mini-sets {
  padding: 100px 0;
  background: var(--light);
}

.sets-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.sets-content h2 {
  margin-bottom: 30px;
}

.sets-content > p {
  margin-bottom: 50px;
  line-height: 1.9;
}

.set-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.set-option {
  background: white;
  padding: 35px;
  transition: 0.3s;
}

.set-option:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(90, 122, 148, 0.15);
}

.set-option h4 {
  margin-bottom: 15px;
}

.set-option p {
  margin-bottom: 20px;
  color: var(--accent);
}

.set-price {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--dark);
  font-family: 'Cormorant Garamond', serif;
}

.original-price {
  font-size: 1rem;
  color: var(--accent);
  text-decoration: line-through;
  margin-left: 10px;
}

.contact-main {
  padding: 100px 0;
  background: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
}

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

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

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  padding: 25px;
  background: var(--light);
  border-left: 3px solid var(--primary);
}

.contact-text h3 {
  margin-bottom: 12px;
}

.contact-text p {
  line-height: 1.8;
}

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

.contact-form h3 {
  margin-bottom: 35px;
  text-align: center;
}

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

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 13px;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid var(--border);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  transition: 0.3s;
  background: white;
}

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

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

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

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 13px;
}

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

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

.btn-submit {
  width: 100%;
  background: var(--dark);
  color: white;
  border: none;
  padding: 18px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 15px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.btn-submit:hover {
  background: var(--primary);
  color: var(--dark);
}

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

.map-section h2 {
  text-align: center;
  margin-bottom: 50px;
}

.map-container {
  width: 100%;
  height: 450px;
}

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

.contact-cta {
  padding: 100px 0;
  background: white;
}

.cta-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
}

.cta-box {
  text-align: center;
  padding: 40px 30px;
  background: var(--light);
  transition: 0.3s;
}

.cta-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(90, 122, 148, 0.15);
}

.cta-box h3 {
  margin-bottom: 15px;
}

.cta-box p {
  line-height: 1.8;
}

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

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

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

.thankyou-message,
.error-message {
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 25px;
}

.thankyou-submessage {
  margin-bottom: 40px;
  color: var(--accent);
}

.thankyou-actions,
.error-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

.thankyou-info,
.error-links {
  padding: 25px;
  background: white;
  border-left: 3px solid var(--primary);
}

.thankyou-info p {
  margin: 0;
  font-size: 14px;
}

.error-number {
  font-size: 10rem;
  font-weight: 300;
  color: var(--primary);
  font-family: 'Cormorant Garamond', serif;
  line-height: 1;
  margin-bottom: 25px;
}

.error-links > p {
  margin-bottom: 25px;
  font-weight: 600;
  color: var(--dark);
}

.quick-links {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.quick-links a {
  padding: 12px 25px;
  background: var(--light);
  font-size: 13px;
  font-weight: 600;
  transition: 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.quick-links a:hover {
  background: var(--primary);
  color: var(--dark);
}

.craftsmanship,
.sustainability,
.testimonials,
.care-guide {
  padding: 100px 0;
  background: white;
}

.care-guide h2 {
  color: var(--dark);
}

.care-guide .benefit-item h4 {
  color: var(--dark);
}

.care-guide .benefit-item p {
  color: var(--text);
}

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

.sustainability {
  background: white;
}

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

.care-guide {
  background: white;
}

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

.craft-content p {
  margin-bottom: 30px;
  line-height: 1.9;
}

@media (max-width: 968px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  .hero-title {
    font-size: 3rem;
  }
  .about-grid,
  .intro-grid,
  .contact-grid,
  .showcase-card {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
  }
  .nav.active {
    max-height: 500px;
  }
  .nav-link {
    border-left: none;
    border-bottom: 1px solid var(--border);
    padding: 20px 30px;
  }
  .menu-toggle {
    display: block;
  }
  .hero {
    padding: 70px 0;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .features,
  .about,
  .collection,
  .benefits,
  .cta,
  .limited-intro,
  .limited-products,
  .limited-features,
  .mini-intro,
  .mini-products,
  .mini-uses,
  .mini-sets,
  .contact-main,
  .contact-cta,
  .craftsmanship,
  .sustainability,
  .testimonials,
  .care-guide {
    padding: 70px 0;
  }
  .showcase-card {
    padding: 30px;
  }
  .contact-form-section {
    padding: 35px 25px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.7rem;
  }
  .hero-title {
    font-size: 2rem;
  }
  .btn-primary,
  .btn-secondary,
  .btn-cta {
    padding: 15px 40px;
    font-size: 12px;
  }
  .container {
    padding: 0 15px;
  }
}
