@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&family=Outfit:wght@300..700&display=swap');

:root {
  --primary: #3A4A3F;
  --secondary: #C9A96E;
  --accent: #5C7A64;
  --bg: #FAF8F4;
  --bg-alt: #F0EBE3;
  --bg-dark: #2E3B33;
  --text: #2D2A26;
  --text-muted: #6B6560;
  --text-light: #9A9590;
  --white: #FFFFFF;
  --border: #E0DDD6;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow: 0 4px 20px rgba(0,0,0,0.07);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 20px;
  --radius-full: 50px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-serif: 'Cormorant', Georgia, serif;
  --font-sans: 'Outfit', system-ui, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 15px;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -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 {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--secondary);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--primary);
}

h1 { font-size: 2.6rem; }
h2 { font-size: 1.9rem; margin-bottom: 12px; }
h3 { font-size: 1.35rem; margin-bottom: 8px; }
h4 { font-size: 1.1rem; }

p {
  margin-bottom: 10px;
  font-size: 0.93rem;
}

.section {
  padding: 56px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-dark {
  background: var(--bg-dark);
  color: var(--white);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-title {
  text-align: center;
  margin-bottom: 32px;
}

.section-title h2 {
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--secondary);
  margin: 10px auto 0;
}

.section-title p {
  color: var(--text-muted);
  margin-top: 8px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--white);
}

.btn-secondary:hover {
  background: #b8983e;
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.site-header {
  position: relative;
  width: 100%;
  background: var(--bg);
  z-index: 9999;
  padding: 20px 0 14px;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, padding 0.4s ease, background 0.4s ease;
  
}

.site-header .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-logo {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.5px;
  text-decoration: none;
}

.header-logo::after {
  content: '';
  display: block;
  width: 36px;
  height: 1.5px;
  background: var(--secondary);
  margin: 6px auto 0;
  transition: all var(--transition);
}

.header-nav {
  display: flex;
  gap: 28px;
}

.header-nav a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--secondary);
  transition: width var(--transition);
}

.header-nav a:hover::after,
.header-nav a.active::after {
  width: 100%;
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--primary);
}

.site-header.header-compact {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 0;
  background: transparent;
  pointer-events: none;
  z-index: 9999;
}

.site-header.header-compact .container {
  flex-direction: row;
  justify-content: space-between;
  max-width: 720px;
  margin: 10px auto;
  background: rgba(250, 248, 244, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-full);
  padding: 8px 24px;
  box-shadow: var(--shadow);
  pointer-events: all;
}

.site-header.header-compact .header-logo {
  font-size: 1.1rem;
}

.site-header.header-compact .header-logo::after {
  display: none;
}

.site-header.header-compact .header-nav a {
  font-size: 0.75rem;
}

.site-header.header-hidden {
  transform: translateY(-120%);
  opacity: 0;
}

.site-header.header-visible {
  transform: translateY(0);
  opacity: 1;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 24px;
  height: 18px;
  position: relative;
  z-index: 2001;
  flex-shrink: 0;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 8px; }
.menu-toggle span:nth-child(3) { top: 16px; }

.menu-toggle.active span {
  background: var(--text);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 8px;
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 8px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: var(--bg-dark);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.mobile-menu nav a {
  color: rgba(255,255,255,0.85);
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
  letter-spacing: 0.5px;
}

.mobile-menu nav a:hover {
  color: var(--secondary);
}

.hero {
  padding: 48px 0 56px;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-content h1 {
  margin-bottom: 14px;
  line-height: 1.15;
}

.hero-content h1 span {
  color: var(--secondary);
}

.hero-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 0.95rem;
  max-width: 440px;
}

.hero-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  object-fit: cover;
}

.hero-image::before {
  content: '';
  position: absolute;
  top: -8px;
  right: -8px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--secondary);
  border-radius: var(--radius);
  z-index: -1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
  border: 1px solid var(--border);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--secondary);
}

.service-card i {
  font-size: 1.6rem;
  color: var(--secondary);
  margin-bottom: 14px;
}

.service-card h3 {
  font-size: 1.15rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.service-card .btn {
  font-size: 0.78rem;
  padding: 7px 18px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.feature-item {
  display: flex;
  gap: 14px;
  padding: 18px;
  background: var(--white);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  border: 1px solid transparent;
}

.feature-item:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--border);
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--secondary);
  font-size: 1rem;
}

.feature-text h4 {
  margin-bottom: 4px;
  font-size: 1rem;
}

.feature-text p {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin: 0;
}

.style-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.style-image {
  border-radius: var(--radius);
  overflow: hidden;
}

.style-image img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
}

.style-content blockquote {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--primary);
  line-height: 1.35;
  margin-bottom: 12px;
  padding-left: 16px;
  border-left: 3px solid var(--secondary);
}

