@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --clr-primary: #1C1C1E;
  --clr-accent: #C9A96E;
  --clr-accent-hover: #B8944E;
  --clr-bg-cream: #F7F4EF;
  --clr-bg-white: #FFFFFF;
  --clr-bg-dark: #111113;
  --clr-text: #2D2D2D;
  --clr-text-light: #FFFFFF;
  --clr-text-muted: #7A746E;
  --clr-border: #E5E0D8;
  --clr-card: #FEFDFB;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Outfit', sans-serif;
  --header-h: 70px;
  --footer-h: auto;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 14px;
}

body {
  font-family: var(--font-body);
  color: var(--clr-text);
  background: var(--clr-bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

input, textarea {
  font-family: inherit;
  font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--clr-primary);
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

p {
  margin-bottom: 0.8rem;
  color: var(--clr-text-muted);
  font-size: 0.92rem;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 10px 28px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-radius: 3px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  cursor: pointer;
}

.btn-primary {
  background: var(--clr-accent);
  color: var(--clr-primary);
}

.btn-primary:hover {
  background: var(--clr-accent-hover);
}

.btn-outline {
  border: 1px solid var(--clr-accent);
  color: var(--clr-accent);
  background: transparent;
}

.btn-outline:hover {
  background: var(--clr-accent);
  color: var(--clr-primary);
}

.btn-dark {
  background: var(--clr-primary);
  color: var(--clr-text-light);
}

.btn-dark:hover {
  background: #2a2a2c;
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--clr-accent);
  font-weight: 500;
  margin-bottom: 8px;
}

.section-title {
  margin-bottom: 12px;
}

.section-desc {
  max-width: 540px;
  margin: 0 auto 30px;
  font-size: 0.9rem;
}

.text-center {
  text-align: center;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  z-index: 1000;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease;
  background: rgba(28, 28, 30, 0.97);
}

.site-header.scrolled {
  background: rgba(28, 28, 30, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.15);
}

.site-header.header-hidden {
  transform: translateY(-100%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-left a,
.nav-right a {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--clr-text-light);
  font-weight: 400;
  position: relative;
  padding: 4px 0;
}

.nav-left a::after,
.nav-right a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--clr-accent);
  transition: width 0.3s ease;
}

.nav-left a:hover::after,
.nav-right a:hover::after,
.nav-left a.active::after,
.nav-right a.active::after {
  width: 100%;
}

.header-logo {
  margin: 0 40px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--clr-text-light);
  letter-spacing: 1px;
  white-space: nowrap;
}

.logo-text .logo-dot {
  color: var(--clr-accent);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1010;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-text-light);
  transition: all 0.3s ease;
  transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: rgba(17, 17, 19, 0.98);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.mobile-menu nav a {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--clr-text-light);
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.mobile-menu nav a:hover {
  color: var(--clr-accent);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--clr-primary);
  overflow: hidden;
  padding: 80px 0 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201, 169, 110, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201, 169, 110, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  color: var(--clr-text-light);
}

.hero-label {
  display: inline-block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--clr-accent);
  font-weight: 500;
  margin-bottom: 16px;
  border: 1px solid rgba(201, 169, 110, 0.3);
  padding: 5px 14px;
  border-radius: 2px;
}

.hero h1 {
  color: var(--clr-text-light);
  margin-bottom: 16px;
  font-size: 3rem;
  line-height: 1.1;
}

