


:root {
  --clr-bg: #f5f4f0;
  --clr-surface: #ffffff;
  --clr-surface-2: #f0ede6;
  --clr-surface-3: #e8e4db;
  --clr-primary: #2d5a4e;
  --clr-primary-dark: #1e3d35;
  --clr-primary-light: #3d7a6a;
  --clr-accent: #c8a96e;
  --clr-accent-light: #e0c99a;
  --clr-accent-dark: #a08040;
  --clr-text: #1c2320;
  --clr-text-2: #3d4a44;
  --clr-text-muted: #6b7c74;
  --clr-text-light: #9aada5;
  --clr-border: #ddd8ce;
  --clr-border-light: #ece8e0;
  --clr-error: #c0392b;
  --clr-success: #27ae60;
  --clr-warning: #e67e22;

  --grad-primary: linear-gradient(135deg, #2d5a4e 0%, #1e3d35 100%);
  --grad-accent: linear-gradient(135deg, #c8a96e 0%, #a08040 100%);
  --grad-hero: linear-gradient(160deg, rgba(30,61,53,0.88) 0%, rgba(45,90,78,0.65) 60%, rgba(200,169,110,0.25) 100%);
  --grad-surface: linear-gradient(180deg, #f5f4f0 0%, #ece8e0 100%);

  --shadow-xs: 0 1px 3px rgba(28,35,32,0.06), 0 1px 2px rgba(28,35,32,0.04);
  --shadow-sm: 0 2px 8px rgba(28,35,32,0.08), 0 1px 3px rgba(28,35,32,0.05);
  --shadow-md: 0 4px 16px rgba(28,35,32,0.10), 0 2px 6px rgba(28,35,32,0.06);
  --shadow-lg: 0 8px 32px rgba(28,35,32,0.12), 0 4px 12px rgba(28,35,32,0.07);
  --shadow-xl: 0 16px 48px rgba(28,35,32,0.14), 0 6px 20px rgba(28,35,32,0.08);
  --shadow-accent: 0 4px 20px rgba(200,169,110,0.25);

  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  --nav-height: 72px;
  --container-max: 1200px;

  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--clr-text);
  background-color: var(--clr-bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}
main { flex: 1; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
address { font-style: normal; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }


h1, h2, h3, h4, h5 {
  font-family: 'Bitter', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--clr-text);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; font-weight: 600; }
h5 { font-size: 0.9rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
p { line-height: 1.75; color: var(--clr-text-2); }
em { font-style: italic; color: var(--clr-accent); }


.pre-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
}
.pre-section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-accent);
  background: rgba(200,169,110,0.12);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
  border: 1px solid rgba(200,169,110,0.25);
}
.pre-section-heading {
  margin-bottom: var(--space-4);
}
.pre-section-sub {
  font-size: 1.05rem;
  color: var(--clr-text-muted);
  max-width: 560px;
  line-height: 1.8;
}


.pre-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius-full);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--transition-base);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.pre-btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(45,90,78,0.3);
}
.pre-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,90,78,0.4);
}
.pre-btn-secondary {
  background: transparent;
  color: var(--clr-primary);
  border: 2px solid var(--clr-primary);
}
.pre-btn-secondary:hover {
  background: var(--clr-primary);
  color: #fff;
  transform: translateY(-2px);
}
.pre-btn-ghost {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
}
.pre-btn-ghost:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}
.pre-btn-full { width: 100%; justify-content: center; }


.pre-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: var(--clr-surface);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base);
}
.pre-nav.pre-nav-scrolled {
  box-shadow: var(--shadow-md);
}
.pre-nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}
.pre-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  flex-shrink: 0;
}
.pre-logo-img {
  width: 36px;
  height: 36px;
}
.pre-logo-text {
  font-family: 'Bitter', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-primary);
  line-height: 1.2;
}
.pre-logo-text em {
  font-style: italic;
  color: var(--clr-accent);
}
.pre-nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}
.pre-nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--clr-text-2);
  text-decoration: none;
  padding: var(--space-2) var(--space-1);
  position: relative;
  transition: color var(--transition-base);
}
.pre-nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--clr-accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition-base);
  border-radius: var(--radius-full);
}
.pre-nav-link:hover,
.pre-nav-link.active {
  color: var(--clr-primary);
}
.pre-nav-link:hover::after,
.pre-nav-link.active::after {
  transform: scaleX(1);
}
.pre-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  background: none;
  border: none;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.pre-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-text);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}


