/* CSS Variables: define the main colors, fonts and shared spacing values. */
:root {
    --color-background: #fbf8f3;
    --color-surface: #ffffff;
    --color-surface-soft: #f4ede2;
    --color-line: #e3d8c7;
    --color-text: #2f2a24;
    --color-muted: #6d665d;
    --color-olive: #66745b;
    --color-gold: #bc9a67;
    --color-highlight: #f0e5d1;
    --color-whatsapp: #2f9f69;
    --shadow-soft: 0 12px 30px rgba(85, 71, 52, 0.08);
    --shadow-large: 0 22px 60px rgba(85, 71, 52, 0.12);
    --radius-small: 1rem;
    --radius-medium: 1.5rem;
    --radius-large: 2rem;
    --font-heading: "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
    --font-body: "Segoe UI", "Trebuchet MS", Verdana, sans-serif;
}

/* Global reset and base styles for the full page. */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--color-text);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(251, 248, 243, 0.9)),
        radial-gradient(circle at top left, rgba(240, 229, 209, 0.9), transparent 32%),
        radial-gradient(circle at top right, rgba(112, 128, 107, 0.14), transparent 28%),
        var(--color-background);
    line-height: 1.6;
}

main {
    overflow: hidden;
}

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

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

button,
input,
select {
    font: inherit;
}

/* Typography helpers for headings, paragraphs and reusable section spacing. */
h1,
h2,
h3 {
    margin: 0;
    font-family: var(--font-heading);
    line-height: 1.1;
}

p {
    margin: 0;
}

.section {
    padding: 4.5rem 0;
    scroll-margin-top: 6rem;
}

.container {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
}

.surface-soft {
    background: linear-gradient(180deg, rgba(244, 237, 226, 0.7), rgba(255, 255, 255, 0.55));
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(185, 150, 98, 0.12);
    color: var(--color-olive);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-intro {
    max-width: 42rem;
    margin: 0 auto 2rem;
    text-align: center;
}

.section-intro-left {
    margin-left: 0;
    text-align: left;
}

.section-intro h2 {
    font-size: clamp(2rem, 6vw, 3.2rem);
    margin-bottom: 0.9rem;
}

.section-intro p:last-child {
    color: var(--color-muted);
}

/* Shared button styles for calls to action and form submission. */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.25rem;
    padding: 0.95rem 1.4rem;
    border: 0;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, color 0.22s ease;
    cursor: pointer;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(112, 128, 107, 0.2);
}

.button:focus-visible,
.site-nav a:focus-visible,
.text-link:focus-visible,
input:focus-visible,
select:focus-visible {
    outline: 3px solid rgba(112, 128, 107, 0.32);
    outline-offset: 3px;
}

.button-primary {
    background: linear-gradient(135deg, var(--color-olive), var(--color-gold));
    color: #ffffff;
}

.button-secondary {
    background: rgba(255, 255, 255, 0.86);
    color: var(--color-text);
    border: 1px solid rgba(185, 150, 98, 0.22);
    box-shadow: var(--shadow-soft);
}

.button-small {
    min-height: 2.8rem;
    padding-inline: 1rem;
}

.button-block {
    width: 100%;
}

/* Header styling keeps the brand and navigation visible as users scroll. */
.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid rgba(227, 216, 199, 0.75);
    background: rgba(251, 248, 243, 0.88);
    backdrop-filter: blur(16px);
}

.header-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
}

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

.brand-logo {
    width: 4.4rem;
    height: 4.4rem;
    flex: 0 0 auto;
    border: 1px solid rgba(227, 216, 199, 0.9);
    border-radius: 1rem;
    background: #3d4627;
    box-shadow: var(--shadow-soft);
    object-fit: cover;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    overflow-x: auto;
    scrollbar-width: none;
}

.site-nav::-webkit-scrollbar {
    display: none;
}

.site-nav a {
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
    color: var(--color-muted);
    transition: background-color 0.22s ease, color 0.22s ease;
}

