/* ============================================================
   Colin Cowie Lifestyle — Shared Stylesheet
   Brand palette: white, soft off-whites, deep greys, light blacks
   ============================================================ */

:root {
    --ink:        #1a1a1a;   /* light black — primary text, dark sections */
    --ink-2:      #111111;   /* near-black — footer */
    --accent:     #4a4a4a;   /* deep grey — accent / hover */
    --text:       #555555;   /* body copy */
    --muted:      #8a8a8a;   /* secondary copy */
    --bg:         #ffffff;   /* white */
    --bg-soft:    #f7f6f4;   /* soft off-white */
    --bg-soft-2:  #efedea;   /* soft off-white, deeper */
    --border:     #e4e2dd;   /* hairline border */
}

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

body {
    font-family: 'Avenir', 'Segoe UI', Tahoma, sans-serif;
    line-height: 1.7;
    color: var(--ink);
    font-weight: 300;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Didot', 'Garamond', serif;
    font-weight: 400;
}

img { display: block; }

/* ---------- Navigation ---------- */
nav {
    background: var(--bg);
    padding: 1rem 2rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo {
    height: 50px;
    display: flex;
    align-items: center;
}

nav .logo img {
    height: 100%;
    width: auto;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--ink);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
    font-weight: 400;
}

nav a:hover {
    color: var(--muted);
}

/* Dropdown menu */
nav .dropdown {
    position: relative;
}

nav .dropdown > a::after {
    content: " \25BE";
    font-size: 0.7rem;
}

nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg);
    list-style: none;
    padding: 0.75rem 0;
    margin-top: 0.85rem;
    min-width: 220px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    display: none;
    flex-direction: column;
    border: 1px solid var(--border);
}

/* Invisible bridge so the cursor can cross the gap
   between the nav link and the menu without losing :hover */
nav .dropdown-menu::before {
    content: "";
    position: absolute;
    top: -0.85rem;
    left: 0;
    right: 0;
    height: 0.85rem;
}

nav .dropdown:hover .dropdown-menu {
    display: flex;
}

nav .dropdown-menu li {
    padding: 0;
    margin: 0;
}

nav .dropdown-menu a {
    display: block;
    padding: 0.7rem 1.5rem;
    font-size: 0.78rem;
    letter-spacing: 0.5px;
    transition: background 0.2s, color 0.2s;
}

nav .dropdown-menu a:hover {
    background: var(--bg-soft);
    color: var(--accent);
}

/* ---------- Generic container ---------- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ---------- Hero (image) ---------- */
.hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-color: var(--ink);
    text-align: center;
    color: #fff;
    width: 100%;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.45), rgba(0,0,0,0.65));
}

@media (min-width: 768px) {
    .hero { height: 560px; }
}

@media (min-width: 1024px) {
    .hero { height: 680px; }
}

.hero .container {
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.hero .hero-tagline,
.hero .tagline {
    font-size: 1.25rem;
    font-weight: 300;
    letter-spacing: 0.3px;
    color: rgba(255,255,255,0.95);
    max-width: 700px;
    margin: 0 auto;
}

.breadcrumb {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.breadcrumb a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #fff;
}

/* ---------- Hero (full-width video) ---------- */
.hero-video-section {
    position: relative;
    width: 100%;
    max-width: 1600px;
    height: 700px;
    margin: 0 auto;
    overflow: hidden;
    background: #000;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
}

/* ---------- Section title ---------- */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--ink);
    margin-bottom: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.section-title p {
    font-size: 1.05rem;
    color: var(--muted);
    font-weight: 300;
}

/* ---------- Positioning section (homepage) ---------- */
.positioning-section {
    padding: 6rem 2rem;
    background: var(--bg);
    text-align: center;
}

.positioning-section .container {
    max-width: 1100px;
}

.positioning-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: var(--ink);
}

.positioning-section .subtitle {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 3rem;
    display: block;
}

.positioning-content {
    text-align: left;
    margin-top: 3rem;
}