.pre-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--grad-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
}
.pre-mobile-menu.pre-menu-open {
  opacity: 1;
  pointer-events: all;
}
.pre-mobile-close {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  transition: background var(--transition-base);
}
.pre-mobile-close:hover {
  background: rgba(255,255,255,0.2);
}
.pre-mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
}
.pre-mobile-link {
  font-family: 'Bitter', serif;
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color var(--transition-base);
  letter-spacing: -0.01em;
}
.pre-mobile-link:hover {
  color: var(--clr-accent-light);
}


.pre-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.pre-hero-bg {
  position: absolute;
  inset: 0;
}
.pre-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.pre-hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
}
.pre-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: calc(var(--nav-height) + var(--space-12)) var(--space-6) var(--space-20);
  width: 100%;
}
.pre-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-accent-light);
  background: rgba(200,169,110,0.2);
  border: 1px solid rgba(200,169,110,0.35);
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
  backdrop-filter: blur(8px);
}
.pre-hero-heading {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  margin-bottom: var(--space-6);
  max-width: 700px;
  letter-spacing: -0.02em;
}
.pre-hero-heading em {
  font-style: italic;
  color: var(--clr-accent-light);
}
.pre-hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: var(--space-10);
}
.pre-hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.pre-hero-scroll-hint {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255,255,255,0.55);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: pre-bounce 2s infinite;
}
@keyframes pre-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}


.pre-bento-intro {
  padding: var(--space-20) 0 var(--space-10);
  text-align: center;
}
.pre-bento-intro .pre-section-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}
.pre-bento-intro .pre-section-sub {
  margin: 0 auto;
  max-width: 600px;
}


.pre-bento-grid-section {
  padding: 0 0 var(--space-20);
}
.pre-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: var(--space-4);
}
.pre-bento-cell {
  background: var(--clr-surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
  border: 1px solid var(--clr-border-light);
}
.pre-bento-cell:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.pre-bento-cell-inner {
  padding: var(--space-8);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.pre-bento-large {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.pre-bento-large .pre-bento-cell-inner {
  grid-column: 1;
}
.pre-bento-img-wrap {
  overflow: hidden;
}
.pre-bento-img-wrap a {
  display: block;
  height: 100%;
}
.pre-bento-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.pre-bento-img-wrap:hover .pre-bento-img {
  transform: scale(1.04);
}
.pre-bento-small {
  grid-column: span 1;
}
.pre-bento-wide {
  grid-column: span 2;
}
.pre-bento-accent {
  grid-column: span 1;
}
.pre-bento-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(45,90,78,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--clr-primary);
  margin-bottom: var(--space-5);
  flex-shrink: 0;
}
.pre-bento-title {
  font-size: 1.3rem;
  margin-bottom: var(--space-3);
  color: var(--clr-text);
}
.pre-bento-desc {
  font-size: 0.92rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: var(--space-5);
}
.pre-bento-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-primary);
  text-decoration: none;
  transition: gap var(--transition-base), color var(--transition-base);
}
.pre-bento-link:hover {
  gap: var(--space-3);
  color: var(--clr-accent-dark);
}
.pre-bento-movement {
  background: linear-gradient(135deg, #f0ede6 0%, #e8f0ec 100%);
}
.pre-bento-rest {
  background: linear-gradient(135deg, #1e3d35 0%, #2d5a4e 100%);
}
.pre-bento-rest .pre-bento-icon-wrap {
  background: rgba(255,255,255,0.15);
  color: var(--clr-accent-light);
}
.pre-bento-rest .pre-bento-title,
.pre-bento-rest .pre-bento-desc {
  color: rgba(255,255,255,0.9);
}
.pre-bento-rest .pre-bento-link {
  color: var(--clr-accent-light);
}
.pre-bento-habits {
  background: var(--clr-surface-2);
}
.pre-bento-approach {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.pre-bento-approach .pre-bento-cell-inner {
  grid-column: 1;
}
.pre-bento-approach-visual {
  overflow: hidden;
  border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
}
.pre-bento-approach-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.pre-bento-approach:hover .pre-bento-approach-visual img {
  transform: scale(1.04);
}
.pre-bento-quote {
  background: var(--grad-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pre-bento-quote .pre-bento-cell-inner {
  align-items: center;
  justify-content: center;
  text-align: center;
}
.pre-bento-quote-icon {
  font-size: 2rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--space-4);
}
.pre-bento-quote-text {
  font-family: 'Bitter', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.5;
}


.pre-overlap-zone {
  padding: var(--space-8) 0 var(--space-20);
  background: var(--clr-surface-2);
  margin-top: -var(--space-12);
}
.pre-overlap-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
}
.pre-overlap-card {
  background: var(--clr-surface);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: var(--shadow-xl);
  transform: translateY(-var(--space-12));
  margin-top: calc(-1 * var(--space-12));
}
.pre-overlap-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 380px;
  display: block;
}
.pre-overlap-content {
  padding: var(--space-12) var(--space-10);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-5);
}
.pre-overlap-content h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: var(--clr-primary);
}
.pre-overlap-content p {
  font-size: 0.96rem;
  line-height: 1.8;
}


