@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Karla:wght@400;500;600&display=swap');

:root {
  --primary: #8B6A3E;
  --primary-dark: #6B4F2E;
  --primary-light: #C9A96E;
  --secondary: #4A6B5A;
  --secondary-dark: #3A5648;
  --secondary-light: #6B9B82;
  --accent: #C2694A;
  --accent-light: #D4865C;
  --bg-cream: #FDF8F2;
  --bg-warm: #F5EDE3;
  --bg-section: #FAF4EC;
  --text-dark: #2C2420;
  --text-body: #4A4440;
  --text-muted: #7A726A;
  --text-light: #F5EDE5;
  --white: #FFFFFF;
  --border: #E8DDD0;
  --shadow: rgba(44, 36, 32, 0.08);
  --shadow-md: rgba(44, 36, 32, 0.12);
  --radius: 6px;
  --radius-lg: 12px;
  --header-h: 62px;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Karla', Helvetica, sans-serif;
}

*,
*::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(--text-body);
  background-color: var(--bg-cream);
  line-height: 1.6;
  padding-top: var(--header-h);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: color 0.25s ease;
}

a:hover {
  color: var(--accent);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.25;
  font-weight: 600;
}

h1 { font-size: 2.4rem; }
h2 { font-size: 1.9rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.15rem; }

p { margin-bottom: 0.8rem; }

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

.btn {
  display: inline-block;
  padding: 0.6rem 1.6rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
}

.btn-accent:hover {
  background: var(--accent-light);
  color: var(--white);
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.section-title {
  margin-bottom: 0.6rem;
}

.section-text {
  color: var(--text-muted);
  max-width: 560px;
  font-size: 0.9rem;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  background: var(--white);
  z-index: 9999;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
  border-bottom: 1px solid var(--border);
}

.site-header.header-hidden {
  transform: translateY(-100%);
}

.site-header.header-scrolled {
  box-shadow: 0 2px 16px var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-brand .brand-icon {
  color: var(--primary);
  font-size: 1.3rem;
}

.header-brand a {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.5px;
}

.header-brand a:hover {
  color: var(--primary);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.header-nav a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-body);
  position: relative;
  padding: 0.2rem 0;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.header-nav a:hover::after,
.header-nav a.active::after {
  width: 100%;
}

.header-nav a:hover {
  color: var(--primary);
}

.header-nav a.active {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  position: relative;
  z-index: 1100;
  align-items: center;
  justify-content: center;
}

.menu-toggle .bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  transition: all 0.3s ease;
  position: absolute;
  left: 7px;
}

.menu-toggle .bar:nth-child(1) { top: 10px; }
.menu-toggle .bar:nth-child(2) { top: 17px; }
.menu-toggle .bar:nth-child(3) { top: 24px; }

.menu-toggle.active .bar:nth-child(1) {
  top: 17px;
  transform: rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
  top: 17px;
  transform: rotate(-45deg);
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(44, 36, 32, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.mobile-overlay.show {
  opacity: 1;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100%;
  background: var(--white);
  z-index: 1050;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 5rem 1.5rem 2rem;
  overflow-y: auto;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu a {
  display: block;
  padding: 0.7rem 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-body);
  border-bottom: 1px solid var(--border);
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--primary);
}

.hero {
  background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-cream) 50%, #f0e6d6 100%);
  padding: 3.5rem 0 3rem;
  position: relative;
  overflow: hidden;
}

 

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.hero-text .section-label {
  margin-bottom: 0.6rem;
}

.hero-text h1 {
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

.hero-text p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 1.3rem;
  max-width: 420px;
}

.hero-buttons {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 30px var(--shadow-md);
}

.hero-image img {
  width: 100%;
  object-fit: cover;
}

.services-section {
  padding: 3rem 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.service-card {
  background: var(--bg-cream);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--shadow);
}

.service-card .card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.8rem;
  font-size: 1.1rem;
}

.service-card h3 {
  margin-bottom: 0.4rem;
  font-size: 1.15rem;
}

