@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Inter:wght@400;500;600&display=swap');

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 17px;
    line-height: 1.65;
    color: var(--color-text, #1a1a1a);
    background: var(--color-bg, #fff);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
@media (min-width: 768px) {
    body { font-size: 18px; }
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s ease, opacity 0.2s ease; }
a:hover { color: var(--color-accent); }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    line-height: 1.15;
    margin: 0 0 0.5em;
    color: var(--color-primary, #111);
    letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.6vw, 1.6rem); }
p { margin: 0 0 1em; }

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78em;
    color: var(--color-accent);
    margin: 0 0 0.8em;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}


/* ---------- Container ---------- */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}
@media (min-width: 768px) { .container { padding: 0 32px; } }
.container--narrow { max-width: 740px; }
.container--medium { max-width: 960px; }
.container--wide { max-width: 1440px; }

.text-align-left { text-align: left; }
.text-align-center { text-align: center; }
.text-align-right { text-align: right; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border: 1px solid currentColor;
    border-radius: 0;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: all 0.25s ease;
    background: transparent;
    color: var(--color-primary);
    text-decoration: none;
    cursor: pointer;
}
.btn--primary {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}
.btn--primary:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
}
.btn--ghost {
    background: transparent;
    border-color: currentColor;
}
.btn--ghost:hover { background: currentColor; color: #fff; }
.btn--lg { padding: 18px 36px; font-size: 1rem; }
.btn-group { display: flex; gap: 12px; flex-wrap: wrap; justify-content: inherit; }

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 110;
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}
@media (min-width: 880px) {
    .site-header { background: rgba(255,255,255,0.96); backdrop-filter: blur(8px); }
}
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    gap: 16px;
}
@media (min-width: 768px) { .site-header__inner { padding: 22px 32px; } }

.site-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}
.site-logo__text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--color-primary);
}
.site-logo img { max-height: 40px; }

.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: 0;
    padding: 10px;
    margin-right: -10px;
    width: 44px;
    height: 44px;
    z-index: 120;
    position: relative;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    padding: 80px 24px 60px;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.25s ease, visibility 0s linear 0.25s;
    z-index: 100;
}
.site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.25s ease, visibility 0s linear 0s;
}
.site-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.site-nav a {
    display: block;
    padding: 14px 0;
    font-size: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    color: var(--color-primary);
}
.site-nav a[aria-current="page"] { color: var(--color-accent); }

@media (min-width: 880px) {
    .nav-toggle { display: none; }
    .site-nav {
        position: static;
        background: transparent;
        top: auto; left: auto; right: auto; bottom: auto;
        padding: 0;
        visibility: visible;
        opacity: 1;
        overflow: visible;
        transition: none;
    }
    .site-nav ul {
        flex-direction: row;
        gap: 32px;
        padding: 0;
    }
    .site-nav a {
        padding: 8px 0;
        font-size: 1rem;
        font-family: 'Inter', sans-serif;
        font-weight: 500;
        letter-spacing: 0.04em;
        border-bottom: 0;
        position: relative;
    }
    .site-nav a::after {
        content: '';
        position: absolute;
        left: 0; right: 0; bottom: 0;
        height: 1px;
        background: var(--color-accent);
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.3s ease;
    }
    .site-nav a:hover::after,
    .site-nav a[aria-current="page"]::after {
        transform: scaleX(1);
        transform-origin: left;
    }
}

/* ---------- Sections ---------- */
.sec { padding: 64px 0; }
@media (min-width: 768px) { .sec { padding: 96px 0; } }

.sec__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}
.sec__subtitle {
    color: rgba(0,0,0,0.6);
    font-size: 1.05rem;
    margin: 0;
}
.sec__header h2 { margin-bottom: 12px; }

