:root {
  --bg: #fbf9f5;
  --surface: #fffefb;
  --surface-bright: #fffdfa;
  --surface-soft: #f5f3ef;
  --surface-muted: #efeeea;
  --surface-high: #eae8e4;
  --ink: #17231b;
  --muted: #5d695f;
  --primary: #163422;
  --primary-2: #2d4b37;
  --sage: #78947d;
  --sage-dark: #557060;
  --peach: #d7a47f;
  --peach-soft: #f4ded0;
  --line: rgba(114, 121, 114, 0.22);
  --shadow: 0 10px 30px rgba(45, 75, 55, 0.05);
  --shadow-hover: 0 15px 35px rgba(45, 75, 55, 0.08);
  --radius: 12px;
  --whatsapp: #25d366;
  --whatsapp-dark: #128c7e;
  --max: 1180px;
  --serif: "Source Serif 4", Georgia, serif;
  --sans: "Hanken Grotesk", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 249, 245, 0.93);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  display: block;
  background: url("../images/tc-logo-green-v2.png") center / contain no-repeat;
  color: transparent;
  font-size: 0;
  line-height: 0;
}

.brand-title {
  display: block;
  color: var(--primary);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
}

.brand-subtitle {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 19px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--peach);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: 180ms ease;
}

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

.nav-links a.active::after,
.nav-links a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--primary);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 750;
  line-height: 1.2;
  transition: 220ms ease;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: var(--primary-2);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--surface-bright);
  color: var(--primary);
  border-color: var(--line);
}

.btn-secondary:hover {
  border-color: var(--primary);
  transform: translateY(-1px);
}

.btn-soft {
  background: var(--surface-bright);
  color: var(--primary);
  border-color: var(--line);
}

.btn-soft:hover {
  background: var(--surface-soft);
}

.btn[data-whatsapp],
.btn-whatsapp,
a[data-whatsapp].btn-primary {
  background: var(--whatsapp);
  color: #fff;
  border-color: transparent;
}

.btn[data-whatsapp]:hover,
.btn-whatsapp:hover,
a[data-whatsapp].btn-primary:hover {
  background: var(--whatsapp-dark);
}

.wa-icon,
.ui-icon {
  width: 1.15em;
  height: 1.15em;
  flex: 0 0 auto;
  display: inline-block;
}

.hero {
  padding: 74px 0 64px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: 58px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--sage-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  background: var(--sage);
  content: "";
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--primary);
  font-family: var(--serif);
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 840px;
  font-size: 58px;
}

h2 {
  font-size: 42px;
}

h3 {
  font-size: 25px;
}

p {
  margin: 0;
}

.lead {
  max-width: 700px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.75;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-media {
  position: relative;
}

.hero-portrait {
  overflow: hidden;
  border-radius: 24px;
  background: var(--surface-soft);
  aspect-ratio: 13 / 16;
  box-shadow: var(--shadow);
}

.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.trust-band {
  padding: 54px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface-bright);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.trust-item {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  transition: 220ms ease;
}

.trust-item .icon-box {
  margin-bottom: 4px;
}

.trust-item h3 {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 850;
}

.trust-item p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 24px 0;
}