.positioning-content p {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.positioning-content p:last-child { margin-bottom: 0; }

/* ---------- Service selector (homepage) ---------- */
.service-selector {
    padding: 6rem 2rem;
    background: var(--bg);
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.service-card {
    padding: 3rem 2.5rem;
    text-align: left;
    transition: all 0.3s ease;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    border-color: var(--accent);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    background: var(--bg);
    transform: translateY(-2px);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--ink);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.service-card .subtitle {
    font-size: 0.95rem;
    color: var(--muted);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.service-card .description {
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 2rem;
    flex-grow: 1;
    line-height: 1.7;
}

.service-card .price {
    font-size: 1.2rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.service-card .btn { align-self: flex-start; }

.floral-cta {
    text-align: center;
    padding: 2.5rem;
    background: var(--bg-soft-2);
    margin-top: 2rem;
}

.floral-cta p {
    font-size: 1rem;
    color: var(--ink);
    margin-bottom: 1rem;
    font-weight: 300;
}

.floral-cta p strong { font-weight: 600; }

.floral-cta .price {
    color: var(--accent);
    font-weight: 600;
    margin: 0.5rem 0 1.5rem 0;
}

/* ---------- Featured work / galleries ---------- */
.featured-work {
    padding: 6rem 2rem;
    background: var(--bg-soft);
}

.design-gallery {
    padding: 6rem 2rem;
    background: var(--bg-soft);
}

.design-gallery h2,
.gallery-title h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
    color: var(--ink);
    font-weight: 300;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    background: var(--bg-soft-2);
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s;
}

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

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

.gallery-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.75);
    color: #fff;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s;
}

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

.gallery-item .overlay h4 {
    margin-bottom: 0.4rem;
    font-size: 1.05rem;
    font-weight: 600;
}

.gallery-item .overlay p {
    font-size: 0.9rem;
    color: #ddd;
    font-weight: 300;
}

/* ---------- Main content (service landing pages) ---------- */
.main-content {
    padding: 6rem 2rem;
    background: var(--bg);
}

.main-content .container { max-width: 1000px; }

.narrative-intro { margin-bottom: 3.5rem; }

.narrative-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--ink);
    font-weight: 400;
    letter-spacing: 0.3px;
}

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

.key-points,
.highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border);
}

.key-point,
.highlight { text-align: center; }

.key-point h3,
.highlight h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--ink);
    font-weight: 600;
}

.key-point p,
.highlight p {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.7;
}

/* Service options (floral) */
.service-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border);
}

.service-option {
    padding: 2.5rem;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.service-option:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    background: var(--bg);
}

.service-option h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--ink);
    font-weight: 600;
}

.service-option p {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.7;
}

/* Features (ccl studio) */
.features-section { margin-bottom: 4rem; }

.features-section h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--ink);
    font-weight: 400;
    letter-spacing: 0.3px;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.feature-item {
    padding-left: 2rem;
    position: relative;
}

.feature-item::before {
    content: "\2014";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.feature-item h4 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    color: var(--ink);
    font-weight: 600;
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.6;
}

/* Quote / why-choose */
.quote-section {
    background: var(--bg-soft);
    border-left: 3px solid var(--accent);
    padding: 3.5rem;
    margin-bottom: 1rem;
}

.quote-section h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--ink);
    font-weight: 400;
}

.quote-section p {
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.8;
    font-style: italic;
}

/* ---------- Case studies ---------- */
.case-studies {
    padding: 6rem 2rem;
    background: var(--bg-soft);
}

.case-studies h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--ink);
    font-weight: 400;
    letter-spacing: 0.3px;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.case-study {
    background: var(--bg);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s;
}

.case-study:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.case-study-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-soft-2);
}

.case-study-content { padding: 2rem; }

.case-study h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--ink);
    font-weight: 600;
}

.case-study-meta {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.case-study p {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.7;
}

/* ---------- Testimonial ---------- */
.testimonial {
    padding: 6rem 2rem;
    background: var(--bg);
}

.testimonial .container {
    max-width: 900px;
    text-align: center;
}

.testimonial h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--ink);
    font-weight: 400;
    letter-spacing: 0.3px;
}

.testimonial-quote {
    font-size: 1.25rem;
    color: var(--text);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-style: italic;
    position: relative;
    padding: 0 2rem;
}

.testimonial-quote::before {
    content: "\201C";
    font-size: 4rem;
    color: var(--accent);
    position: absolute;
    left: 0;
    top: 0.5rem;
    line-height: 0;
}

.testimonial-author {
    font-size: 1rem;
    color: var(--ink);
    font-weight: 600;
}

.testimonial-title {
    font-size: 0.9rem;
    color: var(--muted);
    margin-top: 0.5rem;
}

/* ---------- Content sections (what-we-do pages) ---------- */
.page-intro {
    padding: 4rem 2rem 3rem;
    background: var(--bg);
    text-align: center;
}

.content-section {
    padding: 5rem 2rem;
    background: var(--bg);
}

