/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Space+Grotesk:wght@300;400;500;600&display=swap');

/* ===== VARIABLES ===== */
:root {
    --cream: #f7f3ee;
    --warm-white: #faf8f5;
    --terracotta: #b85c38;
    --terracotta-dark: #8f3f22;
    --terracotta-light: #d4763d;
    --coral: #d4704a;
    --coral-light: #e8906e;
    --coral-dark: #b5512e;
    --dark: #0f0d0b;
    --dark-mid: #1e1a16;
    --mid-brown: #6b4c38;
    --text-body: #3a3028;
    --text-muted: #7a6a5e;
    --border: #e2dbd4;
    --shadow-sm: 0 2px 8px rgba(15, 13, 11, 0.06);
    --shadow-md: 0 8px 32px rgba(15, 13, 11, 0.12);
    --shadow-lg: 0 24px 64px rgba(15, 13, 11, 0.2);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    color: var(--text-body);
    background: var(--warm-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.25s ease;
}

ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 400;
    line-height: 1.1;
    color: var(--dark);
}

h1 { font-size: clamp(3rem, 8vw, 6.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: 1.1rem; font-weight: 600; font-family: 'Space Grotesk', sans-serif; letter-spacing: 0.08em; text-transform: uppercase; }

p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-body);
}

.label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--terracotta);
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.container--narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--coral);
    color: white;
}
.btn-primary:hover {
    background: var(--coral-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(212, 112, 74, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--dark);
    border: 1.5px solid var(--dark);
}
.btn-outline:hover {
    background: var(--dark);
    color: white;
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
    background: white;
    color: var(--dark);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 2rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(250, 248, 245, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.25rem 2.5rem;
    box-shadow: var(--shadow-sm);
}

.logo a {
    font-family: 'Fraunces', serif;
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: white;
    transition: color 0.4s ease;
}

.navbar.scrolled .logo a {
    color: var(--dark);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-menu a {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
}

.navbar.scrolled .nav-menu a {
    color: var(--text-body);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--coral);
}

.navbar.scrolled .nav-menu a:hover,
.navbar.scrolled .nav-menu a.active {
    color: var(--coral);
}

.nav-book {
    background: var(--terracotta) !important;
    color: white !important;
    padding: 0.65rem 1.5rem;
    font-size: 0.78rem;
}
.nav-book:hover {
    background: var(--terracotta-dark) !important;
    color: white !important;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__slides {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: top center;
    opacity: 0;
    transition: opacity 1.5s ease;
    transform: scale(1.08);
}

.hero__slide.active {
    opacity: 1;
    animation: kenburns 9s ease-out forwards;
}

@keyframes kenburns {
    from { transform: scale(1.08); }
    to   { transform: scale(1.0); }
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 8, 6, 0.65) 0%,
        rgba(10, 8, 6, 0.55) 40%,
        rgba(10, 8, 6, 0.8) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 2rem;
    max-width: 900px;
}

.hero__eyebrow {
    color: var(--coral-light);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.hero__title {
    color: white;
    font-size: clamp(3.5rem, 9vw, 7.5rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 0.95;
    margin-bottom: 2rem;
}

.hero__title em {
    font-style: italic;
}

.hero__sub {
    color: rgba(255,255,255,0.82);
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 3rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
}

.hero__cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero__scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.6);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-family: 'Space Grotesk', sans-serif;
    animation: scrollBounce 2s ease-in-out infinite;
}

.hero__scroll::after {
    content: '';
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.4);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== INTRO STRIP ===== */
.intro-strip {
    background: var(--dark);
    padding: 5rem 0;
}

.intro-strip__inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.intro-strip h2 {
    color: white;
    font-size: clamp(2rem, 4vw, 3rem);
    font-style: italic;
}

.intro-strip p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* ===== FEATURED WORK ===== */
.featured {
    padding: 8rem 0;
    background: var(--warm-white);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3.5rem;
}

.section-header h2 { margin: 0; }

.section-header a {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--terracotta);
    border-bottom: 1px solid var(--terracotta);
    padding-bottom: 2px;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-template-rows: 480px;
    gap: 1.25rem;
}

.featured-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.featured-item:first-child {
    grid-row: span 1;
}

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

.featured-item:hover img {
    transform: scale(1.05);
}

.featured-item__label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
    color: white;
    font-family: 'Fraunces', serif;
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    transform: translateY(4px);
    opacity: 0;
    transition: all 0.3s ease;
}

.featured-item:hover .featured-item__label {
    transform: translateY(0);
    opacity: 1;
}

/* ===== SPLIT SECTION ===== */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.split--reverse {
    direction: rtl;
}
.split--reverse > * {
    direction: ltr;
}

.split__image {
    position: relative;
    overflow: hidden;
}

.split__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split__content {
    padding: 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--cream);
}

.split__content .label {
    margin-bottom: 1.5rem;
}

.split__content h2 {
    margin-bottom: 2rem;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
}

.split__content p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

.split__content .btn {
    align-self: flex-start;
    margin-top: 1rem;
}

/* ===== CATEGORIES ===== */
.categories {
    padding: 8rem 0;
    background: var(--warm-white);
}

.categories h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.cat-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
}

.cat-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: grayscale(20%);
}

.cat-item:hover img {
    transform: scale(1.06);
    filter: grayscale(0%);
}

.cat-item__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
}

.cat-item__title {
    color: white;
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    transform: translateY(8px);
    transition: transform 0.3s ease;
}

.cat-item:hover .cat-item__title {
    transform: translateY(0);
}

.cat-item__link {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--terracotta-light);
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.3s ease 0.05s;
}

.cat-item:hover .cat-item__link {
    opacity: 1;
    transform: translateY(0);
}

/* ===== TESTIMONIAL ===== */
.testimonial {
    padding: 8rem 0;
    background: var(--dark);
}

.testimonial__header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonial__header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    margin-top: 0.75rem;
}

.label--light {
    color: var(--terracotta-light);
    border-color: rgba(255,255,255,0.15);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
}

.testimonial-card__quote {
    font-family: 'Fraunces', serif;
    font-size: 1.05rem;
    font-weight: 300;
    font-style: italic;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin: 0;
}

.testimonial-card__quote::before {
    content: '\201C';
    font-size: 3rem;
    line-height: 0;
    vertical-align: -0.6rem;
    color: var(--terracotta);
    margin-right: 0.15rem;
    font-style: normal;
}

.testimonial-card__footer {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1.25rem;
}

.testimonial-card__footer strong {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
}

.testimonial-card__footer span {
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
}

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

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 7rem 0;
    text-align: center;
    background: var(--cream);
}

.cta-section h2 {
    margin-bottom: 1.5rem;
    font-size: clamp(2.5rem, 5vw, 4rem);
}

