:root {
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Outfit', sans-serif;
  --primary: #7B6544;
  --primary-light: #9A8260;
  --accent: #C8973E;
  --accent-light: #D9B468;
  --bg: #FAFAF5;
  --bg-alt: #F0EBE1;
  --text: #3A2F22;
  --text-light: #7A6E5E;
  --dark: #2C2219;
  --white: #FFFFFF;
  --border: #DDD5C8;
  --shadow-sm: 0 2px 8px rgba(44, 34, 25, 0.06);
  --shadow: 0 4px 16px rgba(44, 34, 25, 0.08);
  --shadow-lg: 0 8px 32px rgba(44, 34, 25, 0.12);
  --radius: 6px;
  --radius-lg: 12px;
  --transition: 0.3s ease;
  --header-h: 64px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 15px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

main {
  flex: 1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
  color: var(--dark);
}

h1 { font-size: 2.4rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

p {
  margin-bottom: 0.75rem;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 10px 26px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-align: center;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--dark);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
}

.btn-accent:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-sm {
  padding: 7px 18px;
  font-size: 0.82rem;
}

.btn-light {
  background: var(--white);
  color: var(--dark);
}

.btn-light:hover {
  background: var(--accent);
  color: var(--white);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(250, 250, 245, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.site-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--primary), var(--accent-light), var(--primary));
}

.site-header.scrolled {
  background: rgba(250, 250, 245, 0.98);
  box-shadow: var(--shadow-sm);
}

.site-header.hidden {
  transform: translateY(-100%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.3px;
  flex-shrink: 0;
}

.logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
}

.nav-links a {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--dark);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--dark);
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  line-height: 1;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 270px;
  height: 100vh;
  height: 100dvh;
  background: var(--bg);
  z-index: 999;
  transition: right var(--transition);
  padding: 80px 28px 28px;
  box-shadow: -4px 0 24px rgba(44, 34, 25, 0.12);
  overflow-y: auto;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu a {
  display: block;
  padding: 11px 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover {
  color: var(--accent);
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 34, 25, 0.35);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.hero {
  padding: calc(var(--header-h) + 50px) 0 60px;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-alt) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 14px;
  line-height: 1.15;
}

.hero-content h1 span {
  color: var(--accent);
}

.hero-content p {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 24px;
  max-width: 420px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--bg-alt);
  position: relative;
}

.hero-image::after {
  content: '';
  position: absolute;
  top: -8px;
  right: -8px;
  width: 60%;
  height: 60%;
  border: 3px solid var(--accent);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.hero-image img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.section {
  padding: 56px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.section-dark h2,
.section-dark h3,
.section-dark p {
  color: var(--white);
}

.section-title {
  text-align: center;
  margin-bottom: 36px;
}

.section-title h2 {
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent);
  margin: 10px auto 0;
  border-radius: 2px;
}

.section-title p {
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto;
  font-size: 0.92rem;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.intro-card {
  text-align: center;
  padding: 28px 20px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.intro-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.intro-card i {
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 14px;
  display: block;
  width: 52px;
  height: 52px;
  line-height: 52px;
  background: rgba(200, 151, 62, 0.1);
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
}

.intro-card h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.intro-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  border-radius: var(--radius-lg);
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.product-card-top {
  height: 6px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
}

.product-card-body {
  padding: 22px 20px;
}

.product-card-body i {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 12px;
}

.product-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.product-card p {
  font-size: 0.84rem;
  color: var(--text-light);
  margin-bottom: 14px;
  line-height: 1.6;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}

.product-price small {
  font-size: 0.7rem;
  color: var(--text-light);
  font-weight: 400;
  font-family: var(--font-body);
  display: block;
  margin-top: 2px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: var(--border);
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 3px 10px rgba(200, 151, 62, 0.3);
}

.process-step h4 {
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.process-step p {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 0;
  padding: 0 4px;
}

.craft-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.craft-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--bg-alt);
}

.craft-image img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 5 / 4;
}

.craft-text h2 {
  margin-bottom: 12px;
}

.craft-text h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--accent);
  margin-top: 10px;
  border-radius: 2px;
}

.craft-text p {
  color: var(--text-light);
  font-size: 0.92rem;
  margin-bottom: 16px;
}

.craft-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}

.craft-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text);
}

.craft-feature i {
  color: var(--accent);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.cta-section {
  background: var(--dark);
  padding: 50px 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: 1.8rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 480px;
  margin: 0 auto 22px;
  font-size: 0.92rem;
}

.page-banner {
  padding: calc(var(--header-h) + 40px) 0 40px;
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg) 100%);
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-banner h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.page-banner p {
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto;
  font-size: 0.92rem;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.content-grid.reverse {
  direction: rtl;
}

.content-grid.reverse > * {
  direction: ltr;
}

.content-text h2 {
  margin-bottom: 12px;
}

.content-text h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--accent);
  margin-top: 8px;
  border-radius: 2px;
}

.content-text p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.7;
}

.content-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--bg-alt);
}

.content-image img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.feature-list {
  margin-top: 14px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.88rem;
  color: var(--text);
}

.feature-list li i {
  color: var(--accent);
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 0.78rem;
}