.pre-process-section {
  padding: var(--space-20) 0;
  background: var(--clr-bg);
}
.pre-process-section .pre-section-heading {
  margin-bottom: var(--space-12);
}
.pre-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  position: relative;
}
.pre-process-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-4);
}
.pre-process-num {
  font-family: 'Bitter', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(45,90,78,0.08);
  line-height: 1;
  letter-spacing: -0.04em;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  white-space: nowrap;
}
.pre-process-connector {
  position: absolute;
  top: 36px;
  left: calc(50% + 36px);
  right: calc(-50% + 36px);
  height: 1px;
  background: linear-gradient(90deg, var(--clr-accent) 0%, var(--clr-border) 100%);
  z-index: 0;
}
.pre-process-step:last-child .pre-process-connector {
  display: none;
}
.pre-process-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-xl);
  background: var(--clr-surface);
  border: 2px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--clr-primary);
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}
.pre-process-step:hover .pre-process-icon {
  background: var(--clr-primary);
  color: #fff;
  border-color: var(--clr-primary);
  box-shadow: var(--shadow-lg);
  transform: scale(1.08);
}
.pre-process-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--clr-text);
  position: relative;
  z-index: 1;
}
.pre-process-text {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}


.pre-gallery-section {
  padding: var(--space-20) 0;
  background: var(--clr-surface-2);
}
.pre-gallery-section .pre-section-heading {
  margin-bottom: var(--space-10);
}
.pre-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: var(--space-4);
}
.pre-gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
}
.pre-gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform var(--transition-slow);
  display: block;
}
.pre-gallery-tall {
  grid-row: span 2;
}
.pre-gallery-tall img {
  height: 100%;
  min-height: 400px;
}
.pre-gallery-wide {
  grid-column: span 2;
}
.pre-gallery-item:hover img {
  transform: scale(1.05);
}
.pre-gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,61,53,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
  color: #fff;
  font-size: 1.5rem;
}
.pre-gallery-item:hover .pre-gallery-overlay {
  opacity: 1;
}


.pre-contact-cards-section {
  padding: var(--space-20) 0;
  background: var(--clr-bg);
}
.pre-contact-cards-section .pre-section-heading {
  margin-bottom: var(--space-10);
}
.pre-contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.pre-contact-card {
  background: var(--clr-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--clr-border-light);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.pre-contact-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.pre-contact-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(45,90,78,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--clr-primary);
  margin-bottom: var(--space-2);
}
.pre-contact-card-title {
  font-size: 1.05rem;
  color: var(--clr-text);
}
.pre-contact-card-sub {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  line-height: 1.5;
}
.pre-contact-card-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--clr-primary);
  text-decoration: none;
  transition: color var(--transition-base);
  display: block;
  margin-top: auto;
}
.pre-contact-card-value:hover {
  color: var(--clr-accent-dark);
}