.cta-section p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== PORTFOLIO PAGE ===== */
.page-hero {
    padding: 12rem 2.5rem 5rem;
    background: var(--warm-white);
    text-align: center;
}

.page-hero .label {
    display: block;
    margin-bottom: 1.5rem;
}

.page-hero h1 {
    margin-bottom: 1.5rem;
}

.page-hero p {
    color: var(--text-muted);
    max-width: 540px;
    margin: 0 auto;
}

.filter-bar {
    display: flex;
    justify-content: center;
    gap: 0;
    padding: 3rem 2.5rem;
    background: var(--warm-white);
    position: sticky;
    top: 64px;
    z-index: 50;
    border-bottom: 1px solid var(--border);
}

.filter-btn {
    padding: 0.65rem 1.75rem;
    background: transparent;
    border: none;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
}

.filter-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--terracotta);
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.filter-btn:hover {
    color: var(--dark);
}

.filter-btn.active {
    color: var(--dark);
}

.filter-btn.active::after {
    transform: scaleX(1);
}

/* Masonry Gallery */
.masonry {
    padding: 3rem 2.5rem 6rem;
    columns: 3;
    column-gap: 1.25rem;
    max-width: 1400px;
    margin: 0 auto;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 1.25rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: none;
}

.masonry-item.active {
    display: block;
}

.masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.masonry-item:hover img {
    transform: scale(1.03);
}

.masonry-item__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 8, 6, 0.55);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.masonry-item:hover .masonry-item__overlay {
    opacity: 1;
}

.masonry-item__cat {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: white;
}

/* ===== ABOUT PAGE ===== */
.about-intro {
    background: var(--cream);
    padding: 8rem 2rem 6rem;
}

.about-intro__content {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.about-intro__header {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.about-avatar-wrap {
    width: 200px;
    height: 260px;
    border-radius: 0;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--coral-light);
}

.about-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
}

.about-intro__content .label {
    margin-bottom: 2rem;
}

.about-intro__content h1 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 0;
}

.about-intro__content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.85;
}

.about-values {
    padding: 8rem 0;
    background: var(--warm-white);
}

.about-values h2 {
    margin-bottom: 4rem;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.value-item {
    position: relative;
    overflow: hidden;
    background: var(--dark);
    box-shadow: var(--shadow-md);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.value-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.value-item__photo {
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.value-item__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.value-item:hover .value-item__photo img {
    transform: scale(1.06);
}

.value-item__body {
    padding: 1.75rem;
    border-top: 2px solid var(--terracotta);
}

.value-item__body h4 {
    color: var(--cream);
    font-family: 'Fraunces', serif;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0.6rem;
    letter-spacing: 0;
}

.value-item__body p {
    color: rgba(247,243,238,0.6);
    font-size: 0.88rem;
    line-height: 1.7;
    margin: 0;
}

/* About Hero Split */
.about-hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 90vh;
    background: var(--cream);
}

.about-hero-split__photo {
    position: relative;
    overflow: hidden;
}

.about-hero-split__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
    display: block;
}

.about-hero-split__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 4rem 6rem 5rem;
}

.about-hero-split__text .label {
    margin-bottom: 1.5rem;
}

.about-hero-split__text h1 {
    font-size: clamp(2.8rem, 4.5vw, 4.5rem);
    margin-bottom: 2rem;
    line-height: 1.1;
}

.about-hero-split__text p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 1.25rem;
}

/* About Work Types Grid */
.about-work-types {
    padding: 8rem 0 0;
    background: var(--warm-white);
}

.about-work-types h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.work-type-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.work-type-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.work-type-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.work-type-item:hover img {
    transform: scale(1.07);
}

.work-type-item__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,8,6,0.75) 0%, rgba(10,8,6,0) 60%);
    display: flex;
    align-items: flex-end;
    padding: 1.75rem;
    transition: background 0.4s ease;
}

.work-type-item:hover .work-type-item__overlay {
    background: linear-gradient(to top, rgba(10,8,6,0.85) 0%, rgba(10,8,6,0.1) 70%);
}

.work-type-item__overlay span {
    color: white;
    font-family: 'Fraunces', serif;
    font-size: 1.15rem;
    font-weight: 300;
    letter-spacing: 0.02em;
}

/* About Principles — Editorial Layout */
.about-principles {
    padding: 8rem 0;
    background: var(--cream);
}

.about-principles .label {
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.principles-editorial {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.prin-item {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 1.5rem;
    padding: 2.5rem 2rem 2.5rem 0;
    border-bottom: 1px solid var(--border);
    align-items: start;
}

.prin-item:nth-child(odd) {
    padding-right: 3rem;
    border-right: 1px solid var(--border);
}

.prin-item:nth-child(even) {
    padding-left: 3rem;
    padding-right: 0;
}

.prin-item:nth-last-child(-n+2) {
    border-bottom: none;
}

.prin-item__num {
    font-family: 'Fraunces', serif;
    font-size: 2.8rem;
    font-weight: 300;
    font-style: italic;
    color: var(--coral-light);
    line-height: 1;
    opacity: 0.6;
    padding-top: 0.2rem;
}

.prin-item__body h4 {
    font-family: 'Fraunces', serif;
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 0.5rem;
    letter-spacing: 0;
}

.prin-item__body p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.75;
    margin: 0;
}

/* About photo break */
.about-photo-break {
    position: relative;
    height: 55vh;
    overflow: hidden;
}

.about-photo-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.about-photo-break__caption {
    position: absolute;
    bottom: 2rem;
    right: 2.5rem;
    color: rgba(255,255,255,0.6);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.stats-section {
    padding: 6rem 0;
    background: var(--dark);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat h3 {
    font-family: 'Fraunces', serif;
    font-size: 4rem;
    font-weight: 300;
    color: white;
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

/* ===== SERVICES PAGE ===== */

/* Floating orb animation */
@keyframes orb-float {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.45; }
    33% { transform: translate(30px, -40px) scale(1.08); opacity: 0.55; }
    66% { transform: translate(-20px, 20px) scale(0.95); opacity: 0.4; }
}

@keyframes price-in {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

.services-intro {
    padding: 12rem 2.5rem 6rem;
    text-align: center;
    background: var(--warm-white);
    position: relative;
    overflow: hidden;
}

.services-intro::before,
.services-intro::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    animation: orb-float 12s ease-in-out infinite;
}

.services-intro::before {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(184,92,56,0.12) 0%, transparent 70%);
    top: -80px;
    right: 10%;
}

.services-intro::after {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(212,112,74,0.08) 0%, transparent 70%);
    bottom: -60px;
    left: 8%;
    animation-delay: -6s;
}

/* Price number entrance animation */
.service-card.fade-in.visible .price {
    animation: price-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.15s;
}

/* Tier price hover highlight */
.service-tier {
    transition: background 0.2s ease;
}

.service-tier:hover {
    background: rgba(184,92,56,0.04);
}

.service-tier:hover .service-tier__price {
    color: var(--terracotta-dark);
}

.service-tier__badge {
    margin-left: auto;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--terracotta);
    background: rgba(184,92,56,0.1);
    border: 1px solid rgba(184,92,56,0.25);
    padding: 0.2rem 0.55rem;
    border-radius: 100px;
    white-space: nowrap;
    flex-shrink: 0;
}

