:root {
    --mauve: #7B5D5F;
    --mauve-deep: #68464A;
    --cream: #F3EEEA;
    --sand: #E9DFD3;
    --sage: #999873;
    --silver: #BEB5B0;
    --white: #FFFFFF;
    --ink: #3a2a2c;
    --muted: #8a7674;
    --serif: "Cormorant Garamond", Georgia, serif;
    --sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    --silver-grad: linear-gradient(180deg, #FFFFFF 0%, #BEB5B0 100%);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--sans);
    color: var(--ink);
    background: var(--cream);
    line-height: 1.6;
    font-weight: 300;
}

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

h1, h2, h3 {
    font-family: var(--serif);
    font-weight: 500;
    line-height: 1.15;
    margin: 0 0 0.5em;
    color: var(--mauve-deep);
    letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.4rem; }

p { margin: 0 0 1em; }

.eyebrow {
    font-family: var(--sans);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.72rem;
    color: var(--mauve);
    font-weight: 500;
    margin: 0 0 1rem;
}

.muted { color: var(--muted); font-size: 0.9rem; }

.link {
    color: var(--mauve);
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    padding-bottom: 1px;
    transition: color 0.2s;
}
.link:hover { color: var(--mauve-deep); }

.btn {
    display: inline-block;
    background: transparent;
    color: var(--white);
    padding: 0.9rem 2.25rem;
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 999px;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.78rem;
    transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.btn:hover { background: var(--white); color: var(--mauve-deep); border-color: var(--white); }

.btn--dark {
    background: var(--mauve-deep);
    color: var(--cream);
    border-color: var(--mauve-deep);
}
.btn--dark:hover { background: var(--mauve); border-color: var(--mauve); color: var(--white); }

/* Nav */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem clamp(1.25rem, 4vw, 3rem);
    background: rgba(243, 238, 234, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: background 0.3s;
}
.nav__brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    color: var(--mauve-deep);
}
.nav__logo {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--mauve);
}
.nav__name {
    font-family: var(--serif);
    font-size: 1.15rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.nav__links { display: flex; gap: 1.75rem; }
.nav__links a {
    color: var(--mauve-deep);
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: color 0.2s;
}
.nav__links a:hover { color: var(--mauve); }

@media (max-width: 520px) {
    .nav__links { gap: 1.1rem; }
    .nav__name { display: none; }
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 7rem clamp(1.5rem, 6vw, 5rem) 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: var(--mauve);
    color: var(--white);
}
.hero::before, .hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    pointer-events: none;
}
.hero::before {
    width: 520px; height: 520px;
    background: var(--silver);
    top: -150px; right: -150px;
}
.hero::after {
    width: 420px; height: 420px;
    background: var(--mauve-deep);
    bottom: -120px; left: -120px;
}
.hero__logo {
    width: clamp(220px, 30vw, 360px);
    height: auto;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}
.hero__tagline {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    color: var(--silver);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    position: relative;
    z-index: 2;
    letter-spacing: 0.02em;
}
.hero__location {
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}
.hero__cta { position: relative; z-index: 2; }

/* Sections */
.section {
    padding: 7rem clamp(1.5rem, 6vw, 5rem);
    max-width: 1200px;
    margin: 0 auto;
}
.section--sand {
    background: var(--sand);
    max-width: none;
    padding-left: clamp(1.5rem, 6vw, 5rem);
    padding-right: clamp(1.5rem, 6vw, 5rem);
}
.section--sand > * { max-width: 1200px; margin-left: auto; margin-right: auto; }

.section__head {
    text-align: center;
    margin-bottom: 4rem;
}
.section__divider {
    display: block;
    width: 60px;
    height: 1px;
    background: var(--mauve);
    margin: 1.5rem auto 0;
    opacity: 0.5;
}

/* Services */
.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.service {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 6px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-color: var(--mauve);
    cursor: pointer;
    box-shadow: 0 18px 40px -22px rgba(104,70,74,0.45);
}
.service::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(58,42,44,0.05) 0%, rgba(104,70,74,0.85) 100%);
    transition: background 0.35s;
    z-index: 1;
}
.service__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.75rem;
    color: var(--white);
}
.service__overlay h3 {
    color: var(--white);
    font-size: 1.9rem;
    letter-spacing: 0.05em;
    margin: 0;
    transition: transform 0.35s;
}
.service__overlay ul {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease 0.05s;
}
.service__overlay li {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--silver);
}
.service:hover::before, .service:focus-within::before {
    background: linear-gradient(180deg, rgba(58,42,44,0.5) 0%, rgba(104,70,74,0.92) 100%);
}
.service:hover .service__overlay ul,
.service:focus-within .service__overlay ul {
    max-height: 320px;
    opacity: 1;
}
.service:hover .service__overlay h3,
.service:focus-within .service__overlay h3 {
    transform: translateY(-4px);
}