.timeline::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--line);
  content: "";
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 44px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-copy {
  border-radius: 16px;
  padding: 22px;
  background: var(--surface-bright);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.timeline-copy h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.timeline-copy p {
  color: var(--muted);
}

.timeline-number {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.timeline-item:nth-child(even) .timeline-number {
  background: var(--sage-dark);
}

.timeline-spacer {
  min-height: 1px;
}

.portrait-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 26px 26px var(--radius) var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  background: var(--surface-soft);
}

.portrait-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.floating-note {
  position: absolute;
  right: -16px;
  bottom: 30px;
  max-width: 245px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.floating-note strong {
  display: block;
  color: var(--primary);
}

.floating-note span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 42px;
}

.stat {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  background: var(--surface-bright);
  box-shadow: var(--shadow);
}

.stat strong {
  display: block;
  color: var(--primary);
  font-family: var(--serif);
  font-size: 29px;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.section {
  padding: 84px 0;
}

.section.alt {
  background: var(--surface-soft);
}

.section.green {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.82);
}

.section.green h2,
.section.green h3 {
  color: #fff;
}

.section.green .lead,
.section.green .section-kicker {
  color: rgba(255, 255, 255, 0.78);
}

.section-head {
  max-width: 780px;
  margin-bottom: 38px;
}

.section-head.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-kicker {
  margin-bottom: 12px;
  color: var(--sage-dark);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.grid {
  display: grid;
  gap: 22px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface-bright);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.card-pad {
  padding: 26px;
}

.card h3 {
  margin-bottom: 12px;
}

.card p,
.muted {
  color: var(--muted);
}

.icon-box {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--surface-muted);
  color: var(--primary);
  font-weight: 900;
}

.icon-box svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.8;
}

.feature-list,
.check-list,
.plain-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.check-list li {
  position: relative;
  margin: 10px 0;
  padding-left: 26px;
  color: var(--muted);
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: 220ms ease;
}

.service-card:hover,
.approach-card:hover,
.trust-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.service-card .service-audience {
  margin-top: 22px;
  margin-bottom: 8px;
  color: var(--sage-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card .text-link {
  margin-top: auto;
  padding-top: 18px;
}

.approach-card {
  transition: 220ms ease;
}

.feature-list li::before,
.check-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--sage-dark);
  content: "✓";
  font-weight: 900;
}

.plain-list li {
  margin: 10px 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 54px;
  align-items: center;
}

.image-panel {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface-soft);
  aspect-ratio: 16 / 11;
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait-panel {
  max-width: 460px;
  justify-self: end;
  aspect-ratio: 4 / 5;
}

.portrait-panel img {
  object-position: center top;
}

.steps {
  display: grid;
  gap: 16px;
  counter-reset: step;
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface-bright);
  box-shadow: var(--shadow);
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 850;
}

.step h3 {
  margin-bottom: 6px;
  font-size: 22px;
}

.page-hero {
  padding: 68px 0 48px;
  background: linear-gradient(180deg, #fbf9f5 0%, #f5f3ef 100%);
}

.page-hero .lead {
  max-width: 760px;
}

.service-detail-hero .image-panel {
  aspect-ratio: 4 / 3;
}

.service-detail {
  background: var(--surface-bright);
}

.service-detail-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.detail-nav {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  background: var(--surface-soft);
  box-shadow: var(--shadow);
}

.detail-nav strong {
  margin-bottom: 6px;
  color: var(--primary);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.15;
}

.detail-nav a {
  border-radius: 999px;
  padding: 8px 11px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.detail-nav a:hover {
  background: var(--surface-bright);
  color: var(--primary);
}

.detail-main {
  min-width: 0;
}

.content-block {
  padding: 36px 0;
  border-top: 1px solid var(--line);
}

.content-block:first-child {
  padding-top: 0;
  border-top: 0;
}

.content-block h2 {
  max-width: 880px;
  margin-bottom: 18px;
  font-size: 36px;
}

.content-block p {
  max-width: 890px;
  margin-top: 14px;
  color: var(--muted);
}

.content-block .grid {
  margin-top: 22px;
}

.service-overview {
  border-radius: 16px;
  padding: 30px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.legal-tags {
  margin-top: 20px;
}

.legal-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.legal-info-grid div,
.legal-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--surface-bright);
  box-shadow: var(--shadow);
}

.legal-info-grid strong,
.legal-info-grid span {
  display: block;
}

.legal-info-grid strong,
.legal-card h3 {
  color: var(--primary);
}

.legal-info-grid span,
.legal-card p {
  margin-top: 6px;
  color: var(--muted);
}

.legal-card h3 {
  margin-top: 0;
  font-size: 22px;
}

.legal-card p {
  margin-bottom: 0;
}

.recipe-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.recipe-stat-grid div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-bright);
}

