:root {
    --bg-color: #f9f6f1; 
    --bg-tonal: #e8e6e2;     
    --accent: #1e1e1e;        
    --gold-mute: #b4975a;     
    --font-main: 'Cormorant Garamond', serif;
    --font-sub: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--accent);
    font-family: var(--font-sub);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100% !important;
}

.hero {
    display: flex;
    min-height: 100vh;
    align-items: stretch;
}

.hero-text {
    flex: 1;
    padding: 15% 8% 5% 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
}

.hero-image {
    flex: 1;
    background: url('https://images.unsplash.com/photo-1574096079513-d8259312b785?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
}

.experience-section {
    padding: 120px 8% 100px 8%;
    background-color: var(--bg-tonal);
    scroll-margin-top: 80px !important;
}

.container {
    max-width: 80%;
    margin: 0 auto;
}

.experience-header {
    margin-bottom: 80px;
    max-width: 600px;
}

.sub-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold-mute);
    display: block;
    margin-bottom: 1rem;
}

.experience-header h2 {
    font-family: var(--font-main);
    font-size: 3.2rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.section-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 300;
    opacity: 0.8;
}

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

.experience-item {
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease;
}

.item-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.count {
    font-family: var(--font-main);
    font-size: 1.6rem;
    color: var(--gold-mute);
}

.line {
    flex-grow: 1;
    border: none;
    border-top: 1px solid rgba(30, 30, 30, 0.15);
}

.item-body h3 {
    font-family: var(--font-main);
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.item-body p {
    font-size: 0.95rem;
    line-height: 1.8;
    font-weight: 300;
    color: rgba(30, 30, 30, 0.85);
}

.aesthetic-section {
    padding: 120px 0;
    background-color: var(--bg-color);
    scroll-margin-top: 80px;
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-header h2 {
    font-family: var(--font-main);
    font-size: 3.2rem;
    font-weight: 300;
}

.gallery-grid {
    max-width: 80%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    background-color: #eee;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.item-overlay span {
    color: white;
    font-family: var(--font-sub);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-bottom: 1px solid white;
    padding-bottom: 5px;
}

.gallery-item:hover .item-overlay {
    opacity: 1;
}

.process-section {
    padding: 120px 8%;
    background-color: var(--bg-tonal);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    scroll-margin-top: 80px;
}

.process-intro {
    text-align: center;
    margin-bottom: 100px;
}

.process-intro h2 {
    font-family: var(--font-main);
    font-size: 3.2rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 80px;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.step:nth-child(even) {
    flex-direction: row-reverse;
    text-align: right;
}

.step-number {
    font-family: var(--font-main);
    font-size: 4rem;
    line-height: 1;
    font-weight: 300;
    color: var(--gold-mute);
    opacity: 0.4;
    flex-shrink: 0;
}

.step-content {
    padding-top: 1rem;
}

.step-content h3 {
    font-family: var(--font-main);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.step-content p {
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 300;
    max-width: 500px;
}

.step:nth-child(even) .step-content p {
    margin-left: auto;
}

.testimonials-section {
    padding: 120px 0;
    background-color: var(--bg-white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonials-container {
    max-width: 80%;
    margin: 0 auto;
    text-align: center;
}

.testimonials-header {
    margin-bottom: 80px;
}

.testimonials-header h2 {
    font-family: var(--font-main);
    font-size: 3.5rem;
    font-weight: 300;
    margin-top: 1rem;
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    align-items: start;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.quote-text {
    font-family: var(--font-main);
    font-size: 1.4rem;
    line-height: 1.6;
    font-style: italic;
    color: var(--accent);
    margin-bottom: 2.5rem;
    position: relative;
    font-weight: 300;
}

.quote-text::before {
    content: '“';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    color: var(--gold-mute);
    opacity: 0.2;
}

.quote-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.author-name {
    font-family: var(--font-sub);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
}

.event-location {
    font-family: var(--font-sub);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-mute);
}

.cta-final {
    padding: 160px 8%;
    background-color: #111111;
    color: #ffffff;
    text-align: center;
    scroll-margin-top: 80px;
}

.cta-content h2 {
    font-family: var(--font-main);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.cta-content h2 em {
    color: var(--gold-mute);
    font-style: italic;
}

.cta-content p {
    font-family: var(--font-sub);
    font-weight: 200;
    letter-spacing: 1px;
    margin-bottom: 3rem;
    opacity: 0.7;
}

.footer-minimal {
    background-color: #0a0a0a;
    padding: 60px 8% 30px 8%;
    color: #555;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

.logo-small {
    font-family: var(--font-main);
    font-size: 2.2rem;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.logo-small span { color: var(--gold-mute); }

.footer-col h4 {
    color: #fff;
    font-family: var(--font-sub);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.footer-list {
    list-style: none;
    padding: 0;
}

.footer-list li {
    margin-bottom: 0.8rem;
}

.footer-list a {
    color: #777;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
    font-weight: 300;
}

.footer-list a:hover {
    color: var(--gold-mute);
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #777;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-links a:hover { color: var(--gold-mute); }

.footer-bottom {
    text-align: center;
    font-size: 0.8rem;
    letter-spacing: 1px;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
}

.footer-bottom a {
    color: var(--gold-mute);
    text-decoration: none;
    font-weight: 300;
    position: relative;
    display: inline-block;
}

.footer-bottom a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--gold-mute);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

.footer-bottom a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}