.style-content p {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.style-content cite {
  font-size: 0.82rem;
  color: var(--text-light);
  font-style: normal;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testimonial-card {
  background: rgba(255,255,255,0.08);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
}

.testimonial-card .stars {
  color: var(--secondary);
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.testimonial-card p {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 12px;
  opacity: 0.9;
}

.testimonial-author {
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.7;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white);
  text-align: center;
  padding: 48px 0;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 10px;
}

.cta-section p {
  opacity: 0.85;
  margin-bottom: 20px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn {
  background: var(--secondary);
  color: var(--white);
}

.cta-section .btn:hover {
  background: var(--white);
  color: var(--primary);
}

.page-banner {
  background: var(--bg-alt);
  padding: 40px 0;
  text-align: center;
}

.page-banner h1 {
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.page-banner p {
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px;
  border: 1.5px solid var(--border);
  text-align: center;
  transition: all var(--transition);
}

.pricing-card.featured {
  border-color: var(--secondary);
  transform: scale(1.04);
  box-shadow: var(--shadow);
}

.pricing-badge {
  display: inline-block;
  background: var(--secondary);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-card h3 {
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.pricing-card .price {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary);
  margin: 10px 0;
}

.pricing-card .price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-features {
  text-align: left;
  margin: 16px 0 20px;
}

.pricing-features li {
  font-size: 0.83rem;
  padding: 5px 0;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-features li i {
  color: var(--accent);
  font-size: 0.75rem;
}

.pricing-card .btn {
  width: 100%;
}

.process-list {
  max-width: 600px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 18px;
  padding: 18px 0;
}

.process-step:not(:last-child) {
  border-bottom: 1px solid var(--border);
}

.step-number {
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h4 {
  margin-bottom: 3px;
}

.step-content p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.value-item {
  text-align: center;
  padding: 22px 14px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.value-item:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--secondary);
}

.value-item i {
  font-size: 1.4rem;
  color: var(--secondary);
  margin-bottom: 10px;
}

.value-item h3 {
  font-size: 1.05rem;
  margin-bottom: 5px;
}

.value-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

.stats-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 24px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--secondary);
  display: block;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.intro-text {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.intro-text p {
  color: var(--text-muted);
  font-size: 0.93rem;
}

.wall-art-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.wall-art-image {
  border-radius: var(--radius);
  overflow: hidden;
}

.wall-art-image img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
}

.wall-art-text h2 {
  margin-bottom: 10px;
}

.wall-art-text p {
  color: var(--text-muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.contact-form-wrap {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.contact-form-wrap h3 {
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 9px 14px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--secondary);
}

.form-group textarea {
  resize: none;
  min-height: 100px;
  line-height: 1.5;
  font-family: inherit;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 16px;
}

.form-checkbox input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--primary);
}

.form-checkbox label {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-card {
  background: var(--white);
  padding: 18px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.contact-info-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--secondary);
}

.contact-info-card i {
  font-size: 1.2rem;
  color: var(--secondary);
  width: 40px;
  height: 40px;
  background: var(--bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-card h4 {
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.contact-info-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

.map-section {
  padding: 0;
}

.map-section iframe {
  width: 100%;
  height: 300px;
  border: none;
  display: block;
}

.fullscreen-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.fullscreen-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.fullscreen-content i {
  font-size: 3rem;
  color: var(--secondary);
  margin-bottom: 16px;
}

.fullscreen-content h1 {
  margin-bottom: 10px;
}

.fullscreen-content p {
  color: var(--text-muted);
  max-width: 440px;
  margin: 0 auto 20px;
}

.policy-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 20px;
}

.policy-content h2 {
  font-size: 1.5rem;
  margin: 28px 0 10px;
}

.policy-content h3 {
  font-size: 1.15rem;
  margin: 20px 0 8px;
}

.policy-content p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 10px;
}

.policy-content ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

.policy-content ul li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 3px 0;
  list-style: disc;
}

.policy-date {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.65);
  padding: 24px 0 18px;
  font-size: 0.78rem;
}

.footer-disclaimer {
  text-align: center;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-disclaimer p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  max-width: 600px;
  margin: 0 auto;
  font-style: italic;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.75rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--secondary);
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
}

.cookie-popup {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 420px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  z-index: 5000;
  display: none;
  border: 1px solid var(--border);
}

.cookie-popup.visible {
  display: block;
}

.cookie-popup p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.cookie-popup a {
  color: var(--secondary);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 8px;
}

.cookie-buttons .btn {
  font-size: 0.75rem;
  padding: 7px 16px;
}

.contact-intro-banner {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  text-align: center;
  padding: 48px 0;
}

.contact-intro-banner h1 {
  color: var(--white);
  margin-bottom: 8px;
}

.contact-intro-banner p {
  opacity: 0.85;
  max-width: 480px;
  margin: 0 auto;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.approach-item {
  padding: 22px 18px;
  text-align: center;
}

.approach-item i {
  font-size: 1.5rem;
  color: var(--secondary);
  margin-bottom: 12px;
}

.approach-item h3 {
  font-size: 1.05rem;
}

.approach-item p {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin: 0;
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  .menu-toggle {
    display: block;
  }

  .header-nav {
    display: none;
  }

  .site-header .container {
    flex-direction: row;
    justify-content: space-between;
  }

  .header-logo::after {
    display: none;
  }

  .site-header.header-compact .header-nav {
    display: none;
  }

  .site-header.header-compact .menu-toggle {
    display: block;
  }

  .site-header.header-compact .container {
    max-width: calc(100% - 32px);
    padding: 8px 18px;
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-image::before {
    display: none;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }

  .section {
    padding: 36px 0;
  }

  .services-grid,
  .pricing-grid,
  .testimonials-grid,
  .values-grid,
  .approach-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .style-grid,
  .about-grid,
  .contact-grid,
  .wall-art-intro {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: none;
  }

  .stats-row {
    gap: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .contact-intro-banner {
    padding: 32px 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }

  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.35rem; }

  .hero {
    padding: 30px 0 36px;
  }

  .page-banner {
    padding: 28px 0;
  }

  .page-banner h1 {
    font-size: 1.6rem;
  }

  .stats-row {
    flex-wrap: wrap;
    gap: 14px;
  }

  .cookie-popup {
    left: 10px;
    right: 10px;
    max-width: none;
  }

  .cta-section {
    padding: 36px 0;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 13px;
  }

  .container {
    padding: 0 10px;
  }

  .site-header {
    padding: 14px 0 10px;
  }

  .header-logo {
    font-size: 1.3rem;
  }

  .section {
    padding: 28px 0;
  }

  .cta-section {
    padding: 28px 0;
  }

  .mobile-menu nav a {
    font-size: 1.4rem;
  }
}
