@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Inter:wght@300;400;500&display=swap');

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

:root {
  --blue: #3a8fb5;
  --blue-light: #64b4dc;
  --blue-dim: rgba(58,143,181,0.12);
  --blue-border: rgba(58,143,181,0.25);
  --navy: #1a2a35;
  --bg: #f8f8f6;
  --bg2: #ffffff;
  --bg3: #f4f8fb;
  --text: #1a1a1a;
  --text-dim: #666666;
  --text-faint: #aaaaaa;
  --border: #e8e8e4;
  --border-blue: #dde6ec;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 48px;
  height: 72px;
  background: #1a2a35;
  border-bottom: 1px solid rgba(100,180,220,0.15);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}

.nav-logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: #fff;
  text-transform: uppercase;
}

.nav-logo-sub {
  font-size: 8px;
  letter-spacing: 0.38em;
  color: var(--blue);
  text-transform: uppercase;
  margin-top: 4px;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--blue); }

.nav-cta {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #1a2a35;
  background: var(--blue);
  padding: 11px 28px;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  text-decoration: none;
  transition: opacity 0.2s;
}

.nav-cta:hover { opacity: 0.85; }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
  background: #fff;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(58,143,181,0.03) 40px,
    rgba(58,143,181,0.03) 41px
  );
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
  position: relative;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 8vw, 80px);
  font-weight: 300;
  line-height: 1.04;
  color: #1a1a1a;
  max-width: 640px;
  margin-bottom: 28px;
  position: relative;
}

.hero-title em {
  font-style: italic;
  color: var(--blue);
}

.hero-sub {
  font-size: 13px;
  letter-spacing: 0.03em;
  color: var(--text-dim);
  max-width: 380px;
  line-height: 1.9;
  margin-bottom: 44px;
  position: relative;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--blue);
  padding: 15px 36px;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  text-decoration: none;
  transition: opacity 0.2s;
  display: inline-block;
}

.btn-primary:hover { opacity: 0.85; }

.btn-secondary {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  background: transparent;
  padding: 15px 36px;
  border: 0.5px solid rgba(240,240,240,0.18);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}

.btn-secondary:hover { border-color: var(--blue); color: var(--blue); }

.mobile-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--blue);
  border: 1px solid var(--blue-border);
  padding: 8px 18px;
  margin-bottom: 36px;
  position: relative;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}

/* STATS BAR */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--navy);
  border-bottom: 1px solid rgba(100,180,220,0.1);
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(100,180,220,0.04) 60px, rgba(100,180,220,0.04) 61px),
    repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(100,180,220,0.04) 60px, rgba(100,180,220,0.04) 61px);
  pointer-events: none;
}

.stat {
  padding: 32px 20px;
  border-right: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  position: relative;
}

.stat:last-child { border-right: none; }

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--blue-light);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* SECTIONS */
.section {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.section-alt {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--bg3);
  position: relative;
  overflow: hidden;
}

.section-alt::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle, rgba(58,143,181,0.07) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.section-eyebrow {
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
  position: relative;
}

.accent-line {
  width: 32px;
  height: 1px;
  background: var(--blue);
  margin-bottom: 20px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 300;
  color: #1a1a1a;
  margin-bottom: 40px;
  line-height: 1.1;
  position: relative;
}

.section-title em { font-style: italic; color: var(--blue); }

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border-blue);
  border: 1px solid var(--border-blue);
}

.service-card {
  background: #fff;
  padding: 36px 32px;
  text-decoration: none;
  display: block;
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '→';
  position: absolute;
  bottom: 32px;
  right: 32px;
  font-size: 16px;
  color: var(--blue);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.2s, transform 0.2s;
}

.service-card:hover { background: #f5f9fc; }
.service-card:hover::after { opacity: 1; transform: translateX(0); }

.service-num {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: #b0cdd9;
  margin-bottom: 18px;
}

.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 10px;
  line-height: 1.2;
}

.service-desc {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 18px;
}