.pre-form-section {
  padding: var(--space-20) 0;
  background: var(--clr-surface-2);
}
.pre-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--space-16);
  align-items: start;
}
.pre-form-intro .pre-section-heading {
  margin-bottom: var(--space-4);
}
.pre-form-intro p {
  font-size: 0.96rem;
  line-height: 1.8;
}
.pre-contact-form {
  background: var(--clr-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--clr-border-light);
}
.pre-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
.pre-form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}
.pre-form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-text);
  letter-spacing: 0.02em;
}
.pre-form-input {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-md);
  background: var(--clr-bg);
  color: var(--clr-text);
  font-size: 0.92rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  width: 100%;
}
.pre-form-input:focus {
  outline: none;
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(45,90,78,0.12);
}
.pre-form-input::placeholder {
  color: var(--clr-text-light);
}
.pre-form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7c74' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.pre-form-textarea {
  resize: vertical;
  min-height: 120px;
}
.pre-form-check-group {
  margin-bottom: var(--space-6);
}
.pre-form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  cursor: pointer;
}
.pre-form-checkbox {
  width: 18px;
  height: 18px;
  accent-color: var(--clr-primary);
  margin-top: 2px;
  flex-shrink: 0;
}
.pre-form-check-text {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  line-height: 1.5;
}
.pre-form-link {
  color: var(--clr-primary);
  text-decoration: underline;
  transition: color var(--transition-base);
}
.pre-form-link:hover {
  color: var(--clr-accent-dark);
}


.pre-cta-strip {
  padding: var(--space-16) 0;
  background: var(--grad-primary);
}
.pre-cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  flex-wrap: wrap;
}
.pre-cta-strip-text h2 {
  color: #fff;
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: var(--space-2);
}
.pre-cta-strip-text p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
}


.pre-page-hero {
  padding: calc(var(--nav-height) + var(--space-16)) 0 var(--space-16);
  background: var(--grad-primary);
  text-align: center;
}
.pre-page-hero-content {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
}
.pre-page-hero .pre-section-label {
  background: rgba(200,169,110,0.2);
  border-color: rgba(200,169,110,0.35);
  color: var(--clr-accent-light);
}
.pre-page-hero-heading {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #fff;
  margin-bottom: var(--space-5);
}
.pre-page-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}


.pre-story-section {
  padding: var(--space-20) 0;
}
.pre-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.pre-story-text h2 {
  margin-bottom: var(--space-6);
}
.pre-story-text p {
  margin-bottom: var(--space-5);
  font-size: 0.98rem;
  line-height: 1.85;
}
.pre-story-img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
  object-fit: cover;
}


.pre-values-section {
  padding: var(--space-20) 0;
  background: var(--clr-surface-2);
}
.pre-values-section .pre-section-heading {
  margin-bottom: var(--space-10);
}
.pre-values-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
.pre-value-cell {
  background: var(--clr-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--clr-border-light);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}
.pre-value-cell:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.pre-value-cell i {
  font-size: 1.5rem;
  color: var(--clr-primary);
  margin-bottom: var(--space-4);
  display: block;
}
.pre-value-cell h3 {
  font-size: 1.05rem;
  margin-bottom: var(--space-3);
}
.pre-value-cell p {
  font-size: 0.9rem;
  line-height: 1.75;
}
.pre-value-primary {
  background: var(--grad-primary);
}
.pre-value-primary i,
.pre-value-primary h3,
.pre-value-primary p {
  color: rgba(255,255,255,0.9);
}
.pre-value-wide {
  grid-column: span 2;
}


.pre-timeline-section {
  padding: var(--space-20) 0;
}
.pre-timeline-section .pre-section-heading {
  margin-bottom: var(--space-12);
}
.pre-timeline {
  position: relative;
  padding-left: var(--space-12);
}
.pre-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--clr-accent) 0%, var(--clr-border) 100%);
}
.pre-timeline-item {
  position: relative;
  margin-bottom: var(--space-10);
  padding-bottom: var(--space-10);
  border-bottom: 1px solid var(--clr-border-light);
}
.pre-timeline-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.pre-timeline-marker {
  position: absolute;
  left: calc(-1 * var(--space-12) + 12px);
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: var(--radius-full);
  background: var(--clr-accent);
  border: 3px solid var(--clr-surface);
  box-shadow: 0 0 0 2px var(--clr-accent);
}
.pre-timeline-content {
  max-width: 640px;
}
.pre-timeline-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-accent-dark);
  margin-bottom: var(--space-2);
}
.pre-timeline-content h4 {
  font-size: 1.15rem;
  color: var(--clr-primary);
  margin-bottom: var(--space-3);
}
.pre-timeline-content p {
  font-size: 0.95rem;
  line-height: 1.8;
}


.pre-offer-intro {
  padding: var(--space-20) 0;
}
.pre-offer-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.pre-offer-intro-text h2 { margin-bottom: var(--space-6); }
.pre-offer-intro-text p { margin-bottom: var(--space-5); font-size: 0.97rem; line-height: 1.85; }
.pre-offer-intro-img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
  object-fit: cover;
}