.service-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.about-preview {
  padding: 3rem 0;
  background: var(--bg-section);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 6px 20px var(--shadow);
}

.about-img img {
  width: 100%;
  object-fit: cover;
}

.about-text h2 {
  margin-bottom: 0.6rem;
}

.about-text p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.about-text .btn {
  margin-top: 0.8rem;
}

.process-section {
  padding: 3rem 0;
  background: var(--white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.step-card {
  text-align: center;
  padding: 1.2rem 1rem;
  position: relative;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 auto 0.8rem;
}

.step-card h3 {
  margin-bottom: 0.3rem;
  font-size: 1.05rem;
}

.step-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.testimonials-section {
  padding: 3rem 0;
  background: var(--bg-section);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.2rem;
  border: 1px solid var(--border);
  position: relative;
}

.testimonial-card .stars {
  color: var(--primary-light);
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
  display: flex;
  gap: 2px;
}

.testimonial-card blockquote {
  font-size: 0.84rem;
  color: var(--text-body);
  font-style: italic;
  margin-bottom: 0.7rem;
  line-height: 1.5;
}

.testimonial-card .author {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-dark);
}

.testimonial-card .author span {
  font-weight: 400;
  color: var(--text-muted);
}

.cta-section {
  padding: 3rem 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  text-align: center;
  color: var(--white);
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn {
  background: var(--white);
  color: var(--primary-dark);
}

.cta-section .btn:hover {
  background: var(--bg-cream);
  color: var(--primary);
}

.page-banner {
  background: linear-gradient(135deg, var(--bg-warm) 0%, #efe5d8 100%);
  padding: 2.5rem 0 2rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-banner h1 {
  margin-bottom: 0.4rem;
}

.page-banner p {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 480px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  margin-bottom: 0.8rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--primary);
}

.breadcrumb span {
  color: var(--text-muted);
}

.products-section {
  padding: 3rem 0;
  background: var(--white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.product-card {
  background: var(--bg-cream);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.2rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--shadow);
}

.product-card .product-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary-light), var(--secondary));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.8rem;
  font-size: 1.3rem;
}

.product-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.product-card .price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0.5rem 0;
}

.product-card .price span {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
}

.product-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.product-card ul {
  text-align: left;
  margin-bottom: 1rem;
  padding-left: 0.3rem;
}

