/* ===== MOLDA — GLOBAL STYLES ===== */

:root {
  --brown: #A52A2A;
  --terracotta: #D2691E;
  --sandy: #F4A460;
  --cream: #FDF6ED;
  --warm-white: #FFFAF5;
  --dark: #2C1A0E;
  --dark-mid: #4A2E1A;
  --text-body: #3D2010;
  --text-muted: #7A5640;
  --border-light: rgba(165, 42, 42, 0.15);
  --shadow-soft: 0 4px 24px rgba(165, 42, 42, 0.10);
  --shadow-medium: 0 8px 40px rgba(165, 42, 42, 0.15);
  --shadow-strong: 0 16px 60px rgba(165, 42, 42, 0.22);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-xl: 48px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  background: var(--warm-white);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: var(--terracotta);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--brown); }

img { display: block; max-width: 100%; height: auto; }

h1, h2, h3, h4 {
  font-family: 'Georgia', serif;
  line-height: 1.2;
  color: var(--dark);
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 246, 237, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: var(--shadow-soft);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brown), var(--terracotta));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  box-shadow: 0 2px 12px rgba(165,42,42,0.3);
  flex-shrink: 0;
}
.logo-text {
  font-family: Georgia, serif;
  font-size: 26px;
  font-weight: bold;
  color: var(--brown);
  letter-spacing: 2px;
}
.logo-sub {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1;
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.main-nav a {
  font-family: Georgia, serif;
  font-size: 14px;
  color: var(--text-body);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  letter-spacing: 0.3px;
}
.main-nav a:hover {
  background: rgba(165,42,42,0.08);
  color: var(--brown);
}
.header-cta {
  background: linear-gradient(135deg, var(--brown), var(--terracotta)) !important;
  color: #fff !important;
  padding: 10px 20px !important;
  border-radius: var(--radius-lg) !important;
  font-weight: bold;
  box-shadow: 0 2px 12px rgba(165,42,42,0.3);
  transition: transform var(--transition), box-shadow var(--transition) !important;
}
.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(165,42,42,0.4) !important;
  color: #fff !important;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  border: none;
  background: none;
}
.burger span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: Georgia, serif;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-lg);
  padding: 14px 32px;
  transition: all var(--transition);
  letter-spacing: 0.3px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--brown), var(--terracotta));
  color: #fff;
  box-shadow: 0 4px 20px rgba(165,42,42,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(165,42,42,0.45);
  color: #fff;
}
.btn-secondary {
  background: transparent;
  color: var(--brown);
  border: 2px solid var(--brown);
}
.btn-secondary:hover {
  background: var(--brown);
  color: #fff;
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}
.btn-lg {
  font-size: 18px;
  padding: 18px 44px;
}

/* ===== SECTION LAYOUT ===== */
.section {
  padding: 96px 0;
}
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.section-tag {
  display: inline-block;
  font-family: Georgia, serif;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 4vw, 48px);
  color: var(--dark);
  margin-bottom: 20px;
}
.section-lead {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.8;
}