.pre-services-section {
  padding: var(--space-4) 0 var(--space-20);
  background: var(--clr-surface-2);
}
.pre-services-section .pre-section-heading { margin-bottom: var(--space-10); }
.pre-services-bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}
.pre-service-card {
  background: var(--clr-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--clr-border-light);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}
.pre-service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.pre-service-featured {
  background: linear-gradient(135deg, #f0ede6 0%, #e8f0ec 100%);
  border-color: rgba(45,90,78,0.15);
}
.pre-service-holistic {
  background: var(--clr-surface-2);
}
.pre-service-card-header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.pre-service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(45,90,78,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--clr-primary);
  flex-shrink: 0;
}
.pre-service-title {
  font-size: 1.15rem;
  color: var(--clr-text);
}
.pre-service-body p {
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: var(--space-4);
}
.pre-service-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.pre-service-list li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 0.88rem;
  color: var(--clr-text-2);
}
.pre-service-list li i {
  color: var(--clr-primary);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.pre-what-not-section {
  padding: var(--space-16) 0;
  background: var(--clr-bg);
}
.pre-what-not-inner {
  display: flex;
  align-items: flex-start;
  gap: var(--space-8);
  background: var(--clr-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--clr-border-light);
  border-left: 4px solid var(--clr-accent);
}
.pre-what-not-icon {
  font-size: 2rem;
  color: var(--clr-accent);
  flex-shrink: 0;
  margin-top: 4px;
}
.pre-what-not-text h2 {
  font-size: 1.3rem;
  margin-bottom: var(--space-3);
}
.pre-what-not-text p {
  font-size: 0.93rem;
  line-height: 1.8;
}

.pre-format-section {
  padding: var(--space-20) 0;
  background: var(--clr-surface-2);
}
.pre-format-section .pre-section-heading { margin-bottom: var(--space-10); }
.pre-format-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}
.pre-format-card {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--clr-border-light);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}
.pre-format-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.pre-format-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(45,90,78,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--clr-primary);
  margin-bottom: var(--space-4);
}
.pre-format-card h4 {
  font-size: 0.95rem;
  margin-bottom: var(--space-3);
}
.pre-format-card p {
  font-size: 0.88rem;
  line-height: 1.7;
}


.pre-hours-section {
  padding: var(--space-20) 0;
}
.pre-hours-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-12);
  align-items: start;
}
.pre-hours-intro {
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: var(--space-8);
}
.pre-hours-table {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--clr-border-light);
}
.pre-hours-row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  padding: var(--space-4) var(--space-6);
  border-bottom: 1px solid var(--clr-border-light);
  transition: background var(--transition-base);
}
.pre-hours-row:last-child { border-bottom: none; }
.pre-hours-row:hover { background: var(--clr-surface-2); }
.pre-hours-open { background: var(--clr-surface); }
.pre-hours-closed { background: rgba(200,169,110,0.05); }
.pre-hours-limited { background: rgba(45,90,78,0.04); }
.pre-hours-day {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--clr-text);
}
.pre-hours-time {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
}
.pre-status-badge {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}
.pre-status-open {
  background: rgba(39,174,96,0.12);
  color: #27ae60;
}
.pre-status-closed {
  background: rgba(192,57,43,0.1);
  color: var(--clr-error);
}
.pre-status-limited {
  background: rgba(230,126,34,0.12);
  color: var(--clr-warning);
}
.pre-hours-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.pre-hours-info-card {
  background: var(--clr-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--clr-border-light);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.pre-hours-info-icon {
  font-size: 1.3rem;
  color: var(--clr-primary);
}
.pre-hours-info-card h4 {
  font-size: 1rem;
}
.pre-hours-info-card p {
  font-size: 0.88rem;
  line-height: 1.7;
}
.pre-hours-note {
  background: rgba(45,90,78,0.05);
  border-color: rgba(45,90,78,0.15);
}

.pre-remote-section {
  padding: var(--space-16) 0 var(--space-20);
  background: var(--clr-surface-2);
}
.pre-remote-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
  display: flex;
  align-items: flex-start;
  gap: var(--space-8);
  background: var(--clr-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  box-shadow: var(--shadow-md);
}
.pre-remote-icon {
  font-size: 2rem;
  color: var(--clr-primary);
  flex-shrink: 0;
}
.pre-remote-text h2 {
  font-size: 1.4rem;
  margin-bottom: var(--space-3);
}
.pre-remote-text p {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: var(--space-5);
}


.pre-contact-facts-strip {
  padding: var(--space-8) 0;
  background: var(--clr-surface);
  border-bottom: 1px solid var(--clr-border-light);
}
.pre-facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}
.pre-fact-item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4);
}
.pre-fact-item i {
  font-size: 1.3rem;
  color: var(--clr-primary);
  flex-shrink: 0;
}
.pre-fact-item div {
  display: flex;
  flex-direction: column;
}
.pre-fact-item strong {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-text);
}
.pre-fact-item span {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
}