.hero h1 span {
  color: var(--clr-accent);
  font-style: italic;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 28px;
  max-width: 420px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-img {
  position: relative;
}

.hero-img img {
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.hero-img::after {
  content: '';
  position: absolute;
  top: -12px;
  right: -12px;
  width: 80px;
  height: 80px;
  border: 2px solid var(--clr-accent);
  border-radius: 2px;
  opacity: 0.4;
}

.section-light {
  padding: 60px 0;
  background: var(--clr-bg-cream);
}

.section-white {
  padding: 60px 0;
  background: var(--clr-bg-white);
}

.section-dark {
  padding: 60px 0;
  background: var(--clr-primary);
}

.section-accent {
  padding: 60px 0;
  background: linear-gradient(135deg, #2a2520 0%, #1C1C1E 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}

.service-card {
  background: var(--clr-card);
  padding: 28px 22px;
  border-radius: 4px;
  border: 1px solid var(--clr-border);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-bg-cream);
  border-radius: 50%;
  color: var(--clr-accent);
  font-size: 1.1rem;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.82rem;
  margin-bottom: 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}

.product-card {
  background: var(--clr-bg-white);
  border-radius: 4px;
  border: 1px solid var(--clr-border);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.product-visual {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--clr-accent);
}

.product-visual.pv-1 {
  background: linear-gradient(135deg, #f5f2ed 0%, #ece7df 100%);
}

.product-visual.pv-2 {
  background: linear-gradient(135deg, #1C1C1E 0%, #2d2d2f 100%);
  color: var(--clr-accent);
}

.product-visual.pv-3 {
  background: linear-gradient(135deg, #2a2520 0%, #1C1C1E 100%);
  color: var(--clr-accent);
}

.product-body {
  padding: 20px;
}

.product-body h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.product-features {
  margin: 10px 0 14px;
}

.product-features li {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  padding: 3px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.product-features li i {
  color: var(--clr-accent);
  font-size: 0.65rem;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--clr-primary);
  margin-bottom: 12px;
}

.product-price small {
  font-size: 0.75rem;
  color: var(--clr-text-muted);
  font-weight: 400;
  font-family: var(--font-body);
}

.product-card .btn {
  width: 100%;
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 20px;
}

.why-card {
  text-align: center;
  padding: 24px 16px;
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: 4px;
  transition: border-color 0.3s ease;
}

.why-card:hover {
  border-color: rgba(201, 169, 110, 0.4);
}

.why-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--clr-accent);
  line-height: 1;
  margin-bottom: 6px;
}

.why-card h4 {
  color: var(--clr-text-light);
  font-size: 1rem;
  margin-bottom: 6px;
}

.why-card p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
  margin-bottom: 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.process-step {
  text-align: center;
  padding: 20px 14px;
  position: relative;
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--clr-accent);
  color: var(--clr-primary);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.process-step h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.process-step p {
  font-size: 0.78rem;
  margin-bottom: 0;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 38px;
  right: -10px;
  width: 20px;
  height: 1px;
  background: var(--clr-border);
}

.process-step:last-child::after {
  display: none;
}

.cta-section {
  padding: 50px 0;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.12) 0%, rgba(201, 169, 110, 0.04) 100%);
  border-top: 1px solid rgba(201, 169, 110, 0.15);
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}

.cta-inner {
  text-align: center;
}

.cta-inner h2 {
  margin-bottom: 10px;
}

.cta-inner p {
  max-width: 480px;
  margin: 0 auto 24px;
  font-size: 0.9rem;
}

.page-hero {
  padding: 120px 0 50px;
  background: var(--clr-primary);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 50% 50%, rgba(201, 169, 110, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--clr-text-light);
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  max-width: 500px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.75rem;
}

.breadcrumb a {
  color: var(--clr-accent);
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.4);
}

.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.specs-content h3 {
  margin-bottom: 10px;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 0.82rem;
}

.specs-table th,
.specs-table td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid var(--clr-border);
}

.specs-table th {
  background: var(--clr-bg-cream);
  font-weight: 600;
  color: var(--clr-primary);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.specs-table td {
  color: var(--clr-text-muted);
}

.paper-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.paper-card {
  background: var(--clr-card);
  padding: 22px 18px;
  border-radius: 4px;
  border: 1px solid var(--clr-border);
  text-align: center;
}

.paper-card i {
  font-size: 1.5rem;
  color: var(--clr-accent);
  margin-bottom: 10px;
}

.paper-card h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.paper-card p {
  font-size: 0.78rem;
  margin-bottom: 0;
}

.tips-list {
  margin-top: 16px;
}

.tip-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--clr-border);
}

.tip-item:last-child {
  border-bottom: none;
}

.tip-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--clr-bg-cream);
  color: var(--clr-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.tip-item h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.tip-item p {
  font-size: 0.8rem;
  margin-bottom: 0;
}

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-story img {
  border-radius: 4px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.about-story h2 {
  margin-bottom: 12px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}

.value-card {
  padding: 24px 18px;
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: 4px;
  text-align: center;
}

.value-card i {
  font-size: 1.4rem;
  color: var(--clr-accent);
  margin-bottom: 12px;
}

.value-card h4 {
  color: var(--clr-text-light);
  font-size: 1rem;
  margin-bottom: 6px;
}

.value-card p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
  margin-bottom: 0;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.stat-item {
  text-align: center;
  padding: 20px 10px;
  background: var(--clr-card);
  border-radius: 4px;
  border: 1px solid var(--clr-border);
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--clr-accent);
  line-height: 1;
}

.stat-item p {
  font-size: 0.78rem;
  margin-bottom: 0;
  margin-top: 4px;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-form-wrap {
  background: var(--clr-card);
  padding: 30px 28px;
  border-radius: 4px;
  border: 1px solid var(--clr-border);
}

.contact-form-wrap h3 {
  margin-bottom: 4px;
}

.contact-form-wrap > p {
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--clr-primary);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--clr-border);
  border-radius: 3px;
  background: var(--clr-bg-white);
  color: var(--clr-text);
  font-size: 0.85rem;
  transition: border-color 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--clr-accent);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 18px;
}