/* ===== SEWWWS BLOCK (HERO) ===== */
.sewwws {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding-top: 72px;
}
.sewwws-image-half {
  position: relative;
  width: 100%;
  height: 55vh;
  overflow: hidden;
}
.sewwws-image-half img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  animation: heroZoom 8s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}
.sewwws-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(44,26,14,0) 30%, rgba(44,26,14,0.45) 100%);
}
.sewwws-diagonal {
  position: relative;
  z-index: 2;
  margin-top: -60px;
}
.sewwws-diagonal::before {
  content: '';
  display: block;
  width: 100%;
  height: 80px;
  background: var(--warm-white);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
.sewwws-cells {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--warm-white);
}
.sewwws-cell {
  padding: 56px 48px 72px;
}
.sewwws-cell-greeting {
  border-right: 1px solid var(--border-light);
}
.sewwws-eyebrow {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--terracotta);
  font-family: Georgia, serif;
  margin-bottom: 20px;
  font-weight: bold;
}
.sewwws-headline {
  font-size: clamp(36px, 5vw, 64px);
  font-family: Georgia, serif;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 24px;
}
.sewwws-headline span {
  color: var(--terracotta);
  display: block;
  font-style: italic;
}
.sewwws-desc {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 440px;
}
.sewwws-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
}
.stat-item {
  text-align: left;
}
.stat-number {
  font-size: 32px;
  font-weight: bold;
  font-family: Georgia, serif;
  color: var(--brown);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

.sewwws-form-cell {
  background: linear-gradient(135deg, rgba(165,42,42,0.04), rgba(210,105,30,0.06));
}
.sewwws-form-title {
  font-size: 24px;
  font-family: Georgia, serif;
  color: var(--dark);
  margin-bottom: 8px;
}
.sewwws-form-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}
.mini-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mini-form input {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: Georgia, serif;
  font-size: 15px;
  color: var(--text-body);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.mini-form input:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(210,105,30,0.15);
}
.mini-form input::placeholder { color: var(--text-muted); opacity: 0.7; }

/* ===== SLIDER ===== */
.slider-section {
  background: var(--cream);
}
.slider-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
}
.slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.slide {
  flex: 0 0 100%;
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  background: linear-gradient(0deg, rgba(44,26,14,0.85) 0%, transparent 100%);
  color: #fff;
}
.slide-caption h3 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 8px;
}
.slide-caption p {
  font-size: 15px;
  opacity: 0.85;
  max-width: 500px;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(253,246,237,0.95);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--brown);
  box-shadow: var(--shadow-medium);
  transition: all var(--transition);
  z-index: 10;
}
.slider-btn:hover {
  background: var(--brown);
  color: #fff;
  transform: translateY(-50%) scale(1.08);
}
.slider-btn.prev { left: 16px; }
.slider-btn.next { right: 16px; }
.slider-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 24px;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(165,42,42,0.25);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}
.slider-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--brown);
}

/* ===== ACCORDION ===== */
.accordion-section {
  background: var(--warm-white);
}
.accordion-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.accordion-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  position: sticky;
  top: 100px;
}
.accordion-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.accordion-image:hover img { transform: scale(1.04); }

.accordion-list { display: flex; flex-direction: column; gap: 12px; }
.accordion-item {
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  transition: box-shadow var(--transition);
}
.accordion-item:hover { box-shadow: var(--shadow-soft); }
.accordion-item.open { border-color: var(--terracotta); }
.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  cursor: pointer;
  user-select: none;
}
.accordion-header h3 {
  font-size: 17px;
  font-family: Georgia, serif;
  color: var(--dark);
  line-height: 1.4;
  padding-right: 16px;
}
.accordion-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(165,42,42,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
  font-size: 18px;
  color: var(--brown);
}
.accordion-item.open .accordion-icon {
  background: var(--brown);
  color: #fff;
  transform: rotate(45deg);
}
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.accordion-body-inner {
  padding: 0 24px 24px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}
.accordion-body-inner ul {
  list-style: none;
  margin-top: 12px;
}
.accordion-body-inner ul li {
  padding: 6px 0 6px 24px;
  position: relative;
}
.accordion-body-inner ul li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--sandy);
  font-size: 10px;
  top: 10px;
}

/* ===== CIRCULAR ABOUT ===== */
.about-section {
  background: linear-gradient(135deg, var(--cream) 0%, rgba(244,164,96,0.1) 100%);
  overflow: hidden;
}
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-circle-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 480px;
  height: 480px;
  margin: 0 auto;
}
.about-center-photo {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: var(--shadow-strong);
  flex-shrink: 0;
  z-index: 2;
}
.about-center-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-orbit {
  position: absolute;
  inset: 0;
  animation: spin 30s linear infinite;
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.orbit-item {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--text-muted);
  text-align: center;
  font-family: Georgia, serif;
  padding: 8px;
  animation: counter-spin 30s linear infinite;
  border: 2px solid var(--border-light);
}
@keyframes counter-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}
.orbit-icon { font-size: 22px; margin-bottom: 2px; }