.recipe-stat-grid strong,
.recipe-stat-grid span {
  display: block;
}

.recipe-stat-grid strong {
  color: var(--primary);
  font-size: 18px;
}

.recipe-stat-grid span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
}

.recipe-hero-meta {
  margin-top: 20px;
}

.recipe-ingredients {
  columns: 2;
  column-gap: 28px;
}

.reference-list {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.reference-list li {
  margin: 9px 0;
}

.faq-category {
  padding: 48px 0;
  border-top: 1px solid var(--line);
}

.faq-category:first-of-type {
  padding-top: 14px;
  border-top: 0;
}

.faq-category[hidden] {
  display: none;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  background: var(--surface-soft);
  box-shadow: var(--shadow);
}

.featured-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: 0;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface-bright);
  box-shadow: var(--shadow);
}

.featured-card .card-image {
  aspect-ratio: auto;
  min-height: 320px;
}

.featured-card .card-pad {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.search-input,
.form-control,
.form-select,
.form-textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  background: #fff;
  color: var(--ink);
  outline: none;
}

.search-input:focus,
.form-control:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--sage-dark);
  box-shadow: 0 0 0 4px rgba(120, 148, 125, 0.16);
}

.filter-chip {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  background: #fff;
  color: var(--muted);
  font-weight: 750;
}

.filter-chip.active,
.filter-chip:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

.recipe-card,
.article-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.card-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface-soft);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 260ms ease;
}

.recipe-card:hover .card-image img,
.article-card:hover .card-image img {
  transform: scale(1.035);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 5px 10px;
  background: var(--surface-muted);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.card .card-link,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--primary);
  font-weight: 850;
}

.calculator-shell {
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: var(--surface-bright);
  box-shadow: var(--shadow);
}

.calc-tabs {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
  background: rgba(245, 243, 239, 0.72);
}

.calc-tab {
  min-height: 58px;
  flex: 1 1 180px;
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  padding: 14px 18px;
  background: transparent;
  color: var(--primary);
  text-align: center;
  font-weight: 850;
}

.calc-tab.active {
  border-color: var(--primary);
  background: var(--surface-bright);
  color: var(--primary);
}

.calc-content {
  padding: 30px;
}

.calc-panel {
  display: none;
}

.calc-panel.active {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.85fr);
  gap: 34px;
  align-items: stretch;
}

.calc-input-card,
.calc-result-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px;
  background: var(--surface-soft);
}

.calc-result-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 320px;
  overflow: hidden;
  text-align: center;
}

.calc-result-card::before {
  position: absolute;
  right: -42px;
  top: -38px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(209, 234, 200, 0.48);
  content: "";
}

.result-icon {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--surface-bright);
  color: var(--primary);
  box-shadow: var(--shadow);
}

.result-icon svg {
  width: 40px;
  height: 40px;
  stroke-width: 1.8;
}

.result-value {
  position: relative;
  color: var(--primary);
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
}

.result-label {
  position: relative;
  width: fit-content;
  margin: 12px auto 0;
  border-radius: 999px;
  padding: 7px 13px;
  background: var(--surface-bright);
  color: var(--sage-dark);
  font-size: 13px;
  font-weight: 850;
}

.result-description {
  position: relative;
  max-width: 360px;
  margin: 15px auto 0;
  color: var(--muted);
}