/* ---------- Image placeholder ---------- */
.img-placeholder {
    background: linear-gradient(135deg, #ececec 0%, #f7f7f7 50%, #ececec 100%);
    background-size: 200% 200%;
    animation: shimmer 6s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4/3;
    color: rgba(0,0,0,0.35);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}
@keyframes shimmer {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
}

/* ---------- HERO ---------- */
.sec--hero {
    position: relative;
    padding: 0;
    color: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 80vh;
}
.sec--hero-small { min-height: 50vh; }
.sec--hero-medium { min-height: 65vh; }
.sec--hero-large { min-height: 85vh; }
.sec--hero-full { min-height: 100vh; }

.sec--hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.sec--hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sec--hero__bg--placeholder {
    background: linear-gradient(135deg, #2a2a2a, #555 50%, #2a2a2a);
}
.sec--hero__overlay {
    position: absolute;
    inset: 0;
    background: #000;
}
.sec--hero__content {
    position: relative;
    z-index: 1;
    padding: 64px 20px;
    width: 100%;
}
.sec--hero h1 { color: #fff; margin-bottom: 0.4em; }
.sec--hero .subline {
    font-size: clamp(1.05rem, 1.8vw, 1.35rem);
    max-width: 640px;
    margin-bottom: 1.5em;
    opacity: 0.92;
}
.sec--align-center .sec--hero__content { text-align: center; }
.sec--align-center .subline,
.sec--align-center .btn-group { margin-left: auto; margin-right: auto; }
.sec--align-center .btn-group { justify-content: center; }
.sec--align-right .sec--hero__content { text-align: right; }
.sec--align-right .btn-group { justify-content: flex-end; }
.sec--hero .btn { color: #fff; border-color: #fff; }
.sec--hero .btn--primary { background: #fff; color: var(--color-primary); }
.sec--hero .btn--primary:hover { background: var(--color-accent); border-color: var(--color-accent); color: #fff; }
.sec--hero .btn--ghost:hover { background: #fff; color: var(--color-primary); }

/* ---------- GALLERY ---------- */
.gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}
@media (min-width: 600px) {
    .gallery--cols-2 { grid-template-columns: repeat(2, 1fr); }
    .gallery--cols-3 { grid-template-columns: repeat(2, 1fr); }
    .gallery--cols-4 { grid-template-columns: repeat(2, 1fr); }
    .gallery--cols-5 { grid-template-columns: repeat(2, 1fr); }
    .gallery { gap: 16px; }
}
@media (min-width: 900px) {
    .gallery--cols-3 { grid-template-columns: repeat(3, 1fr); }
    .gallery--cols-4 { grid-template-columns: repeat(4, 1fr); }
    .gallery--cols-5 { grid-template-columns: repeat(4, 1fr); }
    .gallery { gap: 20px; }
}
@media (min-width: 1200px) {
    .gallery--cols-5 { grid-template-columns: repeat(5, 1fr); }
}
.gallery__item {
    margin: 0;
    overflow: hidden;
    position: relative;
}
.gallery__item img,
.gallery__item .img-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery__item a { display: block; overflow: hidden; }
.gallery__item:hover img { transform: scale(1.04); }
.gallery__item figcaption {
    padding: 10px 4px 0;
    font-size: 0.88rem;
    color: rgba(0,0,0,0.6);
}

/* ---------- Lightbox ---------- */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.94);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 100%; max-height: 88vh; box-shadow: 0 24px 60px rgba(0,0,0,0.4); }
.lightbox__close,
.lightbox__prev,
.lightbox__next {
    position: absolute;
    background: rgba(255,255,255,0.08);
    border: 0;
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    font-size: 1.5rem;
    line-height: 48px;
    transition: background 0.2s ease;
}
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover { background: rgba(255,255,255,0.18); }
.lightbox__close { top: 20px; right: 20px; }
.lightbox__prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__caption {
    position: absolute;
    bottom: 20px;
    left: 0; right: 0;
    text-align: center;
    color: #fff;
    font-size: 0.9rem;
    padding: 0 20px;
}

/* ---------- TEXT + IMAGE ---------- */
.text-image {
    display: grid;
    gap: 32px;
    align-items: center;
}
@media (min-width: 800px) {
    .text-image { grid-template-columns: 1fr 1fr; gap: 64px; }
    .sec--img-left .text-image__media { order: -1; }
    .sec--img-right .text-image__media { order: 1; }
}
.text-image__media img,
.text-image__media .img-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}
.text-image__body h2 { margin-bottom: 0.5em; }
.text-image__body .btn { margin-top: 16px; }

/* ---------- ABOUT ---------- */
.about {
    display: grid;
    gap: 32px;
    align-items: center;
}
@media (min-width: 800px) {
    .about { grid-template-columns: 5fr 7fr; gap: 64px; }
}
.about__media img,
.about__media .img-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}
.about__role {
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.85rem;
    margin-bottom: 1.2em;
}

/* ---------- SERVICES ---------- */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 700px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) {
    .services-grid--3 { grid-template-columns: repeat(3, 1fr); }
    .services-grid--4 { grid-template-columns: repeat(4, 1fr); }
}
.service-card {
    border: 1px solid rgba(0,0,0,0.08);
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.06);
}
.service-card__media img,
.service-card__media .img-placeholder {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}
.service-card__body {
    padding: 28px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.service-card__price {
    color: var(--color-accent);
    font-weight: 500;
    margin-bottom: 12px;
    font-size: 1.05rem;
}
.service-card__desc { margin-bottom: 16px; }
.service-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    font-size: 0.95rem;
}
.service-card__features li {
    padding: 8px 0;
    border-top: 1px solid rgba(0,0,0,0.06);
    position: relative;
    padding-left: 22px;
}
.service-card__features li::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    width: 12px;
    height: 6px;
    border-left: 1.5px solid var(--color-accent);
    border-bottom: 1.5px solid var(--color-accent);
    transform: rotate(-45deg) translateY(-3px);
}
.service-card .btn { margin-top: auto; align-self: flex-start; }