.pre-contact-main-section {
  padding: var(--space-20) 0;
}
.pre-contact-main-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-12);
  align-items: start;
}
.pre-contact-form-col .pre-section-heading { margin-bottom: var(--space-4); }
.pre-contact-form-col > p { font-size: 0.95rem; margin-bottom: var(--space-8); line-height: 1.8; }
.pre-contact-info-col .pre-section-heading { margin-bottom: var(--space-6); }
.pre-contact-cards-stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}
.pre-map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}


.pre-thanks-body { background: var(--clr-bg); }
.pre-thanks-main {
  min-height: calc(100vh - var(--nav-height) - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pre-thanks-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-8);
  text-align: center;
  padding: var(--space-8);
}
.pre-thanks-dot {
  width: 24px;
  height: 24px;
  border-radius: var(--radius-full);
  background: var(--clr-accent);
  animation: pre-dot-expand 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes pre-dot-expand {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.pre-thanks-heading {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--clr-primary);
  opacity: 0;
  animation: pre-fade-up 0.7s ease 0.6s forwards;
}
.pre-thanks-link {
  opacity: 0;
  animation: pre-fade-up 0.6s ease 1.1s forwards;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--clr-text-muted);
  text-decoration: none;
  transition: color var(--transition-base), gap var(--transition-base);
}
.pre-thanks-link:hover {
  color: var(--clr-primary);
  gap: var(--space-3);
}
@keyframes pre-fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}