.result-box {
  margin-top: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font-weight: inherit;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-row {
  display: grid;
  gap: 7px;
}

.form-row.full {
  grid-column: 1 / -1;
}

.form-row label {
  color: var(--primary);
  font-size: 14px;
  font-weight: 800;
}

.form-textarea {
  min-height: 132px;
  resize: vertical;
}

.notice {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.faq-list {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface-bright);
  box-shadow: var(--shadow);
}

.faq-item {
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  overflow: hidden;
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-question {
  width: 100%;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  padding: 18px 22px;
  background: transparent;
  color: var(--primary);
  text-align: left;
  font-weight: 850;
}

.faq-question span:last-child {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--surface-soft);
  color: var(--sage-dark);
  font-size: 24px;
  line-height: 1;
  transition: 200ms ease;
}

.faq-answer {
  display: none;
  padding: 0 22px 20px;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-question span:last-child {
  transform: rotate(45deg);
}

.contact-layout {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.contact-method-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border: 1px solid rgba(114, 121, 114, 0.16);
  border-radius: 12px;
  padding: 22px;
  background: rgba(251, 249, 245, 0.78);
  box-shadow: 0 8px 22px rgba(45, 75, 55, 0.035);
  transition: 180ms ease;
}

.contact-method-card:hover {
  transform: translateY(-3px);
  background: rgba(251, 249, 245, 0.94);
  box-shadow: 0 12px 28px rgba(45, 75, 55, 0.06);
}

.contact-method-card strong,
.contact-method-card small,
.contact-method-card em {
  display: block;
}

.contact-method-card strong {
  color: var(--primary);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.2;
}

.contact-method-card small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.contact-method-card em {
  margin-top: 9px;
  color: var(--tertiary, #521f10);
  font-style: normal;
  font-weight: 850;
}

.contact-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 900;
}

.contact-icon svg {
  width: 25px;
  height: 25px;
  stroke-width: 1.9;
}

.contact-icon-whatsapp {
  background: rgba(37, 211, 102, 0.14);
  color: var(--whatsapp-dark);
}

.contact-icon-green {
  background: rgba(22, 52, 34, 0.1);
  color: var(--primary);
}

.contact-icon-appointment {
  background: rgba(215, 164, 127, 0.15);
  color: var(--tertiary);
}

.location-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(114, 121, 114, 0.18);
  border-radius: 12px;
  padding: 28px;
  background: rgba(245, 243, 239, 0.72);
  box-shadow: 0 8px 24px rgba(45, 75, 55, 0.035);
}

.location-card-wide {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.58fr);
  gap: 28px;
  align-items: stretch;
}

.location-details {
  position: relative;
  z-index: 1;
  align-self: center;
}

.location-watermark {
  position: absolute;
  top: 22px;
  right: 22px;
  color: rgba(22, 52, 34, 0.07);
  line-height: 1;
}

.location-watermark svg {
  width: 92px;
  height: 92px;
  display: block;
}

.location-card h2 {
  position: relative;
  margin-bottom: 18px;
  font-size: 26px;
}

.location-card p {
  position: relative;
  margin-top: 8px;
  color: var(--muted);
}

.hours-list {
  position: relative;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.hours-list h3 {
  margin-bottom: 10px;
  color: var(--sage-dark);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 9px;
  color: var(--muted);
}

.hours-list strong {
  color: var(--primary);
}

.map-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(114, 121, 114, 0.18);
  border-radius: 12px;
  background: rgba(234, 232, 228, 0.58);
  box-shadow: 0 8px 24px rgba(45, 75, 55, 0.035);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  border: 0;
  filter: saturate(0.88) contrast(0.96);
}

.map-link {
  position: absolute;
  right: 16px;
  bottom: 16px;
  border-radius: 999px;
  padding: 10px 14px;
  background: var(--surface);
  color: var(--primary);
  box-shadow: 0 8px 22px rgba(22, 52, 34, 0.14);
  font-size: 14px;
  font-weight: 850;
}

.form-status {
  min-height: 24px;
  margin-top: 14px;
  color: var(--primary);
  font-weight: 800;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  border-radius: var(--radius);
  padding: 34px;
  background: var(--primary);
  color: rgba(255, 255, 255, 0.82);
}

.cta-band h2 {
  color: #fff;
  font-size: 34px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  padding: 24px;
  background: rgba(17, 28, 21, 0.66);
}

.modal.open {
  display: grid;
  place-items: center;
}

.modal-card {
  width: min(760px, 100%);
  max-height: min(780px, calc(100vh - 48px));
  overflow: auto;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.modal-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 24px 0;
}

