:root {
  --primary: #0D5D66;
  --primary-dark: #073E45;
  --secondary: #C47A4A;
  --secondary-dark: #9B5B32;
  --background: #F7F5F2;
  --surface: #FFFFFF;
  --surface-warm: #EEE8DF;
  --text: #21313A;
  --muted: #6B7280;
  --line: rgba(33, 49, 58, 0.14);
  --shadow: 0 24px 70px rgba(13, 93, 102, 0.12);
  --radius: 8px;
  --container: 1160px;
  --section: clamp(4rem, 8vw, 7rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(196, 122, 74, 0.42);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 999;
  transform: translateY(-150%);
  background: var(--primary);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(100% - 2rem, 820px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 245, 242, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 30px rgba(33, 49, 58, 0.06);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 168px;
  height: auto;
}

.site-nav {
  position: fixed;
  inset: 76px 0 auto 0;
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  background: rgba(247, 245, 242, 0.98);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
  transform: translateY(-120%);
  opacity: 0;
  pointer-events: none;
  transition: transform 220ms ease, opacity 220ms ease;
}

.site-nav.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.site-nav a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius);
  color: var(--muted);
  font-weight: 600;
  font-size: 0.96rem;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--primary);
  background: rgba(13, 93, 102, 0.08);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.header-cta {
  display: none;
}

.hero {
  padding: clamp(3rem, 8vw, 7rem) 0 var(--section);
  overflow: hidden;
}

.hero-grid,
.page-hero-grid {
  display: grid;
  gap: clamp(2.5rem, 6vw, 4.75rem);
  align-items: center;
}

.hero-copy {
  max-width: 710px;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--secondary-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.35rem, 6.5vw, 4.45rem);
  max-width: 900px;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.55rem);
}

h3 {
  font-size: clamp(1.35rem, 3vw, 1.65rem);
}

p {
  margin: 0;
}

.hero-subtitle,
.page-hero p,
.section-heading p,
.philosophy p,
.cta-inner p,
.narrow > p {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
}

.hero-subtitle {
  max-width: 690px;
  margin-top: 1.25rem;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 0.88rem 1.25rem;
  border: 1px solid transparent;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 16px 36px rgba(13, 93, 102, 0.22);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.66);
  color: var(--primary);
  border-color: rgba(13, 93, 102, 0.2);
}

.btn-secondary:hover {
  border-color: var(--primary);
  background: #fff;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.6rem;
}

.hero-notes span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(13, 93, 102, 0.14);
  border-radius: 999px;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-media,
.page-hero-grid > img {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--surface-warm);
}

.hero-media img,
.page-hero-grid > img {
  width: 100%;
  aspect-ratio: 6 / 7;
  object-fit: cover;
}

.section {
  padding: var(--section) 0;
}

.section-soft {
  background: #fff;
}

.section-heading {
  width: min(100%, 760px);
  margin: 0 auto 2.4rem;
  text-align: center;
}

.section-heading h2 + p,
.section-heading p + h2,
.narrow h1 + p,
.narrow h2 + p,
.page-hero h1 + p {
  margin-top: 1rem;
}

.align-left {
  margin-inline: 0;
  text-align: left;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

.feature-card,
.team-card,
.blog-card,
.contact-card,
.info-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 16px 45px rgba(33, 49, 58, 0.06);
}

.feature-card {
  padding: 1.35rem;
}

.feature-card h2,
.feature-card h3 {
  margin-top: 0.85rem;
  font-size: 1.45rem;
}

.feature-card p,
.team-card p,
.timeline-item p,
.blog-card p,
.contact-card p,
.info-panel li,
.profile-card p {
  color: var(--muted);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(196, 122, 74, 0.12);
  color: var(--secondary-dark);
  font-weight: 800;
  font-size: 0.82rem;
}

.split-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.25rem;
  border-left: 3px solid var(--primary);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 35px rgba(33, 49, 58, 0.06);
}

.timeline-item span {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
}

.timeline-item h3 {
  font-size: 1.32rem;
  margin-bottom: 0.2rem;
}

.philosophy {
  padding: var(--section) 0;
  background: var(--primary);
  color: #fff;
}

.philosophy-inner {
  width: min(100% - 2rem, 900px);
  text-align: center;
}

.philosophy h2,
.philosophy p,
.philosophy .eyebrow {
  color: #fff;
}

.philosophy p:last-child {
  margin-top: 1.1rem;
  opacity: 0.86;
}
.cookie-banner{
    position:fixed;
    bottom:20px;
    left:50%;
    transform:translateX(-50%);

    width:90%;
    max-width:900px;

    background:#fff;
    padding:20px;

    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.12);

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;

    z-index:9999;
}

.team-grid,
.profile-list {
  display: grid;
  gap: 1.25rem;
}

.team-card {
  overflow: hidden;
}

.team-card img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  background: var(--surface-warm);
}