.service-price {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--blue);
}

.service-more {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* PRICING TABLE */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 8px;
  font-size: 13px;
}

.pricing-table tr {
  border-bottom: 1px solid var(--border);
}

.pricing-table td {
  padding: 12px 0;
  color: var(--text-dim);
}

.pricing-table td:last-child {
  text-align: right;
  color: var(--blue);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.pricing-section {
  margin-bottom: 32px;
}

.pricing-section h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.details-box {
  background: var(--bg3);
  border: 1px solid var(--border-blue);
  padding: 20px 24px;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.details-box div {
  font-size: 12px;
  color: var(--text-dim);
  display: flex;
  gap: 10px;
}

.details-box span.label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  min-width: 80px;
}

/* CERAMIC TIERS */
.ceramic-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-blue);
  border: 1px solid var(--border-blue);
  margin-bottom: 32px;
}

.ceramic-tier {
  background: #fff;
  padding: 28px 24px;
}

.ceramic-tier.featured {
  background: #f0f7fb;
  border: 2px solid var(--blue);
}

.tier-badge {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #fff;
  background: var(--blue);
  padding: 4px 10px;
  display: inline-block;
  margin-bottom: 12px;
}

.tier-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.tier-duration {
  font-size: 11px;
  color: var(--text-faint);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.tier-features li {
  font-size: 12px;
  color: var(--text-dim);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.tier-features li::before {
  content: '';
  width: 12px;
  height: 1px;
  background: var(--blue);
  flex-shrink: 0;
  margin-top: 8px;
}

.tier-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--blue);
  margin-bottom: 16px;
}

.tier-btn {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  background: var(--blue);
  padding: 12px 16px;
  text-align: center;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  transition: opacity 0.2s;
}

.tier-btn:hover { opacity: 0.85; }

/* Ultimate tier */
.tier-ultimate {
  background: #1a2a35 !important;
}

.tier-ultimate .tier-name,
.tier-ultimate .tier-duration,
.tier-ultimate .tier-features li {
  color: rgba(255,255,255,0.75);
}

.tier-ultimate .tier-features li::before {
  background: #c9a84c;
}

.tier-badge-gold {
  background: #c9a84c !important;
}

.tier-price-gold {
  color: #c9a84c !important;
}

.tier-btn-gold {
  background: #c9a84c !important;
  color: #1a2a35 !important;
}

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.gallery-item {
  aspect-ratio: 1;
  background: #e8e8e4;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: filter 0.4s, transform 0.4s;
}

.gallery-item:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* REVIEWS */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-blue);
  position: relative;
}

.review {
  background: var(--bg3);
  padding: 32px;
  position: relative;
}

.review-stars {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--blue);
  margin-bottom: 14px;
}

.review-text {
  font-size: 13px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 18px;
  font-style: italic;
}

.review-author {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* ABOUT + FORM SPLIT */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-body {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.95;
  margin-bottom: 16px;
}

/* CONTACT FORM */
.form-box {
  border: 1px solid var(--border-blue);
  padding: 44px;
  background: var(--bg3);
}

.form-label {
  font-size: 9px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 28px;
  display: block;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: #fff;
  border: 1px solid #d8e4ec;
  color: #1a1a1a;
  padding: 13px 16px;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
}

.form-group select option { background: #fff; color: #1a1a1a; }
.form-group textarea { resize: vertical; min-height: 100px; }

.form-submit {
  width: 100%;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  background: var(--blue);
  padding: 16px;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  transition: opacity 0.2s;
}

.form-submit:hover { opacity: 0.85; }

.form-note {
  font-size: 11px;
  color: var(--text-faint);
  text-align: center;
  margin-top: 12px;
}

/* FOOTER */
.footer {
  padding: 44px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--navy);
  flex-wrap: wrap;
  gap: 24px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(100,180,220,0.03) 40px,
    rgba(100,180,220,0.03) 41px
  );
  pointer-events: none;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 6px;
  position: relative;
}