.site-nav a:hover {
    background: rgba(240, 229, 209, 0.75);
    color: var(--color-text);
}

@media (max-width: 40rem) {
    .brand-logo {
        width: 3.6rem;
        height: 3.6rem;
    }
}

/* Hero layout creates the first impression and pushes the main conversion action. */
.hero {
    position: relative;
    padding-top: 4.6rem;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 2rem auto auto 50%;
    width: min(58rem, 94vw);
    height: 28rem;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240, 229, 209, 0.85), transparent 70%);
    pointer-events: none;
    z-index: -1;
}

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

.hero-content h1 {
    max-width: 10ch;
    font-size: clamp(2.8rem, 12vw, 4.9rem);
    margin-bottom: 1rem;
}

.hero-verse {
    display: block;
    margin-top: 0.45rem;
    color: var(--color-olive);
    font-family: var(--font-body);
    font-size: 0.44em;
    font-style: italic;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero-text {
    max-width: 38rem;
    color: var(--color-muted);
    font-size: 1.04rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin: 1.75rem 0;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.hero-points li {
    padding: 0.75rem 1rem;
    border: 1px solid rgba(227, 216, 199, 0.85);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-soft);
}

.hero-card {
    position: relative;
    padding: 1.8rem;
    border: 1px solid rgba(227, 216, 199, 0.9);
    border-radius: var(--radius-large);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 243, 236, 0.96));
    box-shadow: var(--shadow-large);
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: 1rem;
    border: 1px solid rgba(188, 154, 103, 0.18);
    border-radius: calc(var(--radius-large) - 0.5rem);
    pointer-events: none;
}

.hero-card::after {
    content: "";
    position: absolute;
    inset: auto 1.5rem 1.2rem auto;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(185, 150, 98, 0.28), transparent 72%);
}

.card-label,
.card-kicker {
    color: var(--color-olive);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-card h2 {
    margin-top: 0.8rem;
    font-size: clamp(1.7rem, 6vw, 2.45rem);
}

.hero-card-list {
    display: grid;
    gap: 0.85rem;
    margin: 1.5rem 0;
}

.hero-card-list div {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(227, 216, 199, 0.9);
}

.hero-card-list span {
    color: var(--color-muted);
}

.hero-card blockquote {
    margin: 0;
    padding-right: 2rem;
    font-family: var(--font-heading);
    font-size: 1.45rem;
}

.quote-source {
    margin-top: 0.6rem;
    color: var(--color-muted);
    font-size: 0.95rem;
}

.founder-card {
    overflow: hidden;
    border: 1px solid rgba(227, 216, 199, 0.9);
    border-radius: var(--radius-large);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 243, 236, 0.94));
    box-shadow: var(--shadow-large);
}

.founder-card-media {
    position: relative;
}

.founder-photo {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.founder-card-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(37, 31, 26, 0.02), rgba(37, 31, 26, 0.28));
    pointer-events: none;
}

.founder-badge {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    z-index: 1;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--color-olive);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: var(--shadow-soft);
}

.founder-card-content {
    display: grid;
    gap: 0.9rem;
    padding: 1.5rem;
}

.founder-card-content h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
}

.founder-text {
    color: var(--color-muted);
}

.founder-stats {
    display: grid;
    gap: 0.8rem;
    margin-top: 0.2rem;
}

.founder-stats div {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(227, 216, 199, 0.9);
}

.founder-stats div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.founder-stats span {
    color: var(--color-muted);
}

.founder-stats strong {
    text-align: right;
}

/* Reusable card grid for services, catalog cards, testimonials and blog articles. */
.card-grid {
    display: grid;
    gap: 1rem;
}

/* Promotions cards add a more commercial section without losing the premium tone. */
.promo-card {
    position: relative;
    display: grid;
    gap: 0.8rem;
    padding: 1.5rem;
    border: 1px solid rgba(227, 216, 199, 0.88);
    border-radius: var(--radius-large);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 243, 236, 0.86));
    box-shadow: var(--shadow-soft);
}