.form-check input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--clr-accent);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.form-check label {
  font-size: 0.75rem;
  color: var(--clr-text-muted);
  line-height: 1.4;
}

.form-check a {
  color: var(--clr-accent);
  text-decoration: underline;
}

.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  background: var(--clr-primary);
  padding: 28px 24px;
  border-radius: 4px;
  color: var(--clr-text-light);
}

.contact-info-card h3 {
  color: var(--clr-text-light);
  margin-bottom: 16px;
  font-size: 1.2rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-item i {
  color: var(--clr-accent);
  font-size: 0.9rem;
  margin-top: 2px;
  width: 18px;
  text-align: center;
}

.info-item div p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  margin-bottom: 0;
}

.info-item div strong {
  color: var(--clr-text-light);
  font-size: 0.82rem;
  font-weight: 500;
}

.contact-hours {
  background: var(--clr-card);
  padding: 22px 24px;
  border-radius: 4px;
  border: 1px solid var(--clr-border);
}

.contact-hours h4 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid var(--clr-border);
  font-size: 0.8rem;
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row span:first-child {
  color: var(--clr-text);
  font-weight: 500;
}

.hours-row span:last-child {
  color: var(--clr-text-muted);
}

.map-section {
  padding: 0;
  background: var(--clr-bg-cream);
}

.map-section iframe {
  width: 100%;
  height: 350px;
  border: none;
  display: block;
}

.site-footer {
  background: var(--clr-bg-dark);
  padding: 30px 0 0;
  color: rgba(255, 255, 255, 0.6);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo-text {
  font-size: 1.1rem;
  margin-bottom: 8px;
  display: inline-block;
}

.footer-brand p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 280px;
}

.footer-links h4 {
  color: var(--clr-text-light);
  font-size: 0.85rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links ul li {
  margin-bottom: 6px;
}

.footer-links ul li a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--clr-accent);
}

.footer-bottom {
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.72rem;
}

.footer-bottom p {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0;
}

.footer-policies {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-policies a {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-policies a:hover {
  color: var(--clr-accent);
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--clr-primary);
  color: var(--clr-text-light);
  padding: 16px 0;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 1px solid rgba(201, 169, 110, 0.2);
}

.cookie-popup.visible {
  transform: translateY(0);
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-inner p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
  flex: 1;
  min-width: 200px;
}

.cookie-inner a {
  color: var(--clr-accent);
  text-decoration: underline;
}

.cookie-btns {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-btns .btn {
  padding: 8px 20px;
  font-size: 0.75rem;
}

.thankyou-wrap,
.error-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  height: 100vh;
}

.thankyou-content,
.error-content {
  max-width: 480px;
}

.thankyou-icon,
.error-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.6rem;
}

.thankyou-icon {
  background: rgba(201, 169, 110, 0.12);
  color: var(--clr-accent);
}

.error-icon {
  background: rgba(201, 169, 110, 0.12);
  color: var(--clr-accent);
}