.modal-close {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--primary);
  font-size: 22px;
}

.modal-body {
  padding: 18px 24px 26px;
}

.modal-body img {
  width: 100%;
  max-height: 320px;
  margin-bottom: 20px;
  border-radius: var(--radius);
  object-fit: cover;
}

.modal-body h4 {
  margin-top: 20px;
  margin-bottom: 8px;
  font-family: var(--sans);
  font-size: 17px;
}

.modal-intro,
.modal-section,
.modal-references,
.modal-note {
  margin-top: 18px;
}

.modal-section {
  padding-top: 2px;
  border-top: 1px solid var(--line);
}

.modal-section p,
.modal-intro p,
.modal-note p {
  margin: 10px 0 0;
}

.modal-note {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(251, 247, 239, 0.72);
}

.modal-note h4 {
  margin-top: 0;
}

.site-footer {
  padding: 56px 0 24px;
  background: var(--primary);
  color: rgba(255, 255, 255, 0.76);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.9fr 1fr;
  gap: 28px;
}

.site-footer h3,
.site-footer .brand-title {
  color: #fff;
}

.site-footer .brand-subtitle,
.site-footer .muted {
  color: rgba(255, 255, 255, 0.7);
}

.site-footer .brand-mark {
  background-image: url("../images/tc-logo-white-v2.png");
}

.footer-links {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

@media (max-width: 1040px) {
  .nav-links,
  .nav-actions .btn {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 78px 0 auto;
    display: none;
    padding: 20px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  body.menu-open .nav-links {
    display: grid;
    gap: 8px;
  }

  .nav-links a {
    padding: 13px 0;
  }

  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .service-detail-layout {
    grid-template-columns: 1fr;
  }

  .detail-nav {
    position: static;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .detail-nav strong {
    flex-basis: 100%;
  }

  .contact-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legal-info-grid {
    grid-template-columns: 1fr;
  }

  .recipe-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .location-card-wide {
    grid-template-columns: 1fr;
  }

  .hero-media {
    max-width: 560px;
  }

  .portrait-panel {
    justify-self: start;
  }

  .grid-4,
  .grid-3,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-card {
    grid-template-columns: 1fr;
  }

  .calc-panel.active {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .nav {
    min-height: 70px;
  }

  .brand-title {
    font-size: 19px;
  }

  .brand-subtitle {
    display: none;
  }

  .nav-links {
    inset: 70px 0 auto;
  }

  .hero,
  .page-hero {
    padding: 46px 0 38px;
  }

  .section {
    padding: 58px 0;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 32px;
  }

  .lead {
    font-size: 17px;
  }

  .content-block {
    padding: 28px 0;
  }

  .content-block h2 {
    font-size: 30px;
  }

  .service-overview {
    padding: 22px;
  }

  .recipe-stat-grid {
    grid-template-columns: 1fr;
  }

  .recipe-ingredients {
    columns: 1;
  }

  .stats,
  .grid-2,
  .grid-3,
  .grid-4,
  .trust-grid,
  .contact-card-grid,
  .form-grid,
  .footer-grid,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    left: 28px;
  }

  .timeline-item {
    grid-template-columns: 56px 1fr;
    gap: 16px;
    align-items: start;
  }

  .timeline-item .timeline-copy {
    grid-column: 2;
    grid-row: 1;
  }

  .timeline-item .timeline-number {
    grid-column: 1;
    grid-row: 1;
  }

  .timeline-spacer {
    display: none;
  }

  .cta-band {
    padding: 24px;
  }

  .calc-content {
    padding: 18px;
  }

  .calc-tab {
    flex-basis: 100%;
    text-align: left;
  }

  .location-card {
    padding: 22px;
  }

  .location-watermark svg {
    width: 74px;
    height: 74px;
  }

  .map-card,
  .map-card iframe {
    min-height: 310px;
  }

  .floating-note {
    position: static;
    max-width: none;
    margin-top: 14px;
  }
}