@media (max-width: 900px) {
    .services { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .services { grid-template-columns: 1fr; }
    .service { aspect-ratio: 16 / 10; }
    .service__overlay ul { max-height: 320px; opacity: 1; }
    .service::before { background: linear-gradient(180deg, rgba(58,42,44,0.4) 0%, rgba(104,70,74,0.9) 100%); }
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
    gap: 1rem;
}
.gallery__item {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.4s;
    background: var(--silver);
}
.gallery__item:nth-child(1) { background: linear-gradient(135deg, var(--mauve), var(--mauve-deep)); }
.gallery__item:nth-child(2) { background: linear-gradient(135deg, var(--sage), var(--mauve)); }
.gallery__item:nth-child(3) { background: linear-gradient(135deg, var(--silver), var(--mauve)); }
.gallery__item:nth-child(4) { background: linear-gradient(135deg, var(--mauve-deep), var(--silver)); }
.gallery__item:nth-child(5) { background: linear-gradient(135deg, var(--sage), var(--silver)); }
.gallery__item:nth-child(6) { background: linear-gradient(135deg, var(--mauve), var(--sage)); }

.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

.gallery__item::after {
    content: attr(data-label);
    position: absolute;
    bottom: 1.25rem;
    left: 1.5rem;
    color: var(--white);
    font-family: var(--serif);
    font-size: 1.4rem;
    font-style: italic;
    text-shadow: 0 1px 12px rgba(0,0,0,0.4);
    letter-spacing: 0.03em;
}
.gallery__item:hover { transform: translateY(-4px); }

.gallery__note {
    text-align: center;
    color: var(--muted);
    margin-top: 2rem;
    font-style: italic;
    font-family: var(--serif);
    font-size: 1.1rem;
}

@media (max-width: 720px) {
    .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
    .gallery__item--wide { grid-column: span 2; }
    .gallery__item--tall { grid-row: span 1; }
}

/* About */
.about {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}
.about__portrait {
    aspect-ratio: 4 / 5;
    border-radius: 280px 280px 8px 8px;
    background: linear-gradient(160deg, var(--mauve) 0%, var(--mauve-deep) 100%);
    box-shadow: 0 30px 60px -30px rgba(104, 70, 74, 0.5);
}
.about__body p { font-size: 1.05rem; color: var(--ink); }
.about__body h2 { text-align: left; }

.team {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}
.team__card { text-align: center; }
.team__photo {
    width: 180px;
    height: 180px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--mauve), var(--mauve-deep));
}
.team__card:nth-child(2) .team__photo { background: linear-gradient(135deg, var(--sage), var(--mauve)); }
.team__card:nth-child(3) .team__photo { background: linear-gradient(135deg, var(--silver), var(--mauve-deep)); }
.team__card h3 { margin-bottom: 0.25rem; }
.team__card p { color: var(--muted); font-size: 0.9rem; letter-spacing: 0.05em; }

@media (max-width: 800px) {
    .about { grid-template-columns: 1fr; gap: 2rem; }
    .team { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* Careers */
.careers {
    background: var(--mauve);
    color: var(--white);
    padding: 6rem clamp(1.5rem, 6vw, 5rem);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.careers::before {
    content: "";
    position: absolute;
    top: -100px; right: -100px;
    width: 360px; height: 360px;
    border-radius: 50%;
    background: var(--mauve-deep);
    filter: blur(80px);
    opacity: 0.5;
    pointer-events: none;
}
.careers::after {
    content: "";
    position: absolute;
    bottom: -120px; left: -120px;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: var(--silver);
    filter: blur(80px);
    opacity: 0.25;
    pointer-events: none;
}
.careers__inner {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: 0 auto;
}
.careers h2 { color: var(--white); }
.careers__lead {
    font-family: var(--serif);
    font-size: clamp(1.1rem, 1.6vw, 1.3rem);
    font-style: italic;
    color: var(--silver);
    margin: 1.5rem auto 2.5rem;
    line-height: 1.7;
}
.eyebrow--light { color: var(--silver); }
.section__divider--light { background: var(--silver); opacity: 0.6; }

/* Visit */
.visit {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
}
.visit__info { display: flex; flex-direction: column; gap: 2.5rem; }
.info-block h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--mauve);
    margin-bottom: 0.85rem;
    font-family: var(--sans);
    font-weight: 500;
}
.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--mauve);
    text-decoration: none;
    transition: color 0.2s;
}
.social-link:hover { color: var(--mauve-deep); }
.social-link span { border-bottom: 1px solid currentColor; padding-bottom: 1px; }
.socials { display: flex; gap: 1.1rem; align-items: center; }

.hours { list-style: none; padding: 0; margin: 0 0 0.5rem; }
.hours li {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(104, 70, 74, 0.15);
    font-size: 0.95rem;
}
.hours li:last-child { border-bottom: none; }
.hours span:first-child { color: var(--mauve-deep); }
.hours span:last-child { color: var(--muted); }

.visit__map {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 30px 60px -30px rgba(104, 70, 74, 0.4);
    min-height: 480px;
}
.visit__map iframe {
    width: 100%;
    height: 100%;
    min-height: 480px;
    border: 0;
}

@media (max-width: 800px) {
    .visit { grid-template-columns: 1fr; }
}

/* Footer */
.footer {
    text-align: center;
    padding: 3.5rem 1.5rem 2.5rem;
    background: var(--mauve-deep);
    color: var(--cream);
}
.footer__logo {
    width: 60px;
    height: auto;
    margin: 0 auto 1.25rem;
    opacity: 0.85;
}
.footer p { margin: 0.25rem 0; font-size: 0.85rem; letter-spacing: 0.05em; }
.footer__rating { margin: 0 0 1rem !important; }
.footer__rating a {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--cream);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    opacity: 0.9;
    transition: opacity 0.2s;
}
.footer__rating a:hover { opacity: 1; }
.footer__rating .stars {
    color: #f5c451;
    letter-spacing: 0.08em;
    font-size: 0.95rem;
}
.footer__rating .rating-text { border-bottom: 1px solid rgba(243,238,234,0.4); padding-bottom: 1px; }

.footer__social {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin: 0 0 1.25rem !important;
}
.footer__social a {
    color: var(--cream);
    opacity: 0.85;
    transition: opacity 0.2s, transform 0.2s;
    display: inline-flex;
}
.footer__social a:hover { opacity: 1; transform: translateY(-2px); }
.footer .muted { color: rgba(243, 238, 234, 0.55); font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase; }