.team-card-content {
  padding: 1.35rem;
}

.crp {
  margin-bottom: 0.45rem;
  color: var(--secondary-dark) !important;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.team-card h3,
.profile-card h2 {
  margin-bottom: 0.65rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  color: var(--primary);
  font-weight: 800;
}

.text-link::after {
  content: "";
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: width 180ms ease;
}

.text-link:hover::after {
  width: 28px;
}

.faq-layout {
  display: grid;
  gap: 2rem;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--background);
  overflow: hidden;
}

summary {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  cursor: pointer;
  color: var(--text);
  font-weight: 800;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: var(--secondary-dark);
  font-size: 1.4rem;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  padding: 0 1.1rem 1rem;
  color: var(--muted);
}

.cta-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--surface-warm);
}

.cta-inner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.cta-inner h2 {
  margin-bottom: 0.8rem;
}

.page-hero {
  padding: clamp(3.2rem, 8vw, 6.5rem) 0;
  overflow: hidden;
}

.page-hero.compact {
  text-align: center;
}

.page-hero .btn {
  margin-top: 1.5rem;
}

.profile-card {
  display: grid;
  gap: 1.3rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.profile-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--surface-warm);
}

.profile-card .btn {
  margin-top: 1.1rem;
}

.info-panel {
  padding: 1.4rem;
}

.info-panel h3 {
  margin-bottom: 1rem;
}

.check-list {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.8rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.62rem;
  left: 0;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
  background: var(--secondary);
  box-shadow: 0 0 0 5px rgba(196, 122, 74, 0.13);
}

.check-list.large {
  padding: 1.4rem;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 45px rgba(33, 49, 58, 0.06);
}

.blog-grid,
.contact-grid {
  display: grid;
  gap: 1rem;
}

.blog-card,
.contact-card {
  padding: 1.35rem;
}

.blog-meta {
  color: var(--secondary-dark) !important;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blog-card h3 {
  margin: 0.6rem 0 0.7rem;
}

.contact-card h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.75rem, 4vw, 2.65rem);
}

.contact-card .btn {
  margin-top: 1.1rem;
}

.social-list {
  display: grid;
  gap: 0.7rem;
}

.social-list a {
  color: var(--primary);
  font-weight: 800;
}

.map-placeholder {
  min-height: 340px;
  display: grid;
  place-items: center;
  padding: 2rem;
  border: 1px dashed rgba(13, 93, 102, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(13, 93, 102, 0.08), rgba(196, 122, 74, 0.08)),
    #fff;
  text-align: center;
}

.map-placeholder h2 {
  margin-bottom: 0.75rem;
}

.site-footer {
  padding: 3.5rem 0 1.2rem;
  background: #18282F;
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-logo {
  width: 168px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
  opacity: 0.94;
}

.site-footer h2 {
  margin-bottom: 0.8rem;
  color: #fff;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  width: fit-content;
  color: #fff;
  font-weight: 700;
}

.site-footer a + a,
.site-footer a + p {
  margin-top: 0.55rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  margin-top: 2.6rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.9rem;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: #1F8F5F;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(31, 143, 95, 0.28);
}

@media (min-width: 620px) {
  .card-grid-3,
  .blog-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 0.15rem;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 0.55rem 0.7rem;
    font-size: 0.9rem;
  }

  .header-cta {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 0.95rem;
    border-radius: var(--radius);
    background: var(--primary);
    color: #fff;
    font-weight: 800;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.72fr);
  }

  .page-hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.68fr);
  }

  .split-layout,
  .faq-layout {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
    gap: 4rem;
  }

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

  .profile-card {
    grid-template-columns: 0.72fr 1fr;
    padding: 1.2rem;
  }

  .cta-inner {
    grid-template-columns: 1fr auto;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 0.9fr 0.8fr 0.9fr;
  }
.card-full{
    grid-column: 1 / -1;
}

.feature-card.card-full p{
    line-height:1.8;
    margin-bottom:20px;
}

.feature-card.card-full h2{
    margin-top:35px;
    margin-bottom:15px;
}
.article-wrapper{
    max-width:900px;
    margin:0 auto;
}

.article-cover{
    width:100%;
    height:400px;
    object-fit:cover;
   object-position:top;
    border-radius:20px;
    margin-bottom:30px;
}

.feature-card.card-full{
    width:100%;
}
.feature-card.card-full{
    grid-column:1 / -1;

    width:100%;
    max-width:900px;

    justify-self:center;
}

.feature-card.card-full ul{
    margin:20px 0;
    padding-left:25px;
}

.feature-card.card-full li{
    margin-bottom:10px;
}

.feature-card.card-full blockquote{
    font-style:italic;
    padding-left:20px;
    border-left:4px solid #ccc;
    margin:20px 0;
}
}

@media (min-width: 1120px) {
  .site-nav a {
    padding-inline: 0.85rem;
  }

  .hero {
    padding-top: 5.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