.about-orbit-ring {
  position: absolute;
  inset: 0;
  border: 1.5px dashed rgba(165,42,42,0.2);
  border-radius: 50%;
  pointer-events: none;
}

.about-content {}
.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  margin-bottom: 36px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-lg);
  font-size: 13px;
  font-family: Georgia, serif;
  border: 1.5px solid var(--border-light);
  background: #fff;
  color: var(--text-body);
  box-shadow: 0 2px 8px rgba(165,42,42,0.08);
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
  flex-shrink: 0;
}
.about-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 8px;
}
.fact-card {
  padding: 20px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1.5px solid var(--border-light);
  box-shadow: 0 2px 12px rgba(165,42,42,0.06);
}
.fact-number {
  font-size: 28px;
  font-weight: bold;
  font-family: Georgia, serif;
  color: var(--brown);
  line-height: 1;
}
.fact-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ===== TABLE ===== */
.table-section {
  background: var(--warm-white);
}
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}
.schedule-table thead {
  background: linear-gradient(135deg, var(--brown), var(--terracotta));
  color: #fff;
}
.schedule-table th {
  padding: 18px 20px;
  text-align: left;
  font-family: Georgia, serif;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.5px;
}
.schedule-table tbody tr {
  border-bottom: 1px solid var(--border-light);
  background: #fff;
  transition: background var(--transition);
}
.schedule-table tbody tr:nth-child(even) {
  background: var(--cream);
}
.schedule-table tbody tr:hover {
  background: rgba(244,164,96,0.1);
}
.schedule-table td {
  padding: 16px 20px;
  font-size: 15px;
  color: var(--text-body);
}
.level-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-family: Georgia, serif;
  font-weight: bold;
}
.level-begin { background: rgba(244,164,96,0.2); color: var(--terracotta); }
.level-mid { background: rgba(165,42,42,0.1); color: var(--brown); }
.level-all { background: rgba(210,105,30,0.15); color: var(--dark-mid); }
.table-caption {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 20px;
  text-align: center;
  font-style: italic;
}

/* ===== PRICE CARDS ===== */
.pricing-section {
  background: var(--cream);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.price-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 2px solid var(--border-light);
  box-shadow: var(--shadow-soft);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sandy), var(--terracotta));
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
  border-color: var(--terracotta);
}
.price-card.popular {
  border-color: var(--brown);
  transform: scale(1.02);
}
.price-card.popular::before {
  background: linear-gradient(90deg, var(--brown), var(--terracotta));
  height: 6px;
}
.popular-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--brown), var(--terracotta));
  color: #fff;
  font-size: 11px;
  font-family: Georgia, serif;
  font-weight: bold;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 20px;
}
.price-icon {
  font-size: 36px;
  margin-bottom: 16px;
}
.price-name {
  font-size: 18px;
  font-family: Georgia, serif;
  font-weight: bold;
  color: var(--dark);
  margin-bottom: 8px;
}
.price-amount {
  font-size: 42px;
  font-family: Georgia, serif;
  font-weight: bold;
  color: var(--brown);
  line-height: 1;
  margin-bottom: 4px;
}
.price-amount span {
  font-size: 20px;
  color: var(--text-muted);
}
.price-period {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}
.price-features {
  list-style: none;
  flex: 1;
  margin-bottom: 28px;
}
.price-features li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-body);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.price-features li::before {
  content: '✓';
  color: var(--terracotta);
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ===== CALCULATOR ===== */
.calc-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
  color: #fff;
}
.calc-section .section-title { color: #fff; }
.calc-section .section-lead { color: rgba(255,255,255,0.75); }
.calc-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 48px;
}
.calc-controls { display: flex; flex-direction: column; gap: 32px; }
.calc-group label {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
  font-family: Georgia, serif;
  letter-spacing: 0.5px;
}
.calc-group .value-display {
  font-size: 20px;
  font-weight: bold;
  color: var(--sandy);
  margin-bottom: 12px;
  font-family: Georgia, serif;
}
input[type="range"] {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  outline: none;
  background: rgba(244,164,96,0.3);
  -webkit-appearance: none;
  cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--sandy);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  cursor: pointer;
}
.calc-radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.calc-radio {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255,255,255,0.15);
  cursor: pointer;
  transition: all var(--transition);
}
.calc-radio:hover, .calc-radio.selected {
  border-color: var(--sandy);
  background: rgba(244,164,96,0.1);
}
.calc-radio input { display: none; }
.radio-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4);
  flex-shrink: 0;
  transition: all var(--transition);
}
.calc-radio.selected .radio-dot {
  background: var(--sandy);
  border-color: var(--sandy);
}
.calc-radio-label {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  font-family: Georgia, serif;
}