.service-card.featured .service-tier__badge {
    color: var(--coral-light);
    background: rgba(212,112,74,0.15);
    border-color: rgba(212,112,74,0.3);
}

/* Subtle card lift on hover */
.service-card:not(.featured) {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:not(.featured):hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.services-intro .label {
    display: block;
    margin-bottom: 1.5rem;
}

.services-intro h1 {
    margin-bottom: 2rem;
}

.services-intro p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 0 2.5rem 8rem;
    max-width: 1280px;
    margin: 0 auto;
}

.service-card {
    padding: 3.5rem;
    border: 1px solid var(--border);
    margin: -1px -1px 0 0;
    position: relative;
    background: white;
    transition: all 0.3s ease;
}

.service-card:hover {
    z-index: 2;
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-card.featured {
    background: var(--dark);
    border-color: var(--dark);
}

.service-card.featured h3,
.service-card.featured .service-description,
.service-card.featured li {
    color: rgba(255,255,255,0.85);
}

.service-card.featured .price {
    color: var(--terracotta-light);
}

.service-card.featured .btn {
    border-color: rgba(255,255,255,0.4);
    color: white;
}

.service-card.featured .btn:hover {
    background: white;
    color: var(--dark);
}

.service-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.service-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.price {
    font-family: 'Fraunces', serif;
    font-size: 2.5rem;
    color: var(--terracotta);
    font-weight: 300;
    margin-bottom: 2rem;
    display: block;
}

.service-features {
    margin-bottom: 2.5rem;
}

.service-features li {
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-features li::before {
    content: '';
    width: 16px;
    height: 1px;
    background: var(--terracotta);
    flex-shrink: 0;
}

.whats-included {
    padding: 6rem 0;
    background: var(--cream);
}

.whats-included h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 0 2.5rem;
    max-width: 1280px;
    margin: 0 auto;
}

.included-item {
    text-align: center;
    padding: 2rem;
}

.included-item h4 {
    color: var(--dark);
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
}

.included-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

.faq-section {
    padding: 6rem 0;
    background: var(--warm-white);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-item {
    padding: 2rem 0;
    border-bottom: 1px solid var(--border);
    max-width: 800px;
    margin: 0 auto;
}

.faq-item h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.75rem;
    letter-spacing: 0;
    text-transform: none;
}

.faq-item p {
    color: var(--text-muted);
}

/* ===== GROUPS PAGE ===== */
.groups-hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.groups-hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('./images/Copy%20of%20torreypinesjanuary2026-045.jpg');
    background-size: cover;
    background-position: center 30%;
}

.groups-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,8,6,0.8) 0%, rgba(10,8,6,0.5) 100%);
}

.groups-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
}

.groups-hero__content h1 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: clamp(3rem, 7vw, 6rem);
}

.groups-hero__content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.65;
}

.why-us,
.packages,
.how-it-works {
    padding: 8rem 0;
}

.why-us {
    background: var(--warm-white);
}

.why-us h2,
.packages h2,
.how-it-works h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.why-item {
    padding: 2.5rem;
    background: white;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s ease;
    border-top: 3px solid var(--terracotta);
}

.why-item:hover {
    box-shadow: var(--shadow-md);
}

.why-item h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.75rem;
    letter-spacing: 0;
}

.why-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.what-we-shoot {
    padding: 8rem 0;
    background: var(--cream);
}

.what-we-shoot h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.shoot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.shoot-item {
    padding: 2.5rem;
    text-align: center;
}

.shoot-item h4 {
    color: var(--terracotta);
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
}

.shoot-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
}

.packages {
    background: var(--dark);
}

.packages h2 {
    color: white;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.package-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 3rem;
    transition: all 0.3s ease;
    position: relative;
}

.package-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
}

.package-card.featured {
    background: var(--terracotta);
    border-color: var(--terracotta);
}

.badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: white;
    background: rgba(255,255,255,0.2);
    padding: 0.4rem 1rem;
    margin-bottom: 1.5rem;
}

.package-card h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.package-duration {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: block;
}

.package-card .price {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.package-features {
    margin-bottom: 2.5rem;
}

.package-features li {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.package-features li::before {
    content: '';
    width: 16px;
    height: 1px;
    background: rgba(255,255,255,0.5);
    flex-shrink: 0;
}

.package-note {
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
}

.package-note strong {
    color: white;
}

.how-it-works {
    background: var(--cream);
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 2.5rem;
    left: 5%;
    right: 5%;
    height: 1px;
    background: var(--border);
    z-index: 0;
}

.step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--terracotta);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-family: 'Fraunces', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--terracotta);
}

.step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.step p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.65;
    margin: 0;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    padding: 8rem 0;
    background: var(--warm-white);
}

.calendly-wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem 2rem;
    border-bottom: 1px solid var(--border);
}

.contact-intro {
    text-align: center;
    padding: 12rem 2.5rem 4rem;
    background: var(--dark);
}

.contact-intro .label {
    color: var(--terracotta-light);
    display: block;
    margin-bottom: 1.5rem;
}

.contact-intro h1 {
    color: white;
    margin-bottom: 1.5rem;
}

.contact-intro p {
    color: rgba(255,255,255,0.65);
    max-width: 480px;
    margin: 0 auto;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 6rem;
    padding: 6rem 2.5rem;
    max-width: 1280px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-body);
    margin-bottom: 0.75rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem 1.25rem;
    background: white;
    border: 1px solid var(--border);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    color: var(--text-body);
    transition: border-color 0.25s ease;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--terracotta);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-info {
    padding-top: 1rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
}

.contact-method {
    padding: 1.75rem 0;
    border-bottom: 1px solid var(--border);
}

.contact-method:first-of-type {
    border-top: 1px solid var(--border);
}

.contact-method h4 {
    color: var(--text-muted);
    font-size: 0.72rem;
    margin-bottom: 0.5rem;
}

.contact-method p,
.contact-method a {
    font-size: 1rem;
    color: var(--dark);
}

.contact-method a:hover {
    color: var(--terracotta);
}

.next-steps {
    margin-top: 3rem;
}

.next-steps h4 {
    color: var(--text-muted);
    font-size: 0.72rem;
    margin-bottom: 1.25rem;
}

.next-steps ol {
    padding-left: 0;
    list-style: none;
    counter-reset: steps;
}

.next-steps li {
    counter-increment: steps;
    position: relative;
    padding: 0.75rem 0 0.75rem 2.5rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
    color: var(--text-muted);
}