.product-card ul li {
  font-size: 0.78rem;
  color: var(--text-body);
  padding: 0.2rem 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.product-card ul li i {
  color: var(--secondary);
  font-size: 0.7rem;
}

.approach-section {
  padding: 3rem 0;
  background: var(--bg-section);
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.approach-item {
  display: flex;
  gap: 0.8rem;
  padding: 1rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.approach-item .approach-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: var(--bg-warm);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.approach-item h4 {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.approach-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.about-story {
  padding: 3rem 0;
  background: var(--white);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.about-story-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 6px 20px var(--shadow);
}

.about-story-img img {
  width: 100%;
  object-fit: cover;
}

.about-story-text h2 {
  margin-bottom: 0.6rem;
}

.about-story-text p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.values-section {
  padding: 3rem 0;
  background: var(--bg-section);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.value-card {
  text-align: center;
  padding: 1.2rem 0.8rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.value-card .value-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-warm);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.6rem;
  font-size: 1rem;
}

.value-card h4 {
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.value-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.contact-intro {
  padding: 2.5rem 0 2rem;
  background: linear-gradient(135deg, var(--bg-warm) 0%, #efe5d8 100%);
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.contact-intro h1 {
  margin-bottom: 0.4rem;
}

.contact-intro p {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 480px;
  margin: 0 auto;
}

.contact-main {
  padding: 3rem 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
}

.contact-info {
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius-lg);
  color: var(--white);
}

.contact-info h2 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.contact-info > p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
  margin-bottom: 1.5rem;
}

.contact-detail {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.contact-detail .detail-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.contact-detail h4 {
  color: var(--white);
  font-size: 0.82rem;
  margin-bottom: 0.1rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.contact-detail p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.78rem;
  margin-bottom: 0;
}

.contact-form {
  padding: 1.5rem;
  background: var(--bg-cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.contact-form h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.form-group {
  margin-bottom: 0.9rem;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-body);
  background: var(--white);
  transition: border-color 0.25s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-checkbox {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.form-checkbox input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--primary);
}

.form-checkbox label {
  font-size: 0.75rem;
  color: var(--text-muted);
  cursor: pointer;
}

.form-checkbox a {
  color: var(--primary);
  text-decoration: underline;
}

.map-section {
  padding: 0;
  background: var(--bg-section);
}

.map-section iframe {
  width: 100%;
  height: 300px;
  border: none;
  display: block;
}

.site-footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 1.5rem 0 1rem;
  font-size: 0.75rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.footer-brand-wrap p {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.72rem;
  transition: color 0.25s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-copyright {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-policy-links {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.footer-policy-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
}

.footer-policy-links a:hover {
  color: var(--white);
}

.special-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--header-h) - 120px);
  text-align: center;
  padding: 2rem 1rem;
  background: var(--bg-cream);
}

.special-page .page-icon {
  font-size: 3rem;
  color: var(--primary-light);
  margin-bottom: 1rem;
}

.special-page h1 {
  margin-bottom: 0.5rem;
}

.special-page p {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 420px;
  margin: 0 auto 1.2rem;
}

.policy-page {
  padding: 3rem 0;
  background: var(--white);
}

.policy-content {
  max-width: 780px;
  margin: 0 auto;
}

.policy-content h2 {
  font-size: 1.4rem;
  margin: 1.8rem 0 0.6rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.policy-content h2:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.policy-content h3 {
  font-size: 1.1rem;
  margin: 1.2rem 0 0.4rem;
}

.policy-content p {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.7;
}

.policy-content ul {
  padding-left: 1.2rem;
  margin-bottom: 0.8rem;
}

.policy-content ul li {
  font-size: 0.85rem;
  color: var(--text-body);
  padding: 0.15rem 0;
  list-style: disc;
}

.policy-date {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text-dark);
  color: var(--white);
  padding: 1rem;
  z-index: 2000;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-popup.show {
  transform: translateY(0);
}

.cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-inner p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
  flex: 1;
}

.cookie-inner a {
  color: var(--primary-light);
  text-decoration: underline;
}

.cookie-btns {
  display: flex;
  gap: 0.5rem;
}

.cookie-btns button {
  padding: 0.4rem 1rem;
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s;
}

.cookie-accept {
  background: var(--primary);
  color: var(--white);
}

.cookie-decline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.cookie-btns button:hover {
  opacity: 0.85;
}

.decor-hero-section {
  padding: 3rem 0;
  background: var(--bg-section);
}

.decor-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.decor-hero-text h2 {
  margin-bottom: 0.5rem;
}

.decor-hero-text p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.decor-hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 6px 20px var(--shadow);
}

.decor-hero-img img {
  width: 100%;
  object-fit: cover;
}

.contact-hours {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-hours h4 {
  color: var(--white);
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.contact-hours p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
}

@media (max-width: 900px) {
  .header-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-overlay,
  .mobile-menu {
    display: block;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text p {
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    max-width: 400px;
    margin: 0 auto;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .about-story-grid,
  .decor-hero-grid {
    grid-template-columns: 1fr;
  }

  .about-img,
  .about-story-img,
  .decor-hero-img {
    max-width: 400px;
    margin: 0 auto;
  }

  .process-steps {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .products-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }

  .approach-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-policy-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 13px;
  }

  :root {
    --header-h: 54px;
  }

  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }

  .hero {
    padding: 2.5rem 0 2rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    padding: 1.2rem;
  }

  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-btns {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 12px;
  }

  .container {
    padding: 0 0.7rem;
  }

  .hero {
    padding: 2rem 0 1.5rem;
  }

  .btn {
    padding: 0.5rem 1.2rem;
    font-size: 0.8rem;
  }
}