.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
  position: relative;
}

.footer-right { text-align: right; }

.footer-phone {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--blue-light);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 4px;
  position: relative;
}

.footer-addr {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
  position: relative;
}

.footer-links {
  display: flex;
  gap: 20px;
  margin-top: 8px;
  justify-content: flex-end;
  position: relative;
}

.footer-links a {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}

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

/* SERVICE PAGE HERO */
.page-hero {
  padding: 140px 48px 72px;
  border-bottom: 1px solid var(--border);
  background: #fff;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(58,143,181,0.03) 40px,
    rgba(58,143,181,0.03) 41px
  );
  pointer-events: none;
}

.page-hero-back {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
  position: relative;
}

.page-hero-back:hover { color: var(--blue); }

.page-hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
  position: relative;
}

.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 300;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.05;
  position: relative;
}

.page-hero-title em { font-style: italic; color: var(--blue); }

.page-hero-desc {
  font-size: 14px;
  color: var(--text-dim);
  max-width: 520px;
  line-height: 1.9;
  margin-bottom: 36px;
  position: relative;
}

.page-hero-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--blue);
  margin-bottom: 32px;
  position: relative;
}

/* SERVICE DETAIL CONTENT */
.service-content {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}

.service-includes {
  margin-bottom: 40px;
}

.service-includes h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.includes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.includes-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
}

.includes-list li::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--blue);
  flex-shrink: 0;
  margin-top: 10px;
}

.service-note {
  font-size: 12px;
  color: var(--text-faint);
  line-height: 1.8;
  padding: 20px;
  border-left: 2px solid var(--blue-border);
  margin-top: 32px;
  background: var(--bg3);
}

/* FAQ PAGE */
.faq-list {
  max-width: 760px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

.faq-question {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: #1a1a1a;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}

.faq-question span { color: var(--blue); font-size: 18px; transition: transform 0.2s; }
.faq-item.open .faq-question span { transform: rotate(45deg); }

.faq-answer {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.9;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-top: 18px;
}

/* SUCCESS MESSAGE */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.show { display: block; }

.form-success-icon {
  font-size: 32px;
  color: var(--blue);
  margin-bottom: 16px;
}

.form-success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.form-success p {
  font-size: 13px;
  color: var(--text-dim);
}

/* RESPONSIVE */
/* HAMBURGER BUTTON */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 200;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: transform 0.25s, opacity 0.25s;
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE DRAWER */
.nav-drawer {
  display: none;
  position: fixed;
  top: 72px;
  left: 0; right: 0;
  background: #1a2a35;
  border-bottom: 1px solid rgba(100,180,220,0.2);
  z-index: 99;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.nav-drawer.open {
  max-height: 400px;
}

.nav-drawer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 16px 0 8px;
}

.nav-drawer ul li a {
  display: block;
  padding: 16px 28px;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s, background 0.2s;
}

.nav-drawer ul li a:hover { color: #64b4dc; background: rgba(100,180,220,0.05); }

.nav-drawer .drawer-cta {
  display: block;
  margin: 16px 28px 24px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #1a2a35;
  background: #3a8fb5;
  padding: 14px 24px;
  text-align: center;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

@media (max-width: 900px) {
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-drawer { display: block; }

  .hero { padding: 100px 24px 60px; }
  .hero-title { font-size: 44px; }
  .section, .section-alt { padding: 56px 24px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .service-content { grid-template-columns: 1fr; }
  .ceramic-tiers { grid-template-columns: 1fr !important; }
  .footer { padding: 32px 24px; flex-direction: column; align-items: flex-start; }
  .footer-right { text-align: left; }
  .footer-links { justify-content: flex-start; flex-wrap: wrap; }
  .page-hero { padding: 110px 24px 52px; }
  .page-hero-title { font-size: 36px; }
  .form-box { padding: 28px 20px; }
  .mobile-badge { font-size: 9px; letter-spacing: 0.2em; }
}