.next-steps li::before {
    content: counter(steps);
    position: absolute;
    left: 0;
    top: 0.75rem;
    font-family: 'Fraunces', serif;
    font-size: 1.1rem;
    color: var(--terracotta);
    font-weight: 400;
}

/* ===== FOOTER ===== */
/* ===== FOOTER — REDESIGNED ===== */
.footer {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    display: block;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--terracotta) 30%, var(--coral-light) 60%, transparent 100%);
}

.footer-wordmark {
    padding: 4rem 0 0;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding-bottom: 4rem;
    margin-bottom: 0;
}

.footer-wordmark h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    font-weight: 300;
    font-style: italic;
    color: rgba(247,243,238,0.12);
    letter-spacing: -0.02em;
    line-height: 1;
    margin: 0;
    user-select: none;
    pointer-events: none;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 3rem;
    padding: 4rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    margin-bottom: 0;
}

.footer-brand .footer-logo {
    font-family: 'Fraunces', serif;
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 1rem;
    display: block;
}

.footer-brand p {
    color: rgba(255,255,255,0.4);
    font-size: 0.88rem;
    line-height: 1.75;
    margin: 0 0 2rem;
    max-width: 240px;
}

.footer-social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.55);
    transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.footer-social a:hover {
    border-color: var(--coral-light);
    color: var(--coral-light);
    background: rgba(212,112,74,0.08);
}

.footer-col h5 {
    color: rgba(255,255,255,0.3);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.85rem;
}

.footer-col a {
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    transition: color 0.2s ease;
    text-decoration: none;
}

.footer-col a:hover {
    color: white;
}

.footer-col a.footer-cta-link {
    display: inline-block;
    color: var(--coral-light);
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 1rem;
    margin-top: 0.5rem;
}

.footer-col a.footer-cta-link:hover {
    color: var(--cream);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.75rem 0;
    color: rgba(255,255,255,0.2);
    font-size: 0.78rem;
}

.footer-bottom a {
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom a:hover {
    color: rgba(255,255,255,0.65);
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ===== MOBILE NAV ===== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
    z-index: 200;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
    transform-origin: center;
}

.navbar.scrolled .hamburger span {
    background: var(--dark);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 150;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.open {
    display: flex;
    opacity: 1;
}

.nav-overlay a {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 8vw, 3.5rem);
    font-weight: 300;
    color: white;
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
}

.nav-overlay a:hover {
    color: var(--terracotta-light);
}

.nav-overlay .nav-overlay__book {
    margin-top: 1rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--terracotta-light);
    border-bottom: 1px solid var(--terracotta-light);
    padding-bottom: 3px;
}

.nav-overlay__close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
    transition: color 0.2s ease;
}
.nav-overlay__close:hover { color: white; }

/* ===== LIGHTBOX ===== */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 300;
    background: rgba(0, 0, 0, 0.94);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.open {
    display: flex;
    opacity: 1;
}

.lightbox__img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}

.lightbox__close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 2.5rem;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
    transition: color 0.2s ease;
    z-index: 301;
}
.lightbox__close:hover { color: white; }

.lightbox__prev,
.lightbox__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 1rem 1.25rem;
    cursor: pointer;
    transition: background 0.2s ease;
    z-index: 301;
}
.lightbox__prev { left: 1.5rem; }
.lightbox__next { right: 1.5rem; }
.lightbox__prev:hover,
.lightbox__next:hover { background: rgba(255,255,255,0.2); }

/* ===== FORM STATES ===== */
.form-success,
.form-error {
    display: none;
    padding: 1.25rem 1.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-top: 0.5rem;
}

.form-success {
    background: #e8f5e9;
    color: #2e7d32;
    border-left: 3px solid #4caf50;
}

.form-error {
    background: #fbe9e7;
    color: #c62828;
    border-left: 3px solid #e53935;
}

.form-success.visible,
.form-error.visible {
    display: block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .featured-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }

    .featured-item:first-child {
        grid-column: span 2;
    }

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

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

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

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

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

    .why-grid,
    .shoot-grid,
    .packages-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-grid--4 {
        grid-template-columns: 1fr 1fr;
    }

    .outing-types-grid {
        grid-template-columns: 1fr 1fr;
    }

    .outing-type-card__img {
        height: 320px;
    }

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

    .steps::before { display: none; }

    .masonry { columns: 2; }

    .split__content {
        padding: 4rem;
    }

    .intro-strip__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1.5rem;
    }

    .nav-menu {
        display: none !important;
    }

    .hamburger {
        display: flex;
    }

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

    .split--reverse {
        direction: ltr;
    }

    .split__image {
        height: 350px;
    }

    .split__content {
        padding: 3rem 2rem;
    }

    .about-intro {
        padding: 6rem 1.5rem 4rem;
    }

    .about-intro__header {
        gap: 1.5rem;
    }

    .about-avatar-wrap {
        width: 130px;
        height: 170px;
    }

    .about-intro__content {
        padding: 0;
    }

    .experience-list {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
        padding: 0 1.5rem 4rem;
    }

    .why-grid,
    .shoot-grid,
    .why-grid--4 {
        grid-template-columns: 1fr;
    }

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

    .outing-types-grid {
        grid-template-columns: 1fr;
    }

    .outing-type-card__img {
        height: 260px;
    }

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

    .masonry {
        columns: 2;
        padding: 2rem 1.5rem;
    }

    .featured-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .featured-item:first-child {
        grid-column: span 1;
    }

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

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

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

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

    .principles-editorial {
        grid-template-columns: 1fr;
    }

    .prin-item:nth-child(odd) {
        border-right: none;
        padding-right: 0;
    }

    .prin-item:nth-child(even) {
        padding-left: 0;
    }

    .prin-item:nth-last-child(-n+2) {
        border-bottom: 1px solid var(--border);
    }

    .prin-item:last-child {
        border-bottom: none;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .about-hero-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .about-hero-split__photo {
        height: 60vw;
        min-height: 280px;
        max-height: 480px;
    }

    .about-hero-split__text {
        padding: 3.5rem 2rem;
    }

    .work-type-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-photo-break {
        height: 40vw;
        min-height: 200px;
    }

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

    .contact-layout {
        padding: 4rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .container,
    .container--narrow {
        padding: 0 1.25rem;
    }

    .masonry {
        columns: 1;
    }

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

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

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

    .work-type-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.8rem; }
}

/* ===== THANK YOU PAGE ===== */
.thankyou-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 12rem 2rem 6rem;
    background: var(--cream);
    text-align: center;
}

.thankyou-section .label { margin-bottom: 1.5rem; display: block; }

.thankyou-section h1 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    margin-bottom: 1.5rem;
}

.thankyou-section__sub {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 520px;
    margin: 0 auto 2.5rem;
}