.calc-result {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(244,164,96,0.3);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
}
.result-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: Georgia, serif;
  margin-bottom: 16px;
}
.result-price {
  font-size: 72px;
  font-family: Georgia, serif;
  font-weight: bold;
  color: var(--sandy);
  line-height: 1;
  margin-bottom: 8px;
}
.result-rub {
  font-size: 40px;
}
.result-detail {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
  line-height: 1.6;
}
.result-per-lesson {
  font-size: 16px;
  color: rgba(244,164,96,0.9);
  font-family: Georgia, serif;
  font-weight: bold;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ===== SELLING TEXT ===== */
.selling-section {
  background: var(--cream);
}
.selling-content {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.selling-lead {
  font-size: clamp(20px, 3vw, 28px);
  font-family: Georgia, serif;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 32px;
  font-style: italic;
}
.selling-body {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 24px;
}
.selling-highlight {
  display: inline-block;
  background: linear-gradient(135deg, rgba(210,105,30,0.12), rgba(244,164,96,0.15));
  border-left: 4px solid var(--terracotta);
  padding: 24px 32px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  text-align: left;
  margin: 24px 0;
  font-size: 18px;
  color: var(--dark-mid);
  font-style: italic;
  font-family: Georgia, serif;
}
.selling-cta-wrap {
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ===== INFOGRAPHIC ===== */
.infographic-section {
  background: var(--warm-white);
}
.infographic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.info-card {
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.info-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sandy), var(--terracotta));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}
.info-card:hover::after { transform: scaleX(1); }
.info-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}
.info-number {
  font-size: 40px;
  font-family: Georgia, serif;
  font-weight: bold;
  color: var(--brown);
  line-height: 1;
  margin-bottom: 8px;
}
.info-title {
  font-size: 17px;
  font-family: Georgia, serif;
  font-weight: bold;
  color: var(--dark);
  margin-bottom: 10px;
}
.info-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: var(--cream);
}
.testimonials-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 8px 4px 32px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--sandy) transparent;
}
.testimonials-scroll::-webkit-scrollbar {
  height: 4px;
}
.testimonials-scroll::-webkit-scrollbar-track {
  background: transparent;
}
.testimonials-scroll::-webkit-scrollbar-thumb {
  background: var(--sandy);
  border-radius: 2px;
}
.testimonial-card {
  flex: 0 0 380px;
  scroll-snap-align: start;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-soft);
  border: 1.5px solid var(--border-light);
  transition: all var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}
