/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    line-height: 1.7;
    color: #3d3730;
    background-color: #f8f7f5;
}

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ── Typography ───────────────────────────────────── */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 500;
    line-height: 1.25;
    color: #3d3730;
}

/* ── Layout ───────────────────────────────────────── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Section Eyebrow ──────────────────────────────── */
.section-eyebrow {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #1a6b6b;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    margin-bottom: 20px;
}

.section-title--center {
    text-align: center;
}

.section-subtitle {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.1rem;
    color: #786c5f;
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}

/* ── Buttons ──────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 14px 28px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn--primary {
    background: #1a6b6b;
    color: #f4f1eb;
    border: 1.5px solid #1a6b6b;
}

.btn--primary:hover {
    background: #155757;
    border-color: #155757;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(26, 107, 107, 0.3);
}

.btn--outline {
    background: transparent;
    color: #f4f1eb;
    border: 1.5px solid rgba(244, 241, 235, 0.5);
}

.btn--outline:hover {
    background: rgba(244, 241, 235, 0.1);
    border-color: #f4f1eb;
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* ── Navigation ───────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(248, 247, 245, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(61, 55, 48, 0.08);
    transition: box-shadow 0.3s ease;
}

.nav.scrolled {
    box-shadow: 0 2px 20px rgba(61, 55, 48, 0.08);
}

.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #3d3730;
}

.nav__logo-text {
    letter-spacing: -0.01em;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav__link {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: #5c5248;
    transition: color 0.2s ease;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: #1a6b6b;
    transition: width 0.3s ease;
}

.nav__link:hover {
    color: #1a6b6b;
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link--cta {
    background: #1a6b6b;
    color: #f4f1eb;
    padding: 8px 18px;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.nav__link--cta::after {
    display: none;
}

.nav__link--cta:hover {
    background: #155757;
    color: #f4f1eb;
}

/* Mobile toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.nav__toggle-line {
    display: block;
    width: 22px;
    height: 1.5px;
    background: #3d3730;
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav__toggle.active .nav__toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.nav__toggle.active .nav__toggle-line:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active .nav__toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(248, 247, 245, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 99;
    padding: 40px 24px;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu.open {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.mobile-menu__link {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #3d3730;
    transition: color 0.2s ease;
}

.mobile-menu__link:hover {
    color: #1a6b6b;
}

.mobile-menu__link--cta {
    margin-top: 8px;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.875rem;
    background: #1a6b6b;
    color: #f4f1eb;
    padding: 12px 28px;
    border-radius: 4px;
}

/* ── Hero ─────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f7f5 0%, #e8e4de 100%);
    padding-top: 72px;
}

.hero__bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(26, 107, 107, 0.04) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(26, 107, 107, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.hero__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__eyebrow {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #1a6b6b;
    margin-bottom: 20px;
}

.hero__headline {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 500;
    line-height: 1.2;
    color: #3d3730;
    margin-bottom: 24px;
}

.hero__subheadline {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #786c5f;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero__trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.8125rem;
    color: #5c5248;
}

.hero__image-wrap {
    position: relative;
}

.hero__image-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(61, 55, 48, 0.15);
}

.hero__image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero__image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(26, 107, 107, 0.15);
    border-radius: 8px;
    z-index: -1;
}

/* ── About ────────────────────────────────────────── */
.about {
    padding: 120px 0;
    background: #f8f7f5;
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about__image-side {
    position: relative;
}

.about__image-main {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(61, 55, 48, 0.12);
}

.about__image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about__image-float {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(61, 55, 48, 0.15);
    border: 4px solid #f8f7f5;
}

.about__image-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about__content {
    padding: 20px 0;
}

.about__text {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.05rem;
    line-height: 1.85;
    color: #5c5248;
    margin-bottom: 20px;
}

.about__features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.about__feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.about__feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: rgba(26, 107, 107, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about__feature-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.about__feature-desc {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.875rem;
    color: #786c5f;
}

/* ── Collections ──────────────────────────────────── */
.collections {
    padding: 120px 0;
    background: #f1efeb;
}

.collections__header {
    text-align: center;
    margin-bottom: 64px;
}

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

.collection-card {
    background: #f8f7f5;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collection-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(61, 55, 48, 0.12);
}

.collection-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.collection-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.collection-card:hover .collection-card__image img {
    transform: scale(1.05);
}

.collection-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 107, 107, 0.0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.collection-card:hover .collection-card__overlay {
    background: rgba(26, 107, 107, 0.15);
}

.collection-card__body {
    padding: 24px;
}

.collection-card__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.collection-card__desc {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.875rem;
    color: #786c5f;
    line-height: 1.6;
}

/* ── Visit ────────────────────────────────────────── */
.visit {
    padding: 120px 0;
    background: #f8f7f5;
}

.visit__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.visit__description {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.05rem;
    line-height: 1.85;
    color: #786c5f;
    margin-bottom: 40px;
}

.visit__details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.visit__detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.visit__detail-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: rgba(26, 107, 107, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.visit__detail h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.visit__detail p {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.875rem;
    color: #786c5f;
    line-height: 1.6;
}

.visit__detail a {
    color: #1a6b6b;
    transition: color 0.2s ease;
}

.visit__detail a:hover {
    color: #155757;
}

.visit__map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(61, 55, 48, 0.12);
    aspect-ratio: 4/3;
}

/* ── Testimonial ──────────────────────────────────── */
.testimonial {
    padding: 100px 0;
    background: #1a6b6b;
    position: relative;
    overflow: hidden;
}

.testimonial::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 10% 90%, rgba(244, 241, 235, 0.05) 0%, transparent 50%),
                      radial-gradient(circle at 90% 10%, rgba(244, 241, 235, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.testimonial__inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.testimonial__quote-icon {
    margin-bottom: 32px;
}

.testimonial__text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.25rem, 2.5vw, 1.6rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.7;
    color: #f4f1eb;
    margin-bottom: 32px;
}

.testimonial__attribution {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.testimonial__attribution-line {
    width: 40px;
    height: 1.5px;
    background: rgba(244, 241, 235, 0.4);
}

.testimonial__source {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.8125rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(244, 241, 235, 0.7);
}

/* ── Contact ──────────────────────────────────────── */
.contact {
    padding: 120px 0;
    background: #f1efeb;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact__description {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.05rem;
    line-height: 1.85;
    color: #786c5f;
    margin-bottom: 36px;
}

.contact__methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact__method {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.9375rem;
    color: #3d3730;
    transition: color 0.2s ease;
}

.contact__method:hover {
    color: #1a6b6b;
}

.contact__method-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(26, 107, 107, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact__form-wrap {
    background: #f8f7f5;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(61, 55, 48, 0.08);
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact__label {
    display: block;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #5c5248;
    margin-bottom: 8px;
}

.contact__input,
.contact__textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e3dfd8;
    border-radius: 6px;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.9375rem;
    color: #3d3730;
    background: #f8f7f5;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}

.contact__input::placeholder,
.contact__textarea::placeholder {
    color: #a39889;
}

.contact__input:focus,
.contact__textarea:focus {
    border-color: #1a6b6b;
    box-shadow: 0 0 0 3px rgba(26, 107, 107, 0.1);
}

.contact__textarea {
    resize: vertical;
    min-height: 120px;
}

.contact__success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 40px 20px;
}

.contact__success.visible {
    display: flex;
}

.contact__success-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(26, 107, 107, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact__success-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #3d3730;
}

.contact__success-text {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.9375rem;
    color: #786c5f;
}

/* ── Footer ───────────────────────────────────────── */
.footer {
    background: #3d3730;
    color: #e3dfd8;
    padding: 80px 0 0;
}

.footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(227, 223, 216, 0.12);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer__logo-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #f4f1eb;
}

.footer__tagline {
    font-family: 'Lora', Georgia, serif;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #c8c0b4;
    max-width: 280px;
}

.footer__heading {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #e3dfd8;
    margin-bottom: 20px;
}

.footer__links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__links a {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.875rem;
    color: #c8c0b4;
    transition: color 0.2s ease;
}

.footer__links a:hover {
    color: #f4f1eb;
}

.footer__contact p {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.875rem;
    color: #c8c0b4;
    line-height: 1.8;
}

.footer__contact a {
    color: #89c5ca;
    transition: color 0.2s ease;
}

.footer__contact a:hover {
    color: #f4f1eb;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    flex-wrap: wrap;
    gap: 12px;
}

.footer__bottom p {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.8125rem;
    color: #a39889;
}

.footer__location {
    font-style: italic;
    color: #786c5f !important;
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
    .hero__inner {
        gap: 40px;
    }

    .about__grid {
        gap: 60px;
    }

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

    .footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav__menu {
        display: none;
    }

    .nav__toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding-top: 72px;
        padding-bottom: 40px;
    }

    .hero__inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 24px;
    }

    .hero__image-wrap {
        order: -1;
    }

    .hero__image-accent {
        display: none;
    }

    .hero__image-container {
        aspect-ratio: 4/3;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        justify-content: center;
    }

    .about {
        padding: 80px 0;
    }

    .about__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about__image-float {
        width: 140px;
        bottom: -20px;
        right: -10px;
    }

    .collections {
        padding: 80px 0;
    }

    .collections__grid {
        grid-template-columns: 1fr;
    }

    .visit {
        padding: 80px 0;
    }

    .visit__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .visit__map {
        aspect-ratio: 16/9;
    }

    .testimonial {
        padding: 80px 0;
    }

    .contact {
        padding: 80px 0;
    }

    .contact__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact__form-row {
        grid-template-columns: 1fr;
    }

    .contact__form-wrap {
        padding: 28px;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero__inner {
        padding: 32px 16px;
    }

    .hero__trust {
        flex-direction: column;
        gap: 12px;
    }

    .about__image-float {
        display: none;
    }
}

/* ── Animations ───────────────────────────────────── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__content > * {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.hero__content > *:nth-child(1) { animation-delay: 0.1s; }
.hero__content > *:nth-child(2) { animation-delay: 0.2s; }
.hero__content > *:nth-child(3) { animation-delay: 0.3s; }
.hero__content > *:nth-child(4) { animation-delay: 0.4s; }
.hero__content > *:nth-child(5) { animation-delay: 0.5s; }

.hero__image-container {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}