.pre-legal-hero {
  padding: calc(var(--nav-height) + var(--space-12)) 0 var(--space-12);
  background: var(--grad-primary);
}
.pre-legal-heading {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #fff;
  margin-bottom: var(--space-3);
}
.pre-legal-date {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}
.pre-legal-body {
  padding: var(--space-16) 0 var(--space-24);
}
.pre-legal-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: var(--space-12);
  align-items: start;
}
.pre-legal-content {
  background: var(--clr-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--clr-border-light);
}
.pre-legal-intro {
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--clr-text-2);
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--clr-border-light);
}
.pre-legal-content h2 {
  font-size: 1.25rem;
  color: var(--clr-primary);
  margin-top: var(--space-8);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-2);
  border-bottom: 2px solid var(--clr-border-light);
}
.pre-legal-content h3 {
  font-size: 1rem;
  color: var(--clr-text);
  margin-top: var(--space-6);
  margin-bottom: var(--space-3);
}
.pre-legal-content p {
  font-size: 0.93rem;
  line-height: 1.85;
  margin-bottom: var(--space-4);
}
.pre-legal-content ul, .pre-legal-content ol {
  margin-bottom: var(--space-5);
  padding-left: var(--space-6);
}
.pre-legal-content li {
  font-size: 0.93rem;
  line-height: 1.75;
  color: var(--clr-text-2);
  margin-bottom: var(--space-2);
  list-style: disc;
}
.pre-legal-content a {
  color: var(--clr-primary);
  text-decoration: underline;
  transition: color var(--transition-base);
}
.pre-legal-content a:hover {
  color: var(--clr-accent-dark);
}
.pre-legal-term {
  color: var(--clr-primary);
  font-weight: 600;
}
.pre-legal-definition {
  background: rgba(45,90,78,0.05);
  border-left: 3px solid var(--clr-primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-5) var(--space-6);
  margin: var(--space-5) 0;
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--clr-text-2);
}
.pre-legal-definition strong {
  color: var(--clr-primary);
  display: block;
  margin-bottom: var(--space-2);
  font-size: 0.9rem;
}
.pre-legal-definition-inline {
  margin-top: var(--space-4);
}
.pre-legal-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + var(--space-6));
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.pre-legal-toc {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--clr-border-light);
}
.pre-legal-toc h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-text-muted);
  margin-bottom: var(--space-4);
}
.pre-legal-toc ol,
.pre-legal-toc ul {
  padding-left: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.pre-legal-toc li {
  list-style: decimal;
  font-size: 0.85rem;
  color: var(--clr-text-muted);
}
.pre-legal-toc-link {
  color: var(--clr-text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color var(--transition-base);
}
.pre-legal-toc-link:hover {
  color: var(--clr-primary);
}
.pre-legal-contact-note {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--clr-border-light);
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--clr-text-muted);
}
.pre-legal-contact-note i {
  color: var(--clr-accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.pre-legal-contact-note a {
  color: var(--clr-primary);
  text-decoration: underline;
}


.pre-terms-clause {
  display: flex;
  gap: var(--space-5);
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--clr-border-light);
}
.pre-terms-clause:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.pre-terms-clause-letter {
  font-family: 'Bitter', serif;
  font-size: 2rem;
  font-weight: 700;
  color: rgba(45,90,78,0.12);
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
  padding-top: 4px;
}
.pre-terms-clause-body { flex: 1; }
.pre-terms-clause-body h2 {
  margin-top: 0;
  padding-bottom: var(--space-2);
  border-bottom: 1px solid var(--clr-border-light);
  margin-bottom: var(--space-4);
}


.pre-cookie-intro-block {
  display: flex;
  gap: var(--space-5);
  align-items: flex-start;
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--clr-border-light);
}
.pre-cookie-icon {
  font-size: 2rem;
  color: var(--clr-accent);
  flex-shrink: 0;
}
.pre-cookie-type-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  margin: var(--space-5) 0;
}
.pre-cookie-type-card {
  background: var(--clr-surface-2);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  border: 1px solid var(--clr-border-light);
}
.pre-cookie-type-card h4 {
  font-size: 0.95rem;
  margin-bottom: var(--space-3);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--clr-primary);
}
.pre-cookie-type-card h4 i {
  font-size: 0.9rem;
}
.pre-cookie-category {
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--clr-border-light);
}
.pre-cookie-category:last-of-type {
  border-bottom: none;
}
.pre-cookie-cat-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}
.pre-cookie-cat-header h3 {
  font-size: 1.05rem;
  margin: 0;
}
.pre-cookie-cat-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}
.pre-cat-essential { background: rgba(39,174,96,0.12); color: #27ae60; }
.pre-cat-functional { background: rgba(45,90,78,0.1); color: var(--clr-primary); }
.pre-cat-analytics { background: rgba(200,169,110,0.15); color: var(--clr-accent-dark); }
.pre-cat-marketing { background: rgba(192,57,43,0.1); color: var(--clr-error); }
.pre-cookie-table-wrap {
  overflow-x: auto;
  margin-top: var(--space-4);
}
.pre-cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.pre-cookie-table th {
  background: var(--clr-surface-2);
  padding: var(--space-3) var(--space-4);
  text-align: left;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--clr-border);
}
.pre-cookie-table td {
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid var(--clr-border-light);
  color: var(--clr-text-2);
  line-height: 1.5;
}
.pre-cookie-table tr:last-child td { border-bottom: none; }


.pre-footer {
  background: var(--clr-primary-dark);
  color: rgba(255,255,255,0.75);
  padding: var(--space-16) 0 0;
  margin-top: auto;
}
.pre-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-10);
  margin-bottom: var(--space-10);
}
.pre-footer-logo .pre-logo-text {
  color: #fff;
}
.pre-footer-tagline {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-top: var(--space-4);
  max-width: 280px;
}
.pre-footer-heading {
  color: rgba(255,255,255,0.45);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}
.pre-footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.pre-footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color var(--transition-base);
}
.pre-footer-links a:hover {
  color: var(--clr-accent-light);
}
.pre-footer-address {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.pre-footer-address p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  line-height: 1.5;
}
.pre-footer-address i {
  color: var(--clr-accent);
  flex-shrink: 0;
  margin-top: 3px;
}
.pre-footer-address a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color var(--transition-base);
}
.pre-footer-address a:hover {
  color: var(--clr-accent-light);
}
.pre-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--space-6) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.pre-footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.pre-footer-disclaimer {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  max-width: 640px;
}


.pre-contact-main-section .pre-contact-card {
  padding: var(--space-5) var(--space-6);
}