.thankyou-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.thankyou-details {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

.thankyou-detail {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    text-align: center;
}

.thankyou-detail strong {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--terracotta);
    font-weight: 600;
}

.thankyou-detail span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.thankyou-detail a { color: var(--terracotta); text-decoration: none; }
.thankyou-detail a:hover { text-decoration: underline; }

/* ===== FLOATING BOOK BUTTON ===== */
#floating-book-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.75rem 1.4rem 0.75rem 1.1rem;
    background: var(--dark);
    color: var(--warm-white);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-decoration: none;
    border-radius: 100px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.22);
    z-index: 999;
    transform: translateY(120%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1), opacity 0.4s ease, background 0.2s ease, box-shadow 0.2s ease;
}

#floating-book-btn.visible {
    transform: translateY(0);
    opacity: 1;
}

#floating-book-btn:hover {
    background: var(--terracotta);
    box-shadow: 0 6px 32px rgba(184,92,56,0.35);
    color: #fff;
}

#floating-book-btn svg {
    flex-shrink: 0;
}

/* ===== 10% OFF POPUP ===== */
#discount-overlay {
    position: fixed;
    inset: 0;
    background: rgba(20,18,16,0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

#discount-overlay.visible {
    opacity: 1;
    pointer-events: all;
}

.discount-modal {
    background: var(--warm-white);
    max-width: 460px;
    width: 100%;
    padding: 3rem 2.5rem 2.5rem;
    position: relative;
    text-align: center;
    transform: translateY(24px);
    transition: transform 0.35s ease;
}

#discount-overlay.visible .discount-modal {
    transform: translateY(0);
}

.discount-modal__close {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    padding: 0;
}

.discount-modal__close:hover { color: var(--dark); }

.discount-modal__heading {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 1.25rem;
}

.discount-modal__body {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.discount-modal__body strong {
    color: var(--terracotta);
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 0.06em;
    font-size: 1rem;
}

.discount-modal__expiry {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 1.75rem;
}

.discount-modal__cta {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 0.75rem;
}

.discount-modal__dismiss {
    display: block;
    width: 100%;
    background: none;
    border: none;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.82rem;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.25rem;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.discount-modal__dismiss:hover { color: var(--dark); }

/* ===== RELEASE FORM ===== */
.release-header {
    background: var(--cream);
    padding: 8rem 2rem 5rem;
    text-align: center;
}

.release-header .label {
    margin-bottom: 1.5rem;
}

.release-header h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 1.5rem;
}

.release-header p {
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.75;
}

.release-wrap {
    max-width: 860px;
    margin: 0 auto;
    padding: 3rem 2rem 8rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Agreement — scrollable, less imposing */
.release-agreement {
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.release-agreement__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.75rem;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    user-select: none;
}

.release-agreement__header h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--dark);
    margin: 0;
}

.release-agreement__toggle {
    font-size: 0.78rem;
    color: var(--terracotta);
    font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    white-space: nowrap;
    margin-left: 1rem;
}

.release-agreement__body {
    padding: 2rem 1.75rem;
    max-height: 320px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
}

.release-agreement__body h4 {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin: 1.75rem 0 0.5rem;
    font-weight: 600;
}

.release-agreement__body h4:first-child { margin-top: 0; }

.release-agreement__body p,
.release-agreement__body li {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.75;
    margin-bottom: 0.4rem;
}

.release-agreement__body ul {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}

/* Form */
.release-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.release-form h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--dark);
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 0;
}

.release-form__sub {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: -0.75rem 0 0;
}

.release-form__legal-note {
    color: var(--text-muted);
    font-size: 0.78rem;
    line-height: 1.6;
    margin-top: 0.5rem;
}

/* Custom checkboxes — 2-column compact grid */
.release-checkboxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
}

.release-check {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1rem;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: background 0.2s ease;
}

.release-check:nth-child(even) { border-right: none; }
.release-check:nth-last-child(-n+2) { border-bottom: none; }

.release-check:last-child {
    border-bottom: none;
}

.release-check:hover {
    background: var(--cream);
}

.release-check input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.release-check__box {
    width: 20px;
    height: 20px;
    border: 1.5px solid var(--border);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.release-check input:checked ~ .release-check__box {
    background: var(--terracotta);
    border-color: var(--terracotta);
}

.release-check input:checked ~ .release-check__box::after {
    content: '';
    display: block;
    width: 5px;
    height: 9px;
    border: 1.5px solid white;
    border-top: none;
    border-left: none;
    transform: rotate(45deg) translate(-1px, -1px);
}

.release-check__label {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.release-check__label strong {
    font-size: 0.85rem;
    color: var(--dark);
    font-weight: 500;
    line-height: 1.3;
}

.release-check__label small {
    display: none;
}

/* ===== GROUP PHOTO STRIP ===== */
.group-photo-strip {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    background: var(--dark);
    padding: 0;
}
.group-photo-strip::-webkit-scrollbar { display: none; }

.group-photo-strip__inner {
    display: flex;
    gap: 4px;
    height: 340px;
    min-width: max-content;
}

.strip-photo {
    flex-shrink: 0;
    width: 280px;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.strip-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s ease;
    filter: brightness(0.92) contrast(1.12) saturate(1.2);
}

.strip-photo:hover img {
    transform: scale(1.06);
    filter: brightness(1.05) contrast(1.08) saturate(1.25);
}

/* Auto-scroll animation for the strip */
@keyframes stripScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.group-photo-strip__inner {
    animation: stripScroll 40s linear infinite;
}

.group-photo-strip:hover .group-photo-strip__inner {
    animation-play-state: paused;
}

/* ===== GROUPS SCENE BREAK ===== */
.groups-scene-break {
    position: relative;
    height: 520px;
    overflow: hidden;
}

.groups-scene-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: brightness(0.65);
}

.scene-break__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    text-align: center;
    background: linear-gradient(to bottom, rgba(10,8,6,0.3) 0%, rgba(10,8,6,0.55) 100%);
}

.scene-break__overlay blockquote {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 300;
    font-style: italic;
    color: white;
    max-width: 760px;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.scene-break__overlay cite {
    color: rgba(255,255,255,0.65);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-style: normal;
    font-family: 'Space Grotesk', sans-serif;
}

/* ===== GROUPS PHOTO GRID ===== */
.groups-photo-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    grid-template-rows: 400px;
    gap: 4px;
    background: var(--dark);
}

.groups-photo-grid__item {
    overflow: hidden;
    position: relative;
}

.groups-photo-grid__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s ease;
    filter: brightness(0.9) contrast(1.15) saturate(1.2);
}

.groups-photo-grid__item:hover img {
    transform: scale(1.05);
    filter: brightness(1.05) contrast(1.1) saturate(1.25);
}

/* ===== WHY-GRID 4-COL VARIANT ===== */
.why-grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