.promo-card-featured {
    background: linear-gradient(135deg, rgba(240, 229, 209, 0.95), rgba(255, 255, 255, 0.98));
    box-shadow: var(--shadow-large);
}

.promo-card h3 {
    font-size: 1.65rem;
}

.promo-card p:not(.promo-chip) {
    color: var(--color-muted);
}

.promo-card strong {
    color: var(--color-olive);
}

.promo-chip {
    display: inline-flex;
    width: fit-content;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(188, 154, 103, 0.14);
    color: var(--color-olive);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-card,
.service-detail-card,
.testimonial-card,
.blog-card {
    height: 100%;
    padding: 1.4rem;
    border: 1px solid rgba(227, 216, 199, 0.88);
    border-radius: var(--radius-medium);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-soft);
}

.service-card h3,
.service-detail-card h3,
.blog-card h3 {
    margin: 0.55rem 0 0.75rem;
    font-size: 1.5rem;
}

.service-card p:not(.card-kicker):not(.service-price),
.blog-card p:not(.card-kicker) {
    color: var(--color-muted);
}

.service-card,
.service-detail-card {
    display: grid;
    gap: 0.65rem;
}

.service-price {
    color: var(--color-gold);
    font-size: 1rem;
    font-weight: 800;
}

.service-price-large {
    font-size: 1.15rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-top: auto;
    color: var(--color-olive);
    font-weight: 700;
}

.service-link:hover {
    color: var(--color-gold);
}

.service-detail-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

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

.service-detail-card {
    scroll-margin-top: 7rem;
}

.service-detail-card p:not(.card-kicker):not(.service-price) {
    color: var(--color-muted);
}

/* Inner pages share these utility styles for service detail pages and blog articles. */
.back-link {
    display: inline-flex;
    margin-bottom: 1.5rem;
    color: var(--color-olive);
    font-weight: 700;
}

.back-link:hover {
    color: var(--color-gold);
}

.page-hero {
    display: grid;
    gap: 1.5rem;
    align-items: start;
}

.page-price {
    margin: 0.8rem 0 1.1rem;
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 8vw, 3.3rem);
    line-height: 1;
}

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

.detail-list {
    margin: 0;
    padding-left: 1.2rem;
    color: var(--color-muted);
}

.detail-list li + li {
    margin-top: 0.55rem;
}

.article-shell {
    max-width: 52rem;
}

.article-meta {
    margin: 1rem 0 1.5rem;
    color: var(--color-muted);
    font-size: 0.95rem;
    font-weight: 600;
}

.article-prose {
    display: grid;
    gap: 1.2rem;
}

.article-prose h2 {
    font-size: clamp(1.6rem, 4vw, 2.1rem);
}

.article-prose p,
.article-prose ul {
    color: var(--color-muted);
}

.article-prose ul {
    margin: 0;
    padding-left: 1.2rem;
}

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

.testimonial-text {
    font-size: 1.08rem;
    color: var(--color-text);
}

.testimonial-author {
    color: var(--color-muted);
    font-size: 0.95rem;
    font-weight: 600;
}

.text-link {
    display: inline-flex;
    margin-top: 1rem;
    color: var(--color-olive);
    font-weight: 700;
}

.text-link:hover {
    color: var(--color-gold);
}

/* Contact section styles the copy block and the lead form. */
.contact-grid {
    display: grid;
    gap: 1.5rem;
    align-items: start;
}

.contact-copy h2 {
    font-size: clamp(2rem, 6vw, 3.2rem);
    margin-bottom: 1rem;
}

.contact-copy > p:last-of-type {
    color: var(--color-muted);
}