.testimonial-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--sandy);
  margin-bottom: 16px;
  flex-shrink: 0;
}
.testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-stars {
  color: var(--sandy);
  font-size: 16px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-text::before { content: '«'; }
.testimonial-text::after { content: '»'; }
.testimonial-name {
  font-size: 15px;
  font-family: Georgia, serif;
  font-weight: bold;
  color: var(--dark);
}
.testimonial-detail {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ===== CLAY EXPLORER ===== */
.explorer-section {
  background: var(--warm-white);
}
.explorer-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-top: 48px;
}
.explorer-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.clay-btn {
  padding: 10px 22px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border-light);
  background: #fff;
  font-family: Georgia, serif;
  font-size: 14px;
  color: var(--text-body);
  cursor: pointer;
  transition: all var(--transition);
  font-weight: bold;
}
.clay-btn:hover, .clay-btn.active {
  background: var(--brown);
  color: #fff;
  border-color: var(--brown);
  box-shadow: 0 4px 16px rgba(165,42,42,0.3);
}
.clay-display {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  position: relative;
  aspect-ratio: 4/3;
}
.clay-display img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease;
}
.clay-info {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-soft);
}
.clay-info h3 {
  font-size: 22px;
  font-family: Georgia, serif;
  color: var(--dark);
  margin-bottom: 12px;
}
.clay-info p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.clay-props {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.clay-prop {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-body);
}
.clay-prop-icon { font-size: 18px; }
.clay-prop-label { color: var(--text-muted); }
.clay-prop-value { font-weight: bold; color: var(--dark-mid); }
.clay-anim {
  height: 6px;
  border-radius: 3px;
  background: rgba(165,42,42,0.12);
  overflow: hidden;
  margin-top: 4px;
}
.clay-anim-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--sandy), var(--terracotta));
  animation: fillBar 1.2s ease forwards;
}
@keyframes fillBar {
  from { width: 0; }
}

/* ===== GALLERY ===== */
.gallery-section {
  background: var(--cream);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 16px;
  margin-top: 48px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
}
.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-strong);
  z-index: 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(5) { grid-column: span 2; }
.gallery-item:nth-child(8) { grid-column: span 2; grid-row: span 2; }
.gallery-item img { height: 100%; min-height: 200px; }

/* ===== INTERACTIVE CARDS ===== */
.directions-section {
  background: var(--warm-white);
}
.directions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.direction-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-soft);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.direction-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
  border-color: var(--terracotta);
}
.direction-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.direction-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.direction-icon { font-size: 32px; margin-bottom: 12px; }
.direction-title {
  font-size: 19px;
  font-family: Georgia, serif;
  font-weight: bold;
  color: var(--dark);
  margin-bottom: 10px;
}
.direction-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}
.direction-cta {
  width: 100%;
  padding: 12px 20px;
  background: linear-gradient(135deg, var(--brown), var(--terracotta));
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: Georgia, serif;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}
.direction-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(165,42,42,0.35);
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44,26,14,0.75);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px) scale(0.98);
  transition: transform var(--transition);
  position: relative;
}
.modal-overlay.open .modal-box {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(165,42,42,0.08);
  border: none;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
}
.modal-close:hover {
  background: var(--brown);
  color: #fff;
}
.modal-title {
  font-size: 24px;
  font-family: Georgia, serif;
  color: var(--dark);
  margin-bottom: 8px;
}
.modal-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-family: Georgia, serif;
  font-weight: bold;
  color: var(--dark);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: Georgia, serif;
  font-size: 15px;
  color: var(--text-body);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(210,105,30,0.15);
}
.radio-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.radio-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-light);
  cursor: pointer;
  transition: all var(--transition);
  font-size: 14px;
  font-family: Georgia, serif;
  color: var(--text-body);
}
.radio-option:hover {
  border-color: var(--terracotta);
  background: rgba(210,105,30,0.05);
}
.radio-option input[type="radio"] { accent-color: var(--terracotta); }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: rgba(255,255,255,0.9);
  padding: 20px 32px;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
  transform: translateY(0);
  transition: transform 0.4s ease;
}
.cookie-banner.hidden { transform: translateY(110%); }
.cookie-text { font-size: 14px; line-height: 1.6; flex: 1; min-width: 280px; }
.cookie-text a { color: var(--sandy); }
.cookie-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cookie-btn {
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  border: none;
  font-family: Georgia, serif;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: all var(--transition);
}
.cookie-accept { background: var(--sandy); color: var(--dark); }
.cookie-accept:hover { background: var(--terracotta); color: #fff; }
.cookie-necessary { background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.cookie-necessary:hover { background: rgba(255,255,255,0.2); }
.cookie-settings { background: transparent; color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.2); }
.cookie-settings:hover { color: #fff; border-color: rgba(255,255,255,0.5); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding: 72px 0 32px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-text { color: var(--sandy); }
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 13px;
  font-family: Georgia, serif;
  font-weight: bold;
  color: #fff;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--sandy); }
.footer-contact p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}
.footer-contact a {
  color: var(--sandy);
  text-decoration: none;
}
.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 28px;
}
.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-legal {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
}
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--sandy); }

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mt-4 { margin-top: 16px; }
.divider { height: 1px; background: var(--border-light); margin: 40px 0; }
.color-terracotta { color: var(--terracotta); }
.color-sandy { color: var(--sandy); }
.font-italic { font-style: italic; }