/* ===== ENHANCED CARD ANIMATIONS ===== */
.why-item {
    transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.why-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.package-card {
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.package-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

/* ===== GLOBAL ANIMATION ADDITIONS ===== */

/* Slide-in from sides */
.slide-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide-in-left.visible,
.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Slide up (for staggered cards) */
.slide-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Float animation for decorative elements */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.floating {
    animation: float 4s ease-in-out infinite;
}

/* Shimmer on primary button */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -75%;
    width: 50%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.22) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: skewX(-25deg);
    transition: none;
}

.btn-primary:hover::after {
    animation: btnShimmer 0.6s ease forwards;
}

@keyframes btnShimmer {
    0%   { left: -75%; }
    100% { left: 125%; }
}

/* Split image parallax feel */
.split__image img {
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.split:hover .split__image img {
    transform: scale(1.03);
}

/* Step number pulse on hover */
.step:hover .step-number {
    background: var(--terracotta);
    color: white;
    transition: all 0.3s ease;
}

/* Category item improved hover */
.cat-item img {
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cat-item:hover img {
    transform: scale(1.07);
}

/* ===== SPARKLE / BOKEH EFFECT (couples card) ===== */
.sparkle-wrap {
    position: relative;
    overflow: hidden;
}

.sparkle-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 3px 3px at 20% 30%, rgba(255,255,255,0.95) 0%, transparent 100%),
        radial-gradient(ellipse 2px 2px at 70% 20%, rgba(255,220,180,0.9) 0%, transparent 100%),
        radial-gradient(ellipse 4px 4px at 55% 70%, rgba(255,255,255,0.8) 0%, transparent 100%),
        radial-gradient(ellipse 2px 2px at 85% 55%, rgba(255,220,180,0.85) 0%, transparent 100%),
        radial-gradient(ellipse 3px 3px at 35% 80%, rgba(255,255,255,0.7) 0%, transparent 100%),
        radial-gradient(ellipse 2px 2px at 10% 65%, rgba(255,200,150,0.8) 0%, transparent 100%),
        radial-gradient(ellipse 4px 4px at 90% 10%, rgba(255,255,255,0.9) 0%, transparent 100%),
        radial-gradient(ellipse 2px 2px at 45% 45%, rgba(255,220,180,0.75) 0%, transparent 100%);
    z-index: 3;
    animation: sparkleTwinkle 3s ease-in-out infinite alternate;
    pointer-events: none;
}

.sparkle-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 3px 3px at 60% 35%, rgba(255,255,255,0.9) 0%, transparent 100%),
        radial-gradient(ellipse 2px 2px at 25% 55%, rgba(255,220,180,0.85) 0%, transparent 100%),
        radial-gradient(ellipse 3px 3px at 78% 72%, rgba(255,255,255,0.8) 0%, transparent 100%),
        radial-gradient(ellipse 2px 2px at 15% 20%, rgba(255,200,160,0.9) 0%, transparent 100%),
        radial-gradient(ellipse 4px 4px at 50% 88%, rgba(255,255,255,0.7) 0%, transparent 100%),
        radial-gradient(ellipse 2px 2px at 92% 42%, rgba(255,220,180,0.8) 0%, transparent 100%),
        radial-gradient(ellipse 3px 3px at 40% 15%, rgba(255,255,255,0.95) 0%, transparent 100%);
    z-index: 3;
    animation: sparkleTwinkle 4s ease-in-out infinite alternate-reverse;
    pointer-events: none;
}

@keyframes sparkleTwinkle {
    0%   { opacity: 0.3; transform: scale(0.95); }
    50%  { opacity: 0.9; transform: scale(1.02); }
    100% { opacity: 0.5; transform: scale(1); }
}

/* ===== OUTING TYPES VISUAL GRID ===== */
.outing-types {
    padding: 7rem 0 0;
    background: var(--warm-white);
}

.outing-types__sub {
    text-align: center;
    color: var(--text-muted);
    max-width: 520px;
    margin: 1rem auto 4rem;
}

.outing-types h2 {
    text-align: center;
}

.outing-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 0;
}

.outing-type-card {
    position: relative;
    overflow: hidden;
    cursor: default;
}

.outing-type-card__img {
    height: 420px;
    overflow: hidden;
    position: relative;
}

.outing-type-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.75) contrast(1.1) saturate(1.1);
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.5s ease;
}

.outing-type-card:hover .outing-type-card__img img {
    transform: scale(1.06);
    filter: brightness(0.85) contrast(1.08) saturate(1.2);
}

.outing-type-card__body {
    background: var(--dark);
    padding: 2rem 2rem 2.5rem;
    border-top: 2px solid var(--terracotta);
}

.outing-type-card__body h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.outing-type-card__body p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.65;
    margin: 0;
}

/* ===== GOLF PAGE ===== */
.golf-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 5rem;
    overflow: hidden;
    background: var(--dark);
}
.golf-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    transform: scale(1.05);
    transition: transform 8s ease;
}
.golf-hero__bg.loaded { transform: scale(1); }
.golf-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,8,6,0.95) 0%, rgba(10,8,6,0.65) 50%, rgba(10,8,6,0.4) 100%);
}
.golf-hero__content {
    position: relative;
    z-index: 2;
    padding: 0 4rem;
    max-width: 900px;
}
.golf-hero__content .hero__eyebrow {
    color: var(--coral-light);
    letter-spacing: 0.15em;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 1.5rem;
    display: block;
}
.golf-hero__content h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.05;
    margin-bottom: 1.5rem;
}
.golf-hero__content h1 em {
    font-style: italic;
    color: var(--terracotta);
}
.golf-hero__content > p {
    color: rgba(247,243,238,0.8);
    font-size: 1.1rem;
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Golf gallery */
.golf-gallery {
    background: var(--dark);
    padding: 4rem 0 5rem;
}
.golf-gallery .container { max-width: 1400px; }
.golf-gallery-label {
    text-align: center;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--coral-light);
    margin-bottom: 2.5rem;
}
.golf-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 6px;
}
.golf-gallery-item {
    overflow: hidden;
    aspect-ratio: 3/2;
    cursor: zoom-in;
}
.golf-gallery-item.tall {
    grid-row: span 2;
    aspect-ratio: unset;
}
.golf-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    display: block;
}
.golf-gallery-item:hover img { transform: scale(1.04); }

/* Golf why section */
.golf-why {
    background: var(--dark);
    padding: 6rem 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.golf-why h2 {
    text-align: center;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 300;
    color: var(--cream);
    margin-bottom: 3rem;
}
.golf-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.golf-why-item {
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.08);
}
.golf-why-item h3 {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 0.75rem;
}
.golf-why-item p {
    font-size: 0.875rem;
    color: rgba(247,243,238,0.6);
    line-height: 1.75;
    font-weight: 300;
}