.icon-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.icon-box {
  padding: 24px 18px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.icon-box:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.icon-box i {
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

.icon-box h4 {
  margin-bottom: 6px;
  font-size: 1.02rem;
}

.icon-box p {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.value-card {
  padding: 24px 16px;
  background: var(--white);
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--border);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.value-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.value-card i {
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 10px;
  display: block;
}

.value-card h4 {
  margin-bottom: 6px;
  font-size: 0.98rem;
}

.value-card p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--bg-alt);
}

.about-image img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.about-text h2 {
  margin-bottom: 12px;
}

.about-text h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--accent);
  margin-top: 8px;
  border-radius: 2px;
}

.about-text p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

.contact-hero {
  padding: calc(var(--header-h) + 36px) 0 36px;
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg) 50%, rgba(200, 151, 62, 0.06) 100%);
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.contact-hero h1 {
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.contact-hero p {
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto;
  font-size: 0.92rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 36px;
  align-items: start;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--accent);
}

.info-card i {
  font-size: 1.1rem;
  color: var(--accent);
  margin-top: 2px;
  flex-shrink: 0;
}

.info-card h4 {
  font-size: 0.9rem;
  margin-bottom: 3px;
}

.info-card p {
  font-size: 0.84rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.info-card a {
  font-size: 0.84rem;
}

.contact-form-wrap {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.contact-form-wrap h3 {
  margin-bottom: 18px;
  font-size: 1.2rem;
}

.form-group {
  margin-bottom: 14px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition), background var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
}

.form-group textarea {
  height: 110px;
  resize: vertical;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 16px;
}

.form-check input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--accent);
  flex-shrink: 0;
}

.form-check label {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.5;
}

.map-section {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-top: 0;
}

.map-section iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: none;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.faq-item {
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.faq-item h4 {
  margin-bottom: 6px;
  font-size: 0.95rem;
  color: var(--dark);
}

.faq-item p {
  font-size: 0.84rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.fullscreen-main {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 30px) 20px 30px;
  text-align: center;
}

.fullscreen-content {
  max-width: 480px;
}

.fullscreen-content i {
  font-size: 2.8rem;
  color: var(--accent);
  margin-bottom: 18px;
}

.fullscreen-content h1 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.fullscreen-content p {
  color: var(--text-light);
  font-size: 0.92rem;
  margin-bottom: 22px;
  line-height: 1.7;
}

.error-code {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
  opacity: 0.7;
}

.policy-page {
  padding: calc(var(--header-h) + 30px) 0 50px;
}

.policy-content {
  max-width: 780px;
  margin: 0 auto;
}

.policy-content h1 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.policy-date {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 28px;
  display: block;
}

.policy-content h2 {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.policy-content h3 {
  margin-top: 18px;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.policy-content p {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 10px;
}

.policy-content ul,
.policy-content ol {
  padding-left: 22px;
  margin-bottom: 14px;
}

.policy-content ul {
  list-style: disc;
}

.policy-content ol {
  list-style: decimal;
}

.policy-content li {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 4px;
  color: var(--text);
}

.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 20px 0;
  font-size: 0.8rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-inner p {
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
}

.cookie-popup {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(44, 34, 25, 0.12);
  z-index: 1100;
  transition: bottom 0.4s ease;
  padding: 16px 20px;
}

.cookie-popup.visible {
  bottom: 0;
}

.cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-inner p {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 0;
  flex: 1;
  min-width: 200px;
}

.cookie-inner a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}

.steps-list {
  counter-reset: step-counter;
  max-width: 600px;
  margin: 0 auto;
}

.steps-list li {
  counter-increment: step-counter;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text);
}

.steps-list li:last-child {
  border-bottom: none;
}

.steps-list li::before {
  content: counter(step-counter);
  min-width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.deliverable-card {
  display: flex;
  gap: 14px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  align-items: flex-start;
}

.deliverable-card i {
  font-size: 1.2rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.deliverable-card h4 {
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.deliverable-card p {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--header-h) + 30px) 0 40px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-image::after {
    display: none;
  }

  .intro-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .process-steps::before {
    display: none;
  }

  .craft-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-story {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .content-grid.reverse {
    direction: ltr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .deliverables-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.15rem; }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .section {
    padding: 40px 0;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .intro-grid {
    grid-template-columns: 1fr;
  }

  .icon-boxes {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-actions {
    justify-content: center;
  }

  .page-banner h1 {
    font-size: 1.8rem;
  }

  .contact-hero h1 {
    font-size: 1.8rem;
  }

  .fullscreen-content h1 {
    font-size: 1.7rem;
  }

  .error-code {
    font-size: 3.5rem;
  }

  .contact-form-wrap {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .container {
    padding: 0 16px;
  }

  .hero {
    padding: calc(var(--header-h) + 20px) 0 30px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .craft-features {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 32px 0;
  }

  .section-title {
    margin-bottom: 24px;
  }

  .cta-section h2 {
    font-size: 1.5rem;
  }

  .product-price {
    font-size: 1.3rem;
  }

  .map-section iframe {
    height: 240px;
  }

  .info-card {
    padding: 14px;
  }

  .header-inner {
    padding: 0 16px;
  }

  .logo {
    font-size: 1.1rem;
  }
}

@media (max-width: 360px) {
  html {
    font-size: 13px;
  }

  .hero-content h1 {
    font-size: 1.6rem;
  }

  .logo {
    font-size: 1rem;
  }
}
