:root {
    --bg: #f8f3e9;
    --bg-soft: #fffaf0;
    --ink: #221a12;
    --muted: #6d5f51;
    --gold: #b89000;
    --gold-dark: #7a5f00;
    --terracotta: #8d4f34;
    --card: rgba(255, 250, 240, 0.82);
    --line: rgba(122, 95, 0, 0.18);
    --shadow: 0 24px 70px rgba(69, 44, 18, 0.16);
    --radius-lg: 34px;
    --radius-md: 22px;
    --font-title: "Cormorant Garamond", Georgia, serif;
    --font-body: "Manrope", Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

html,
body {
    min-height: 100%;
    margin: 0;
    max-width: 100%;
    overflow-x: hidden;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-body);
}

body {
    background:
        radial-gradient(circle at 10% 5%, rgba(184, 144, 0, 0.17), transparent 30rem),
        radial-gradient(circle at 90% 18%, rgba(141, 79, 52, 0.14), transparent 28rem),
        linear-gradient(135deg, #fff9ed 0%, #f5ead6 45%, #efe1c8 100%);
}

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

a[href^=tel] {
    color: inherit;
    text-decoration: none;
}

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

::selection {
    background: rgba(184, 144, 0, 0.26);
}

.fadein {
    animation: fadeIn 700ms ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.site {
    position: relative;
    width: 100%;
    overflow: hidden;
}

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

.hero {
    position: relative;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding: 76px 0 58px;
    isolation: isolate;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 24px;
    border: 1px solid rgba(122, 95, 0, 0.14);
    border-radius: 42px;
    pointer-events: none;
    z-index: -1;
}

.hero__glow {
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 999px;
    filter: blur(28px);
    opacity: 0.42;
    z-index: -2;
}

.hero__glow--left {
    left: -9rem;
    bottom: 6rem;
    background: rgba(184, 144, 0, 0.22);
}

.hero__glow--right {
    right: -8rem;
    top: 5rem;
    background: rgba(141, 79, 52, 0.18);
}

.hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.93fr) minmax(360px, 1fr);
    align-items: center;
    gap: clamp(38px, 6vw, 82px);
}

.hero__content {
    animation: revealUp 800ms ease-out both;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--gold-dark);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero__logo {
    width: min(285px, 72vw);
    margin: 0 0 30px;
    padding: 12px 22px;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 999px;
    box-shadow: 0 18px 44px rgba(69, 44, 18, 0.14);
}

h1,
h2,
h3 {
    margin: 0;
    font-family: var(--font-title);
    color: var(--ink);
    letter-spacing: -0.025em;
}

h1 {
    max-width: none;
    font-size: clamp(2rem, 3.3vw, 3.7rem);
    line-height: 0.98;
}

.title-line {
    display: block;
    white-space: nowrap;
}

h2 {
    font-size: clamp(2.3rem, 4.7vw, 4.6rem);
    line-height: 0.95;
}

h3 {
    font-size: clamp(1.9rem, 3vw, 2.75rem);
    line-height: 1;
}

.hero__lead {
    max-width: 610px;
    margin: 28px 0 0;
    color: var(--muted);
    font-size: clamp(1rem, 1.2vw, 1.12rem);
    line-height: 1.8;
    overflow-wrap: break-word;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 800;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
    text-decoration: none;
}

.button:focus-visible,
.contact-link:focus-visible {
    outline: 3px solid rgba(184, 144, 0, 0.35);
    outline-offset: 4px;
}

.button--primary {
    background: var(--ink);
    color: #fff8e8;
    box-shadow: 0 18px 40px rgba(34, 26, 18, 0.2);
}

.button--primary:hover {
    color: #fff8e8;
    box-shadow: 0 22px 46px rgba(34, 26, 18, 0.28);
}

.button--secondary {
    border: 1px solid var(--line);
    background: rgba(255, 250, 240, 0.68);
    color: var(--ink);
}

.hero__media {
    position: relative;
    min-height: 640px;
    animation: revealUp 800ms 120ms ease-out both;
}

.hero__image {
    position: absolute;
    object-fit: cover;
    border: 10px solid rgba(255, 250, 240, 0.82);
    box-shadow: var(--shadow);
}

.hero__image--main {
    inset: 48px 42px auto auto;
    width: min(78%, 500px);
    height: 520px;
    border-radius: 48% 48% 28px 28px;
}

.hero__image--small {
    width: 238px;
    height: 238px;
    border-radius: 50%;
}

.hero__image--top {
    top: 0;
    left: 0;
}

.hero__image--bottom {
    right: 0;
    bottom: 0;
}

.content-section,
.story-section,
.contact-section {
    padding: clamp(30px, 4.5vw, 58px) 0;
}

.section-heading {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 34px;
    align-items: end;
    margin-bottom: 34px;
}

.section-heading h2 {
    max-width: 780px;
}

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

.feature-card {
    min-height: 380px;
    padding: clamp(28px, 4vw, 48px);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--card);
    box-shadow: 0 18px 54px rgba(69, 44, 18, 0.08);
    backdrop-filter: blur(18px);
}

.feature-card--dark {
    background:
        linear-gradient(145deg, rgba(34, 26, 18, 0.96), rgba(87, 61, 31, 0.94)),
        var(--ink);
    color: #fff6df;
}

.feature-card--dark h3,
.feature-card--dark .feature-card__number {
    color: #fff6df;
}

.feature-card--dark p {
    color: rgba(255, 246, 223, 0.78);
}

.feature-card__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 28px;
    border: 1px solid currentColor;
    border-radius: 999px;
    color: var(--gold-dark);
    font-size: 0.75rem;
    font-weight: 800;
}

.feature-card p,
.story-card p,
.contact-card p {
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.78;
}

.story-card {
    display: grid;
    grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1fr);
    gap: clamp(28px, 5vw, 60px);
    align-items: stretch;
    padding: clamp(18px, 2vw, 26px);
    border: 1px solid var(--line);
    border-radius: calc(var(--radius-lg) + 10px);
    background: rgba(255, 250, 240, 0.66);
    box-shadow: var(--shadow);
}

.story-card__image img {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.story-card__content {
    align-self: center;
    padding: clamp(24px, 4vw, 52px) clamp(12px, 3vw, 34px);
}

.contact-section {
    padding-top: 18px;
    padding-bottom: 10px;
}

.contact-card {
    display: grid;
    grid-template-columns: 0.78fr 1fr;
    gap: 34px;
    align-items: center;
    padding: clamp(28px, 5vw, 52px);
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, var(--gold), #8d6d00);
    color: #fff8e8;
    box-shadow: 0 26px 70px rgba(122, 95, 0, 0.22);
}

.contact-card h2,
.contact-card .eyebrow {
    color: #fff8e8;
}

.contact-card__info {
    display: grid;
    gap: 14px;
    justify-items: start;
}

.contact-card__info p {
    margin: 0;
    color: rgba(255, 248, 232, 0.82);
}

.contact-link {
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    gap: 10px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255, 248, 232, 0.13);
    color: #fff8e8;
    font-weight: 800;
    transition: background-color 180ms ease, transform 180ms ease;
}

.contact-link:hover {
    color: #fff8e8;
    background: rgba(255, 248, 232, 0.2);
    transform: translateY(-1px);
    text-decoration: none;
}

.contact-link img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.bt-whatsme {
    position: fixed;
    right: 30px;
    bottom: 0;
    z-index: 9999;
    cursor: pointer;
}

@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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