/* Golf scorecard */
.golf-scorecard { background: var(--cream); }
.golf-scorecard .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 6rem 2rem;
}
.golf-scorecard h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}
.golf-scorecard > .container > div > p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 300;
}
.hole-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}
.hole-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    font-size: 0.875rem;
}
.hole-list li:last-child { border-bottom: none; }
.hole-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--coral);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 2px;
}
.hole-text strong {
    display: block;
    color: var(--dark);
    font-weight: 500;
    margin-bottom: 0.2rem;
}
.hole-text span { color: var(--text-muted); font-weight: 300; }
.golf-scorecard-visual {
    background: var(--dark);
    padding: 3rem;
    color: var(--cream);
}
.scorecard-header {
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}
.scorecard-header h4 {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--cream);
}
.scorecard-header p {
    font-size: 0.75rem;
    color: var(--coral-light);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 0.35rem;
    font-weight: 500;
}
.scorecard-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.85rem;
}
.scorecard-row:last-child { border-bottom: none; }
.scorecard-row span:first-child { color: rgba(247,243,238,0.55); font-weight: 300; }
.scorecard-row span:last-child { color: var(--cream); font-weight: 500; }

/* Golf packages */
.golf-packages { background: var(--cream); padding: 6rem 0; }
.golf-packages h2 {
    text-align: center;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 300;
    margin-bottom: 3rem;
}
.golf-packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}
.golf-card {
    background: white;
    border: 1px solid rgba(0,0,0,0.08);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}
.golf-card.featured {
    background: var(--dark);
    color: var(--cream);
    border-color: var(--dark);
}
.golf-card h3 {
    font-size: 1.6rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    color: var(--dark);
}
.golf-card.featured h3 { color: var(--cream); }
.golf-card .package-duration {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--coral);
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: block;
}
.golf-card .price {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--dark);
}
.golf-card.featured .price { color: var(--cream); }
.golf-card .package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    flex: 1;
}
.golf-card .package-features li {
    padding: 0.5rem 0 0.5rem 1.1rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    font-size: 0.875rem;
    color: var(--text-muted);
    position: relative;
    font-weight: 300;
}
.golf-card.featured .package-features li {
    border-color: rgba(255,255,255,0.08);
    color: rgba(247,243,238,0.65);
}
.golf-card .package-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--coral);
    font-size: 0.75rem;
}
.golf-card .package-features li:last-child { border-bottom: none; }

/* Golf types */
.golf-types { background: white; padding: 6rem 0; }
.golf-types h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 300;
    text-align: center;
    margin-bottom: 3rem;
}
.types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.type-item {
    padding: 2rem;
    background: var(--cream);
}
.type-item h4 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: var(--dark);
}
.type-item p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 300;
}
.golf-faq { background: var(--cream); }

/* Golf responsive */
@media (max-width: 1024px) {
    .golf-gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .golf-gallery-item.tall { grid-row: span 1; aspect-ratio: 3/2; }
}
@media (max-width: 768px) {
    .golf-hero__content { padding: 0 1.5rem; }
    .golf-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .golf-scorecard .container { grid-template-columns: 1fr; gap: 2rem; padding: 4rem 1.5rem; }
    .golf-why-grid { grid-template-columns: 1fr; }
    .golf-packages-grid { grid-template-columns: 1fr; }
    .types-grid { grid-template-columns: 1fr; }
}

/* Golf proof bar */
.golf-proof-bar {
    background: var(--dark);
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 1.25rem 2rem;
    flex-wrap: wrap;
}
.golf-proof-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(247,243,238,0.65);
}
.golf-proof-item svg { color: var(--coral); flex-shrink: 0; }
.golf-proof-sep {
    color: rgba(247,243,238,0.2);
    font-size: 1.2rem;
}

/* Proof Bar */
.proof-bar {
    background: var(--dark);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 1.1rem 2rem;
}
.proof-bar__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.proof-bar__item {
    color: rgba(247,243,238,0.65);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}
.proof-bar__item strong {
    color: var(--coral-light);
    font-weight: 600;
    margin-right: 0.3em;
}
.proof-bar__divider {
    width: 1px;
    height: 18px;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
}
@media (max-width: 600px) {
    .proof-bar__divider { display: none; }
    .proof-bar__inner { gap: 0.8rem; justify-content: center; }
}

/* Memory Science Hook */
.memory-hook {
    background: var(--dark-mid);
    padding: 5rem 2rem;
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.memory-hook__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1px 1fr;
    gap: 0 4rem;
    align-items: center;
}
.memory-hook__stat {
    text-align: center;
    flex-shrink: 0;
}
.memory-hook__number {
    display: block;
    font-family: 'Fraunces', serif;
    font-size: clamp(5rem, 10vw, 8rem);
    font-weight: 300;
    color: var(--coral-light);
    line-height: 1;
}
.memory-hook__pct {
    font-size: 0.5em;
    vertical-align: super;
}
.memory-hook__stat > p {
    color: rgba(247,243,238,0.55);
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 0.5rem;
    line-height: 1.6;
}
.memory-hook__divider {
    width: 1px;
    height: 160px;
    background: rgba(255,255,255,0.1);
}
.memory-hook__copy {
    color: rgba(247,243,238,0.7);
    font-size: 1rem;
    line-height: 1.75;
}
.memory-hook__copy p { margin-bottom: 1rem; }
.memory-hook__copy p:last-child { margin-bottom: 0; }
.memory-hook__copy strong { color: var(--cream); font-weight: 500; }
.memory-hook__cta-line {
    color: var(--cream);
    font-size: 1.05rem;
}
.memory-hook__cta-line em {
    font-family: 'Fraunces', serif;
    font-style: italic;
    color: var(--coral-light);
}
@media (max-width: 768px) {
    .memory-hook__inner {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 2rem;
        text-align: center;
    }
    .memory-hook__divider {
        width: 60px;
        height: 1px;
        margin: 0 auto;
    }
}

/* Golf icons */
.golf-icon {
    display: block;
    color: var(--coral);
    margin-bottom: 1.25rem;
}
.type-icon {
    display: block;
    color: var(--coral);
    margin-bottom: 1rem;
}

/* Golf card cost-split callout */
.golf-card-split {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--coral);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    padding: 0.5rem 0;
    border-top: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.golf-card.featured .golf-card-split {
    border-color: rgba(255,255,255,0.1);
    color: var(--coral-light);
}

@media (max-width: 768px) {
    .golf-proof-bar { gap: 1rem; }
    .golf-proof-sep { display: none; }
}

/* ===== LUXURY ANIMATION SYSTEM ===== */

/* Gold shimmer sweep on italic text in hero and key sections */
@keyframes luxuryShimmer {
    0%   { background-position: -300% center; }
    100% { background-position: 300% center; }
}