.thankyou-content h1,
.error-content h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.thankyou-content p,
.error-content p {
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.policy-content {
  padding: 50px 0;
}

.policy-content h2 {
  font-size: 1.6rem;
  margin: 28px 0 12px;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content h3 {
  font-size: 1.2rem;
  margin: 20px 0 8px;
}

.policy-content p {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 10px;
}

.policy-content ul {
  margin: 10px 0 16px 20px;
}

.policy-content ul li {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  padding: 3px 0;
  list-style: disc;
  line-height: 1.6;
}

.policy-date {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  font-style: italic;
  margin-bottom: 20px;
}

.faq-list {
  margin-top: 20px;
}

.faq-item {
  border: 1px solid var(--clr-border);
  border-radius: 4px;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-question {
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  background: var(--clr-card);
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: var(--clr-bg-cream);
}

.faq-question h4 {
  font-size: 0.92rem;
  font-family: var(--font-body);
  font-weight: 500;
}

.faq-question i {
  color: var(--clr-accent);
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 14px 18px;
}

.faq-answer p {
  font-size: 0.82rem;
  margin-bottom: 0;
}

@media (max-width: 992px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }

  .nav-left,
  .nav-right {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .header-logo {
    margin: 0;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    order: 1;
  }

  .hero-img {
    order: 2;
    max-width: 400px;
    margin: 0 auto;
  }

  .hero-img::after {
    display: none;
  }

  .hero-desc {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-step::after {
    display: none;
  }

  .specs-grid {
    grid-template-columns: 1fr;
  }

  .about-story {
    grid-template-columns: 1fr;
  }

  .about-story img {
    max-width: 400px;
    margin: 0 auto;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  html {
    font-size: 13px;
  }

  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }

  .hero {
    min-height: auto;
    padding: 100px 0 50px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .services-grid,
  .products-grid,
  .paper-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-policies {
    justify-content: center;
  }

  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }

  .page-hero h1 {
    font-size: 1.8rem;
  }
}

@media (max-width: 400px) {
  html {
    font-size: 12.5px;
  }

  .container {
    padding: 0 14px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .map-section iframe {
    height: 250px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.8rem;
  }

  .header-logo .logo-text {
    font-size: 1.1rem;
  }

  .menu-toggle {
    right: 14px;
  }

  .product-card .btn,
  .contact-form-wrap .btn {
    padding: 10px 16px;
  }

  .section-light,
  .section-white,
  .section-dark,
  .section-accent {
    padding: 40px 0;
  }

  .page-hero {
    padding: 100px 0 40px;
  }

  .cta-section {
    padding: 40px 0;
  }

  .policy-content {
    padding: 40px 0;
  }

  .service-card,
  .paper-card,
  .product-card {
    padding: 20px 16px;
  }

  .product-body {
    padding: 16px;
  }

  .contact-form-wrap {
    padding: 24px 18px;
  }

  .contact-info-card {
    padding: 24px 18px;
  }

  .value-card {
    padding: 20px 14px;
  }

  .why-card {
    padding: 20px 14px;
  }
}

@media (max-width: 360px) {
  html {
    font-size: 12px;
  }

  .container {
    padding: 0 12px;
  }

  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.3rem; }

  .hero h1 {
    font-size: 1.6rem;
  }

  .page-hero h1 {
    font-size: 1.5rem;
  }

  .header-logo .logo-text {
    font-size: 1rem;
  }

  .menu-toggle {
    right: 12px;
    padding: 6px;
  }

  .menu-toggle span {
    width: 20px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .why-number,
  .stat-num {
    font-size: 2rem;
  }

  .product-price {
    font-size: 1.4rem;
  }

  .cookie-inner {
    flex-direction: column;
    gap: 12px;
  }

  .cookie-btns {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btns .btn {
    width: 100%;
    text-align: center;
  }

  .hero-label {
    font-size: 0.6rem;
    padding: 4px 10px;
  }

  .footer-policies {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 11.5px;
  }

  .container {
    padding: 0 10px;
  }

  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.2rem; }
  h3 { font-size: 1.1rem; }

  .hero {
    padding: 80px 0 40px;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .page-hero {
    padding: 90px 0 35px;
  }

  .page-hero h1 {
    font-size: 1.4rem;
  }

  .header-logo .logo-text {
    font-size: 0.95rem;
  }

  .menu-toggle {
    right: 10px;
    padding: 5px;
  }

  .menu-toggle span {
    width: 18px;
  }

  .btn {
    padding: 9px 16px;
    font-size: 0.75rem;
  }

  .section-light,
  .section-white,
  .section-dark,
  .section-accent {
    padding: 35px 0;
  }

  .cta-section {
    padding: 35px 0;
  }

  .policy-content {
    padding: 35px 0;
  }

  .service-card,
  .paper-card {
    padding: 18px 14px;
  }

  .product-body {
    padding: 14px;
  }

  .contact-form-wrap {
    padding: 20px 14px;
  }

  .contact-info-card {
    padding: 20px 14px;
  }

  .value-card {
    padding: 18px 12px;
  }

  .why-card {
    padding: 18px 12px;
  }

  .section-title {
    font-size: 1.3rem;
  }

  .section-label {
    font-size: 0.65rem;
    letter-spacing: 2px;
  }

  .why-number,
  .stat-num {
    font-size: 1.8rem;
  }

  .product-price {
    font-size: 1.3rem;
  }

  .product-visual {
    height: 120px;
    font-size: 2rem;
  }

  .service-icon {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  .step-num {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .hero-label {
    font-size: 0.58rem;
    padding: 4px 8px;
    letter-spacing: 2px;
  }

  .breadcrumb {
    font-size: 0.7rem;
  }

  .thankyou-icon,
  .error-icon {
    width: 56px;
    height: 56px;
    font-size: 1.4rem;
  }

  .thankyou-content h1,
  .error-content h1 {
    font-size: 1.6rem;
  }

  .footer-top {
    gap: 16px;
  }

  .site-footer {
    padding: 24px 0 0;
  }

  .specs-table th,
  .specs-table td {
    padding: 8px 10px;
    font-size: 0.8rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 9px 12px;
    font-size: 0.8rem;
  }

  .hero-img,
  .about-story img,
  .specs-visual img {
    max-width: 100%;
  }
}