/* ---------- TESTIMONIALS ---------- */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}
@media (min-width: 800px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial {
    margin: 0;
    padding: 32px 28px;
    background: rgba(0,0,0,0.02);
    border-left: 2px solid var(--color-accent);
}
.testimonial__text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    line-height: 1.5;
    margin: 0 0 18px;
    color: var(--color-primary);
}
.testimonial__meta cite {
    font-style: normal;
    font-weight: 500;
    display: block;
}
.testimonial__meta span {
    font-size: 0.85rem;
    color: rgba(0,0,0,0.55);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ---------- CTA ---------- */
.sec--cta {
    color: #fff;
    position: relative;
    overflow: hidden;
}
.sec--cta__bg {
    position: absolute; inset: 0; z-index: 0;
}
.sec--cta__bg img { width: 100%; height: 100%; object-fit: cover; }
.sec--cta__overlay {
    position: absolute; inset: 0;
    background: #000;
    z-index: 1;
}
.sec--cta__content {
    position: relative;
    z-index: 2;
    text-align: center;
}
.sec--cta h2 { color: #fff; }
.sec--cta p { font-size: 1.1rem; max-width: 600px; margin: 0 auto 1.6em; opacity: 0.92; }
.sec--cta .btn { color: #fff; border-color: #fff; }
.sec--cta .btn--primary { background: #fff; color: var(--color-primary); border-color: #fff; }
.sec--cta .btn--primary:hover { background: var(--color-accent); border-color: var(--color-accent); color: #fff; }

/* ---------- CONTACT ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 32px;
}
@media (min-width: 700px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .contact-grid { grid-template-columns: repeat(4, 1fr); } }
.contact-item {
    border-top: 2px solid var(--color-accent);
    padding-top: 16px;
}
.contact-item__label {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.75rem;
    color: rgba(0,0,0,0.55);
    display: block;
    margin-bottom: 8px;
}
.contact-item a { font-weight: 500; }
.contact-social { margin-top: 36px; display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- FAQ ---------- */
.faq__item {
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding: 18px 0;
}
.faq__item summary {
    cursor: pointer;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--color-primary);
    list-style: none;
    position: relative;
    padding-right: 32px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.6rem;
    transition: transform 0.2s ease;
    color: var(--color-accent);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__answer { padding-top: 14px; }

/* ---------- SPACER ---------- */
.sec--spacer-small { height: 24px; }
.sec--spacer-medium { height: 64px; }
.sec--spacer-large { height: 128px; }

/* ---------- Rich text ---------- */
.rich-text {
    font-size: 1.02em;
    line-height: 1.7;
}
.rich-text > :first-child { margin-top: 0; }
.rich-text > :last-child { margin-bottom: 0; }
.rich-text h2, .rich-text h3, .rich-text h4 { margin-top: 1.5em; }
.rich-text a {
    color: var(--color-accent);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}
.rich-text ul, .rich-text ol { padding-left: 22px; margin: 0 0 1em; }
.rich-text li { margin-bottom: 6px; }
.rich-text blockquote {
    border-left: 2px solid var(--color-accent);
    padding-left: 20px;
    margin: 1.5em 0;
    font-style: italic;
}
.rich-text img { margin: 1em 0; }

/* ---------- Footer ---------- */
.site-footer {
    background: #f6f4ef;
    padding: 72px 0 32px;
    margin-top: 80px;
    color: rgba(0,0,0,0.75);
    font-size: 0.95rem;
}
.site-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 48px;
}
@media (min-width: 600px) { .site-footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .site-footer__grid { grid-template-columns: repeat(4, 1fr); } }
.site-footer__col h3 {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin: 0 0 16px;
    color: var(--color-primary);
}
.site-footer__col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.site-footer__col li { margin-bottom: 10px; line-height: 1.6; }
.site-footer__col a:hover { color: var(--color-accent); }
.site-footer__bottom {
    border-top: 1px solid rgba(0,0,0,0.08);
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(0,0,0,0.55);
}
@media (min-width: 700px) {
    .site-footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}
.site-footer__social { display: flex; gap: 16px; }
.site-footer__social a {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
}

/* ---------- Animations on scroll ---------- */
.sec { opacity: 1; }
@media (prefers-reduced-motion: no-preference) {
    .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.8s ease, transform 0.8s ease; }
    .reveal.is-visible { opacity: 1; transform: none; }
}