.content-section.alt { background: var(--bg-soft); }

.section-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.section-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    color: var(--ink);
}

.section-intro p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text);
}

.content-text h3 {
    font-size: 2rem;
    margin: 2.5rem 0 1.5rem;
    font-weight: 300;
    color: var(--ink);
}

.content-text h4 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    color: var(--ink);
    font-weight: 600;
}

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

.content-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.content-with-image.reversed .content-text { order: 2; }

.content-with-image .content-text h3 { margin-top: 0; }

.content-image {
    width: 100%;
    height: 420px;
    background: var(--bg-soft-2);
    overflow: hidden;
}

.content-text .content-image {
    margin: 2.5rem 0;
}

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

.image-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.image-item {
    height: 320px;
    overflow: hidden;
    background: var(--bg-soft-2);
}

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

/* Services grid (what-we-do) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

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

/* Five-senses grid (about) — single balanced row */
.senses-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

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

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

.service-item {
    padding: 2rem;
    text-align: center;
    background: var(--bg);
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.service-item:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}

.service-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--ink);
}

.service-item p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.6;
}

/* Gallery section (what-we-do) */
.gallery {
    padding: 5rem 2rem;
    background: var(--bg);
}

.gallery-title {
    text-align: center;
    margin-bottom: 1rem;
}

.gallery-title p {
    color: var(--muted);
    font-size: 1.05rem;
}

.gallery-item .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.75);
    color: #fff;
    padding: 1.25rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s;
    font-size: 0.95rem;
}

.gallery-item:hover .caption { transform: translateY(0); }

/* Service tier cards (what-we-do) */
.tier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.tier-card {
    padding: 2.5rem;
    border: 1px solid var(--border);
    background: var(--bg-soft);
    transition: all 0.3s;
}

.tier-card:hover {
    border-color: var(--accent);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    background: var(--bg);
}

.tier-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
    color: var(--ink);
}

.tier-card .tier-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 1.25rem;
    display: block;
}

.tier-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.tier-card .btn { font-size: 0.78rem; padding: 0.8rem 1.8rem; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--ink);
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    font-weight: 400;
    border: 2px solid var(--ink);
    cursor: pointer;
    font-family: inherit;
}

.btn:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.btn-primary {
    background: #fff;
    color: var(--ink);
    border-color: #fff;
}

.btn-primary:hover {
    background: #d8d8d8;
    border-color: #d8d8d8;
    color: var(--ink);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: var(--ink);
    border-color: #fff;
}

/* ---------- CTA section (dark) ---------- */
.cta-section {
    padding: 6rem 2rem;
    background: var(--ink);
    color: #fff;
    text-align: center;
}