@media (max-width: 1024px) {
  .pre-bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pre-bento-large { grid-column: span 2; }
  .pre-bento-wide { grid-column: span 2; }
  .pre-bento-accent { grid-column: span 2; }
  .pre-process-grid { grid-template-columns: repeat(2, 1fr); }
  .pre-process-step:nth-child(2) .pre-process-connector { display: none; }
  .pre-format-grid { grid-template-columns: repeat(2, 1fr); }
  .pre-footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
  .pre-legal-layout { grid-template-columns: 1fr; }
  .pre-legal-sidebar { position: static; flex-direction: row; flex-wrap: wrap; }
  .pre-legal-toc { flex: 1; min-width: 200px; }
  .pre-legal-contact-note { flex: 1; min-width: 200px; }
  .pre-values-bento { grid-template-columns: repeat(2, 1fr); }
  .pre-value-wide { grid-column: span 2; }
  .pre-services-bento { grid-template-columns: 1fr; }
  .pre-facts-grid { grid-template-columns: repeat(2, 1fr); }
  .pre-hours-grid { grid-template-columns: 1fr; }
  .pre-hours-sidebar { flex-direction: row; flex-wrap: wrap; }
  .pre-hours-info-card { flex: 1; min-width: 220px; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  .pre-nav-links { display: none; }
  .pre-hamburger { display: flex; }

  .pre-hero-heading { font-size: clamp(2.2rem, 8vw, 3.2rem); }
  .pre-hero-cta-group { flex-direction: column; align-items: flex-start; }

  .pre-bento-grid { grid-template-columns: 1fr; }
  .pre-bento-large { grid-column: span 1; grid-template-columns: 1fr; }
  .pre-bento-large .pre-bento-img-wrap { min-height: 200px; }
  .pre-bento-wide { grid-column: span 1; }
  .pre-bento-accent { grid-column: span 1; }
  .pre-bento-approach { grid-template-columns: 1fr; }
  .pre-bento-approach-visual { min-height: 200px; border-radius: 0 0 var(--radius-xl) var(--radius-xl); }

  .pre-overlap-card { grid-template-columns: 1fr; }
  .pre-overlap-img { min-height: 240px; }
  .pre-overlap-content { padding: var(--space-8) var(--space-6); }

  .pre-process-grid { grid-template-columns: 1fr; }
  .pre-process-connector { display: none; }

  .pre-gallery-grid { grid-template-columns: 1fr 1fr; }
  .pre-gallery-tall { grid-row: span 1; }
  .pre-gallery-tall img { min-height: 200px; height: 200px; }
  .pre-gallery-wide { grid-column: span 2; }

  .pre-contact-cards-grid { grid-template-columns: 1fr; }
  .pre-form-wrap { grid-template-columns: 1fr; gap: var(--space-8); }
  .pre-form-row { grid-template-columns: 1fr; }

  .pre-story-grid { grid-template-columns: 1fr; }
  .pre-offer-intro-grid { grid-template-columns: 1fr; }
  .pre-contact-main-grid { grid-template-columns: 1fr; }
  .pre-format-grid { grid-template-columns: 1fr; }
  .pre-values-bento { grid-template-columns: 1fr; }
  .pre-value-wide { grid-column: span 1; }

  .pre-cta-strip-inner { flex-direction: column; text-align: center; }

  .pre-footer-grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .pre-footer-tagline { max-width: 100%; }

  .pre-terms-clause { flex-direction: column; gap: var(--space-3); }
  .pre-cookie-type-grid { grid-template-columns: 1fr; }

  .pre-hours-sidebar { flex-direction: column; }
  .pre-hours-info-card { min-width: auto; }
  .pre-facts-grid { grid-template-columns: 1fr 1fr; }

  .pre-what-not-inner { flex-direction: column; gap: var(--space-4); }
  .pre-remote-inner { flex-direction: column; gap: var(--space-4); }
}

@media (max-width: 480px) {
  .pre-container { padding: 0 var(--space-4); }
  .pre-hero-content { padding-left: var(--space-4); padding-right: var(--space-4); }
  .pre-contact-form { padding: var(--space-6); }
  .pre-legal-content { padding: var(--space-6); }
  .pre-gallery-grid { grid-template-columns: 1fr; }
  .pre-gallery-wide { grid-column: span 1; }
  .pre-facts-grid { grid-template-columns: 1fr; }
  .pre-hours-row { grid-template-columns: 1fr 1fr; }
  .pre-hours-status { display: none; }
  .pre-hours-closed .pre-hours-time { color: var(--clr-error); }
}