/* ===== INNER PAGES ===== */
.page-hero {
  background: linear-gradient(135deg, var(--cream) 0%, rgba(244,164,96,0.15) 100%);
  padding: 140px 0 80px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(32px, 5vw, 56px); margin-bottom: 16px; }
.page-hero p { font-size: 18px; color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 32px;
}
.legal-content h2 {
  font-size: 24px;
  font-family: Georgia, serif;
  color: var(--dark);
  margin: 40px 0 14px;
}
.legal-content h3 {
  font-size: 18px;
  color: var(--dark-mid);
  margin: 28px 0 10px;
}
.legal-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 16px;
}
.legal-content ul {
  margin: 12px 0 20px 24px;
}
.legal-content ul li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 6px;
}

/* ===== THANKS PAGE ===== */
.thanks-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 32px;
  background: linear-gradient(135deg, var(--cream) 0%, rgba(244,164,96,0.15) 100%);
}
.thanks-box {
  max-width: 600px;
  text-align: center;
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 72px 56px;
  box-shadow: var(--shadow-strong);
  border: 1.5px solid var(--border-light);
}
.thanks-icon { font-size: 80px; margin-bottom: 24px; display: block; }
.thanks-box h1 { font-size: 36px; margin-bottom: 16px; }
.thanks-box p { font-size: 17px; color: var(--text-muted); line-height: 1.8; margin-bottom: 12px; }
.thanks-box .btn { margin-top: 36px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .about-layout { grid-template-columns: 1fr; }
  .about-circle-container { width: 360px; height: 360px; }
  .about-center-photo { width: 200px; height: 200px; }
  .directions-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .sewwws-cells { grid-template-columns: 1fr; }
  .sewwws-cell { padding: 40px 24px; }
  .sewwws-cell-greeting { border-right: none; border-bottom: 1px solid var(--border-light); }
  .accordion-layout { grid-template-columns: 1fr; }
  .accordion-image { position: static; }
  .calc-layout { grid-template-columns: 1fr; }
  .explorer-layout { grid-template-columns: 1fr; }
  .infographic-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 1; grid-row: span 1; }
  .gallery-item:nth-child(5) { grid-column: span 1; }
  .gallery-item:nth-child(8) { grid-column: span 1; grid-row: span 1; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .header-inner { padding: 0 20px; }
  .section-inner { padding: 0 20px; }
  .burger { display: flex; }
  nav.main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--warm-white);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-medium);
    transform: translateY(-110%);
    transition: transform var(--transition);
    z-index: 999;
  }
  nav.main-nav.open { transform: translateY(0); }
  nav.main-nav a { width: 100%; padding: 12px 16px; }
  .directions-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .infographic-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .sewwws-stats { gap: 20px; }
  .modal-box { padding: 32px 24px; }
  .sewwws-image-half { height: 40vh; }
  .slide-caption { padding: 20px; }
  .price-card.popular { transform: none; }
  .about-circle-container { width: 280px; height: 280px; }
  .about-center-photo { width: 160px; height: 160px; }
  .result-price { font-size: 52px; }
  .calc-result { padding: 32px 24px; }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .sewwws-stats { flex-wrap: wrap; }
  .testimonial-card { flex: 0 0 300px; }
}