.cta-section .container { max-width: 900px; }

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.cta-section p {
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    color: #cccccc;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-content { margin-bottom: 3rem; }

.cta-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.form-option { text-align: center; }

.form-option h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.form-option p {
    font-size: 0.95rem;
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-weight: 300;
}

.cta-help {
    text-align: center;
    color: #cccccc;
    font-size: 0.9rem;
    margin-top: 2.5rem;
}

.cta-help a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cta-help a:hover { color: #cccccc; }

/* ---------- Footer ---------- */
footer {
    background: var(--ink-2);
    color: #999999;
    font-size: 0.9rem;
}

footer a {
    color: #999999;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover { color: #fff; }

footer p { font-weight: 300; }

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4.5rem 2rem 3.5rem;
    display: grid;
    grid-template-columns: 1.5fr 1.1fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand .footer-wordmark {
    font-family: 'Didot', 'Garamond', serif;
    font-size: 1.3rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-brand p {
    line-height: 1.7;
    max-width: 280px;
    margin-bottom: 1.75rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.22);
    transition: background 0.25s, border-color 0.25s;
}

.footer-social a:hover {
    background: #fff;
    border-color: #fff;
}

.footer-social svg {
    width: 16px;
    height: 16px;
    fill: #b5b5b5;
    transition: fill 0.25s;
}

.footer-social a:hover svg { fill: var(--ink); }

.footer-col h4 {
    color: #fff;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 1.4rem;
}

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

.footer-col li {
    margin-bottom: 0.85rem;
    line-height: 1.5;
}

.footer-office { margin-bottom: 1.1rem; }

.footer-office .office-name {
    display: block;
    color: #d6d6d6;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    margin-bottom: 0.15rem;
}

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

@media (max-width: 900px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem 2rem;
    }
}

@media (max-width: 540px) {
    .footer-main { grid-template-columns: 1fr; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .features-list,
    .service-options,
    .content-with-image,
    .image-grid-2,
    .cta-form {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .content-with-image.reversed .content-text { order: 0; }
    .content-image { height: 300px; }
}

@media (max-width: 768px) {
    nav { padding: 1rem; }

    nav ul {
        gap: 1rem;
        font-size: 0.8rem;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .hero h1 { font-size: 2.1rem; }
    .hero .hero-tagline, .hero .tagline { font-size: 1.05rem; }

    .positioning-section h2,
    .section-title h2,
    .section-intro h2,
    .cta-section h2 { font-size: 1.8rem; }

    .narrative-intro h2 { font-size: 1.6rem; }

    .service-cards,
    .key-points,
    .highlights,
    .gallery-grid { grid-template-columns: 1fr; }

    .cta-buttons { flex-direction: column; }
    .cta-buttons .btn { width: 100%; }

    .quote-section { padding: 2rem; }
}

/* ============================================================
   Portfolio
   ============================================================ */

/* Homepage teaser band */
.portfolio-teaser {
    padding: 6rem 2rem;
    background: var(--bg-soft);
    text-align: center;
}

.portfolio-teaser h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--ink);
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.portfolio-teaser p {
    font-size: 1.05rem;
    color: var(--text);
    max-width: 640px;
    margin: 0 auto 2.5rem;
}

/* Portfolio page header */
.portfolio-header {
    padding: 4.5rem 2rem 2.5rem;
    background: var(--bg);
    text-align: center;
}

.portfolio-header h1 {
    font-size: 3rem;
    font-weight: 300;
    color: var(--ink);
    letter-spacing: 0.5px;
    margin-bottom: 0.85rem;
}

.portfolio-header p {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 640px;
    margin: 0 auto;
}

/* Filter sub-menu */
.portfolio-filters {
    position: sticky;
    top: 81px;
    z-index: 90;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(6px);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.1rem 1rem;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    font-family: inherit;
    font-size: 0.76rem;
    font-weight: 400;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 0.7rem 1.5rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

.filter-btn:hover {
    border-color: var(--accent);
    color: var(--ink);
}

.filter-btn.active {
    background: var(--ink);
    border-color: var(--ink);
    color: #fff;
}

.filter-btn .count {
    margin-left: 0.45rem;
    font-size: 0.68rem;
    opacity: 0.55;
}

/* Portfolio masonry grid */
.portfolio-section {
    padding: 3rem 2rem 6rem;
    background: var(--bg);
}

.portfolio-grid {
    max-width: 1500px;
    margin: 0 auto;
    column-count: 4;
    column-gap: 1.25rem;
}

@media (max-width: 1200px) { .portfolio-grid { column-count: 3; } }
@media (max-width: 800px)  { .portfolio-grid { column-count: 2; } }
@media (max-width: 480px)  { .portfolio-grid { column-count: 1; } }

.portfolio-item {
    break-inside: avoid;
    margin-bottom: 1.25rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--bg-soft-2);
}

.portfolio-item.show {
    animation: pfFadeIn 0.5s ease both;
}

.portfolio-item.hide { display: none; }

.portfolio-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

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

.portfolio-item .pf-overlay {
    position: absolute;
    inset: 0;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(0,0,0,0.78), rgba(0,0,0,0.05) 55%, rgba(0,0,0,0));
    opacity: 0;
    transition: opacity 0.35s ease;
}

.portfolio-item:hover .pf-overlay { opacity: 1; }

.pf-cat {
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    opacity: 0.85;
}

.pf-title {
    font-family: 'Didot', 'Garamond', serif;
    color: #fff;
    font-size: 1.2rem;
    margin-top: 0.3rem;
    line-height: 1.3;
}

.pf-view {
    margin-top: 0.6rem;
    font-size: 0.68rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    opacity: 0.7;
}

.portfolio-empty {
    display: none;
    text-align: center;
    color: var(--muted);
    padding: 4rem 1rem;
    font-size: 1.05rem;
}

@keyframes pfFadeIn {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(12,12,12,0.96);
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox-figure {
    max-width: 90vw;
    max-height: 84vh;
    text-align: center;
}

.lightbox-figure img {
    max-width: 90vw;
    max-height: 72vh;
    object-fit: contain;
    margin: 0 auto;
}

.lightbox-caption { margin-top: 1.25rem; }

.lightbox-caption .pf-title { font-size: 1.4rem; }

.lb-close,
.lb-prev,
.lb-next {
    position: absolute;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
    cursor: pointer;
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
    line-height: 1;
    transition: all 0.2s ease;
}

.lb-close:hover,
.lb-prev:hover,
.lb-next:hover {
    background: #fff;
    color: var(--ink);
}

.lb-close { top: 1.5rem; right: 1.5rem; }
.lb-prev  { left: 1.5rem;  top: 50%; transform: translateY(-50%); }
.lb-next  { right: 1.5rem; top: 50%; transform: translateY(-50%); }

@media (max-width: 768px) {
    .portfolio-header h1 { font-size: 2.1rem; }
    .portfolio-teaser h2 { font-size: 1.8rem; }
    .lb-prev { left: 0.5rem; }
    .lb-next { right: 0.5rem; }
}

/* ============================================================
   About page
   ============================================================ */
.stats-band {
    background: var(--ink);
    color: #fff;
    padding: 4.5rem 2rem;
}

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

.stat .stat-number {
    font-family: 'Didot', 'Garamond', serif;
    font-size: 3.2rem;
    line-height: 1;
    color: #fff;
    margin-bottom: 0.65rem;
}

.stat .stat-label {
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #bdbdbd;
}

.client-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
}

.client-name {
    border: 1px solid var(--border);
    background: var(--bg);
    padding: 0.85rem 1.7rem;
    font-family: 'Didot', 'Garamond', serif;
    font-size: 1.05rem;
    color: var(--ink);
    transition: all 0.25s ease;
}

.client-name:hover {
    border-color: var(--accent);
    background: var(--bg-soft);
}

@media (max-width: 760px) {
    .stats-band .container {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    .stat .stat-number { font-size: 2.6rem; }
}

/* ============================================================
   Around the World — destination venues
   ============================================================ */
.world-intro {
    padding: 5.5rem 2rem 2rem;
    background: var(--bg);
    text-align: center;
}

.world-intro .container { max-width: 820px; }

.world-intro h2 {
    font-size: 2.6rem;
    font-weight: 300;
    color: var(--ink);
    margin-bottom: 1.25rem;
    letter-spacing: 0.5px;
}

.world-intro p {
    font-size: 1.08rem;
    color: var(--text);
    line-height: 1.9;
}

/* Interactive map */
.world-map-section {
    padding: 3.5rem 2rem 5rem;
    background: var(--bg);
}

.world-map-section .map-eyebrow {
    text-align: center;
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.4rem;
}

.world-map-section h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: 300;
    color: var(--ink);
    margin-bottom: 0.4rem;
}

.world-map-section .map-hint {
    text-align: center;
    font-size: 0.95rem;
    color: var(--muted);
    margin-bottom: 1rem;
}

.world-map-wrap {
    max-width: 1060px;
    margin: 0 auto;
}

.world-map {
    width: 100%;
    height: auto;
    display: block;
}

.map-ocean { fill: var(--bg-soft); }

.continent {
    fill: #e7e5e0;
    stroke: #dcd9d2;
    stroke-width: 1;
}

.map-hub { cursor: pointer; }

.map-hub-dot {
    fill: var(--ink);
    transition: fill 0.2s ease;
}

.map-hub-ring {
    fill: none;
    stroke: var(--ink);
    stroke-width: 1.5;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.map-hub-pulse {
    fill: var(--ink);
    animation: hubPulse 2.6s ease-out infinite;
}

@keyframes hubPulse {
    0%   { r: 7px;  opacity: 0.35; }
    100% { r: 26px; opacity: 0; }
}

.map-hub:hover .map-hub-dot,
.map-hub.active .map-hub-dot { fill: var(--accent); }

.map-hub:hover .map-hub-ring,
.map-hub.active .map-hub-ring { opacity: 1; }

.map-hub-label {
    font-family: 'Avenir', 'Segoe UI', sans-serif;
    font-size: 13px;
    font-weight: 600;
    fill: var(--ink);
    text-anchor: middle;
    letter-spacing: 0.5px;
}

.map-hub-count {
    font-family: 'Avenir', 'Segoe UI', sans-serif;
    font-size: 10.5px;
    letter-spacing: 1px;
    fill: var(--muted);
    text-anchor: middle;
    text-transform: uppercase;
}

.world-map.region-active .map-hub:not(.active) { opacity: 0.32; }
.map-hub, .map-hub-dot, .map-hub-pulse, .map-hub-ring { transition: opacity 0.25s ease; }

/* Venue filters */
.venue-filters {
    position: sticky;
    top: 81px;
    z-index: 90;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(6px);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.15rem 1rem;
}

.venue-filter-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.venue-filter-row + .venue-filter-row { margin-top: 0.7rem; }

.filter-label {
    font-size: 0.68rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-right: 0.4rem;
}

/* Venue grid */
.venue-section { padding: 3rem 2rem 6rem; background: var(--bg); }

.venue-results {
    text-align: center;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 2.5rem;
}

.venue-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 900px) { .venue-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .venue-grid { grid-template-columns: 1fr; } }

.venue-card {
    background: var(--bg);
    border: 1px solid var(--border);
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    animation: pfFadeIn 0.5s ease both;
    transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.venue-card:hover {
    box-shadow: 0 10px 28px rgba(0,0,0,0.12);
    border-color: var(--accent);
    transform: translateY(-3px);
}

.venue-card.hide { display: none; }

.venue-card-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-soft-2);
    position: relative;
}

.venue-type-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(26,26,26,0.85);
    color: #fff;
    font-size: 0.62rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.4rem 0.85rem;
}

.venue-card-body {
    padding: 1.6rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.venue-card-body h3 {
    font-size: 1.3rem;
    color: var(--ink);
    line-height: 1.3;
}

.venue-loc {
    font-size: 0.76rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0.45rem 0 0.85rem;
}

.venue-blurb {
    font-size: 0.92rem;
    color: var(--text);
    line-height: 1.65;
    flex-grow: 1;
}

.venue-card-cta {
    margin-top: 1.2rem;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ink);
}

.venue-empty {
    display: none;
    text-align: center;
    color: var(--muted);
    padding: 4rem 1rem;
    font-size: 1.05rem;
}

/* Venue modal */
.venue-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(12,12,12,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.venue-modal.open { display: flex; }

.venue-modal-card {
    background: var(--bg);
    max-width: 720px;
    width: 100%;
    max-height: 88vh;
    overflow: auto;
    position: relative;
}

.venue-modal-img {
    height: 320px;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-soft-2);
}

.venue-modal-body { padding: 2.75rem; }

.venue-modal-body .venue-type-tag {
    position: static;
    display: inline-block;
    margin-bottom: 1rem;
}

.venue-modal-body h2 {
    font-size: 2rem;
    font-weight: 300;
    color: var(--ink);
}

.venue-modal-body .venue-loc { font-size: 0.85rem; }

.venue-modal-body p {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.8;
    margin-top: 0.5rem;
}

.venue-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.9);
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--ink);
    transition: background 0.2s ease;
}