.hero__title em,
.intro-strip__inner h2 em,
.cta-section h2 em,
.memory-hook__cta-line em {
    background: linear-gradient(90deg,
        #c8703a 0%, #e8b87a 20%, #f5dbb5 40%,
        #e8b87a 60%, #c8703a 80%, #e8b87a 100%
    );
    background-size: 300% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: luxuryShimmer 6s linear infinite;
}

/* Primary button warm glow pulse */
@keyframes warmGlow {
    0%, 100% { box-shadow: 0 4px 20px rgba(212, 112, 74, 0.1); }
    50%       { box-shadow: 0 4px 36px rgba(212, 112, 74, 0.45), 0 0 80px rgba(212, 112, 74, 0.12); }
}

.btn-primary {
    animation: warmGlow 3.5s ease-in-out infinite;
}

/* Sparkle particles (placed by JS) */
@keyframes sparkleFade {
    0%   { opacity: 0; transform: scale(0) translateY(0) rotate(0deg); }
    25%  { opacity: 1; transform: scale(1) translateY(-6px) rotate(30deg); }
    75%  { opacity: 0.6; transform: scale(0.7) translateY(-14px) rotate(60deg); }
    100% { opacity: 0; transform: scale(0) translateY(-20px) rotate(90deg); }
}

.sparkle-particle {
    position: absolute;
    pointer-events: none;
    z-index: 10;
    animation: sparkleFade var(--dur, 2s) ease-in-out forwards;
}

.sparkle-particle::before,
.sparkle-particle::after {
    content: '';
    position: absolute;
    background: rgba(240, 200, 130, var(--op, 0.8));
    border-radius: 1px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}

.sparkle-particle::before {
    width: 1.5px;
    height: var(--sz, 12px);
}

.sparkle-particle::after {
    width: var(--sz, 12px);
    height: 1.5px;
}

/* Portfolio image hover shimmer sweep */
@keyframes hoverShimmer {
    0%   { transform: translateX(-120%) skewX(-15deg); }
    100% { transform: translateX(350%) skewX(-15deg); }
}

.masonry-item::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 35%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 220, 160, 0.14), transparent);
    transform: translateX(-120%) skewX(-15deg);
    pointer-events: none;
    z-index: 3;
    opacity: 0;
}

.masonry-item:hover::after {
    opacity: 1;
    animation: hoverShimmer 0.75s ease-in-out;
}

/* Featured service card luxury glow */
.service-card.featured {
    box-shadow:
        0 0 0 1px rgba(212, 118, 61, 0.2),
        0 12px 50px rgba(212, 118, 61, 0.18),
        0 0 100px rgba(212, 118, 61, 0.06);
}

/* Memory hook number float */
@keyframes floatNum {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-6px); }
}

.memory-hook__number {
    animation: floatNum 5s ease-in-out infinite;
    display: inline-block;
}

/* ===== SERVICE CARD ENHANCEMENTS ===== */

.service-card__market {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.67rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}

.service-card.featured .service-card__market {
    color: rgba(255,255,255,0.35);
}

.service-card__price-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0.35rem 0 1.5rem;
    flex-wrap: wrap;
}

.service-card__save {
    font-size: 0.66rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #5c9a5c;
    background: rgba(92, 154, 92, 0.1);
    padding: 3px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

.service-card.featured .service-card__save {
    color: #7dc87d;
    background: rgba(125, 200, 125, 0.12);
}

/* Service tiers */
.service-tiers {
    margin-bottom: 1.75rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.service-tier {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    padding: 0.7rem 1rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.85rem;
}

.service-tier:last-child {
    border-bottom: none;
}

.service-tier__name {
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-body);
    min-width: 5rem;
}

.service-tier__price {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    color: var(--terracotta);
    font-size: 0.95rem;
    min-width: 3.5rem;
}

.service-tier__detail {
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.4;
}

.service-card.featured .service-tiers {
    border-color: rgba(255,255,255,0.12);
}

.service-card.featured .service-tier {
    border-bottom-color: rgba(255,255,255,0.08);
}

.service-card.featured .service-tier__name {
    color: rgba(255,255,255,0.7);
}

.service-card.featured .service-tier__price {
    color: var(--coral-light);
}

.service-card.featured .service-tier__detail {
    color: rgba(255,255,255,0.45);
}

.service-card__value-note {
    font-size: 0.76rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 0.75rem;
    margin-bottom: 1.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
    line-height: 1.55;
}

.service-card.featured .service-card__value-note {
    color: rgba(255,255,255,0.33);
    border-top-color: rgba(255,255,255,0.08);
}

.service-card__badge {
    position: absolute;
    top: -1px;
    right: 2.5rem;
    background: var(--coral);
    color: white;
    font-size: 0.6rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 0 0 6px 6px;
}

/* ===== URGENCY BAR ===== */

.urgency-bar {
    background: linear-gradient(135deg, #1a1410 0%, var(--dark) 100%);
    padding: 0.85rem 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(212, 118, 61, 0.18);
}

.urgency-bar__inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.urgency-bar__text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    color: rgba(247, 243, 238, 0.7);
    letter-spacing: 0.03em;
}

.urgency-bar__text strong {
    color: var(--coral-light);
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(0.65); }
}

.urgency-bar__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--coral);
    animation: dotPulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

/* ===== PEAK-END RULE SECTION ===== */

.peak-hook {
    background: var(--cream);
    padding: 5rem 2rem;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.peak-hook__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1px 1.8fr;
    gap: 3rem 4.5rem;
    align-items: center;
}

.peak-hook__stat {
    text-align: center;
}

.peak-hook__label {
    font-family: 'Fraunces', serif;
    font-size: clamp(3.5rem, 8vw, 5.5rem);
    font-weight: 300;
    font-style: italic;
    color: var(--terracotta);
    display: block;
    line-height: 1;
    margin-bottom: 0.6rem;
}

.peak-hook__stat > p {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.09em;
    line-height: 1.6;
}

.peak-hook__divider {
    height: 200px;
    background: var(--border);
    width: 1px;
    justify-self: center;
}

.peak-hook__copy p {
    margin-bottom: 1rem;
    color: var(--text-body);
    line-height: 1.78;
}

.peak-hook__copy p:last-child {
    margin-bottom: 0;
    font-family: 'Fraunces', serif;
    font-size: 1.15rem;
    font-style: italic;
    color: var(--dark);
}

@media (max-width: 900px) {
    .peak-hook__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .peak-hook__divider { display: none; }
    .peak-hook__stat { text-align: left; }
}


/* Slower shimmer specifically for hero title */
.hero__title em {
    animation-duration: 12s;
}

/* Slow all shimmer animations globally */
.hero__title em,
.intro-strip__inner h2 em,
.cta-section h2 em,
.memory-hook__cta-line em {
    animation-duration: 14s;
}

.hero__title em {
    animation-duration: 18s;
}