.contact-highlights {
    display: grid;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.contact-highlights div {
    padding: 1rem 1.1rem;
    border-radius: var(--radius-small);
    border: 1px solid rgba(227, 216, 199, 0.9);
    background: rgba(255, 255, 255, 0.8);
}

.contact-highlights strong {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 1rem;
}

.contact-highlights p {
    color: var(--color-muted);
}

.contact-form {
    display: grid;
    gap: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(227, 216, 199, 0.95);
    border-radius: var(--radius-large);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(248, 243, 236, 0.98));
    box-shadow: var(--shadow-large);
}

.form-field {
    display: grid;
    gap: 0.45rem;
}

.form-field label {
    font-weight: 700;
}

.form-field input,
.form-field select {
    width: 100%;
    min-height: 3.2rem;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(185, 150, 98, 0.28);
    border-radius: 1rem;
    background: rgba(255, 252, 248, 0.95);
    color: var(--color-text);
    transition: border-color 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.form-field input:focus,
.form-field select:focus {
    border-color: rgba(112, 128, 107, 0.55);
    box-shadow: 0 0 0 5px rgba(112, 128, 107, 0.08);
    background: #ffffff;
}

.form-note {
    color: var(--color-muted);
    font-size: 0.93rem;
    text-align: center;
}

/* Final call to action gives a last conversion push before the footer. */
.final-cta-box {
    position: relative;
    overflow: hidden;
    padding: 2rem;
    border: 1px solid rgba(227, 216, 199, 0.9);
    border-radius: var(--radius-large);
    background: linear-gradient(135deg, rgba(240, 229, 209, 0.95), rgba(255, 255, 255, 0.95));
    box-shadow: var(--shadow-large);
    text-align: center;
}

.final-cta-box::before,
.final-cta-box::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.final-cta-box::before {
    width: 12rem;
    height: 12rem;
    top: -4rem;
    right: -4rem;
    background: radial-gradient(circle, rgba(112, 128, 107, 0.18), transparent 70%);
}

.final-cta-box::after {
    width: 10rem;
    height: 10rem;
    bottom: -3rem;
    left: -3rem;
    background: radial-gradient(circle, rgba(185, 150, 98, 0.24), transparent 70%);
}

.final-cta-box h2 {
    max-width: 15ch;
    margin: 0 auto 1rem;
    font-size: clamp(2rem, 6vw, 3.2rem);
}

.final-cta-box p:not(.eyebrow) {
    max-width: 42rem;
    margin: 0 auto 1.5rem;
    color: var(--color-muted);
}

/* Footer styling closes the page with lightweight brand messaging. */
.site-footer {
    padding: 0 0 3rem;
}

.footer-inner {
    display: grid;
    gap: 0.35rem;
    text-align: center;
    color: var(--color-muted);
}

/* Floating WhatsApp button keeps the manual contact option visible at all times. */
.whatsapp-float {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 30;
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(47, 159, 105, 0.24);
    box-shadow: 0 18px 36px rgba(47, 159, 105, 0.18);
}

.whatsapp-float strong,
.whatsapp-float small {
    display: block;
}

.whatsapp-float small {
    color: var(--color-muted);
}

.whatsapp-icon {
    display: inline-grid;
    place-items: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--color-whatsapp);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 800;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
}

/* Responsive layout rules adapt the page from mobile-first to larger screens. */
@media (min-width: 40rem) {
    .section {
        padding: 5rem 0;
    }

    .container {
        width: min(1120px, calc(100% - 3rem));
    }

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

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

@media (min-width: 64rem) {
    .hero-grid {
        grid-template-columns: minmax(0, 1.1fr) minmax(22rem, 0.9fr);
        gap: 2rem;
    }

    .page-hero {
        grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.9fr);
        gap: 2rem;
    }

    .promotions-grid {
        grid-template-columns: 1.15fr 1fr 1fr;
    }

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

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

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

    .contact-grid {
        grid-template-columns: minmax(0, 1fr) minmax(23rem, 0.9fr);
        gap: 2rem;
    }
}

/* Reduced motion support keeps interactions comfortable for sensitive users. */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}