.venue-modal-close:hover { background: #fff; }

@media (max-width: 600px) {
    .venue-modal-body { padding: 1.75rem; }
    .map-hub-label { font-size: 16px; }
    .map-hub-count { font-size: 13px; }
}

/* ============================================================
   Around the World — header + real map (Leaflet)
   ============================================================ */
.world-header {
    position: relative;
    overflow: hidden;
    background: var(--ink);
    color: #fff;
    text-align: center;
    padding: 7rem 2rem 6.5rem;
}

.world-header-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
    filter: invert(1);
    opacity: 0.14;
    pointer-events: none;
}

.world-header .container {
    position: relative;
    z-index: 2;
    max-width: 880px;
}

.world-header .eyebrow {
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1.5rem;
}

.world-header h1 {
    font-size: 4rem;
    font-weight: 300;
    color: #fff;
    line-height: 1.12;
    letter-spacing: 1px;
    margin-bottom: 1.75rem;
}

.world-header .header-rule {
    width: 64px;
    height: 1px;
    background: rgba(255,255,255,0.45);
    margin: 0 auto 1.75rem;
}

.world-header .lede {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.82);
    line-height: 1.9;
}

@media (max-width: 768px) {
    .world-header { padding: 4.5rem 1.5rem 4rem; }
    .world-header h1 { font-size: 2.4rem; }
}

/* Real map */
.venue-map {
    height: 580px;
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    border: 1px solid var(--border);
    background: var(--bg-soft);
}

@media (max-width: 768px) {
    .venue-map { height: 420px; }
}

.leaflet-container {
    font-family: 'Avenir', 'Segoe UI', sans-serif;
}

.leaflet-tooltip.venue-tip {
    background: var(--ink);
    color: #fff;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
    border-radius: 0;
    font-size: 0.78rem;
    letter-spacing: 0.5px;
    padding: 0.4rem 0.75rem;
}

.leaflet-tooltip.venue-tip::before { display: none; }
