@font-face {
    font-family: 'Minion Pro';
    src: url('assets/fonts/MinionPro-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Minion Pro';
    src: url('assets/fonts/MinionPro-It.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Minion Pro';
    src: url('assets/fonts/MinionPro-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Minion Pro';
    src: url('assets/fonts/MinionPro-MediumIt.otf') format('opentype');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'Minion Pro';
    src: url('assets/fonts/MinionPro-Semibold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Minion Pro';
    src: url('assets/fonts/MinionPro-SemiboldIt.otf') format('opentype');
    font-weight: 600;
    font-style: italic;
}

@font-face {
    font-family: 'Minion Pro';
    src: url('assets/fonts/MinionPro-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Minion Pro';
    src: url('assets/fonts/MinionPro-BoldIt.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
}

:root {
    --primary-bg: #F5E6D3;
    /* Morning Dune */
    --secondary-bg: #E1E8E0;
    /* Whisper Mint */
    --brand-green: #4B5D48;
    /* Forest Drab Green */
    --brand-brown: #5C5347;
    /* Cinder Oak Brown */

    --text-color: var(--brand-brown);
    --text-light: var(--brand-green);
    --accent: var(--brand-green);
    --footer-bg: var(--brand-brown);
    /* Cinder Oak Brown — matches reference screenshot */
    --footer-text: var(--primary-bg);
    --white: #ffffff;
    --hairline: 1px solid rgba(92, 83, 71, 0.2);
    /* Faint brown divider */

    --font-heading: 'Minion Pro';
    --font-body: 'Minion Pro';

    /* Extreme Spacing Scale */
    --spacing-sm: 1.5rem;
    --spacing-md: 4rem;
    --spacing-lg: 8rem;
    --spacing-xl: 12rem;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--primary-bg);
    color: var(--text-color);
    line-height: 1.6;
    font-size: 1.15rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
    opacity: 0.7;
}

ul {
    list-style: none;
}

/* Typography Editorial Scale */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    /* Beautiful thin serifs */
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--text-color);
}

.subheading {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    /* Extremely fine tracking */
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 600;
    /* Matches MinionPro-Semibold.otf */
}

/* Utility Dividers & Micro-Interactions */
.hairline-y {
    border-left: var(--hairline);
}

.hairline-x {
    border-top: var(--hairline);
}

/* Layout Classes */
.wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: var(--spacing-xl) 0;
}

/* Buttons (Organic Luxury) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    background: transparent;
}

.btn-ghost {
    color: var(--brand-brown);
    border: 1px solid rgba(92, 83, 71, 0.3);
    /* Subtle brown border */
    position: relative;
    overflow: hidden;
}

.btn-ghost::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background-color: var(--brand-brown);
    z-index: -1;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-ghost:hover {
    color: var(--primary-bg);
    border-color: var(--brand-brown);
}

.btn-ghost:hover::before {
    transform: scaleY(1);
}

.btn-outline {
    color: var(--primary-bg);
    background-color: var(--brand-green);
    border: none;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-outline::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background-color: var(--brand-brown);
    z-index: -1;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-outline:hover {
    color: var(--primary-bg);
}

.btn-outline:hover::before {
    transform: scaleY(1);
}


/* --- Header & Nav --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.6rem 4.8rem 0.4rem;
    color: var(--text-color);
    background-color: transparent;
    box-shadow: none;
}

/* Big logo — lives OUTSIDE the navbar, floats independently */
.hero-logo {
    position: fixed;
    top: 0.4rem;
    /* Visually aligned with nav items */
    left: 4.8rem;
    height: 220px;
    width: auto;
    z-index: 101;
    /* Above the navbar */
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-logo.hidden {
    opacity: 0;
    transform: scale(0.6) translateY(-20px);
}

/* Compact badge inside the navbar */
.logo-container {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.header-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.5s ease;
}

.logo-compact {
    opacity: 0;
}

.logo-compact.visible {
    opacity: 1;
}

.footer-logo-img {
    height: 100%;
    /* Spans from top of "Our Location" to bottom of "mymail@" */
    max-height: 200px;
    width: auto;
    object-fit: contain;
}

.main-nav ul {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.main-nav a {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2a2520;
    letter-spacing: 0.3px;
}

.main-nav a.active {
    background-color: var(--brand-green);
    color: var(--primary-bg);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
}

.main-nav a.active::after {
    display: none;
}

.main-nav a:not(.active) {
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    background-color: rgba(92, 83, 71, 0.75);
    color: var(--primary-bg);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.main-nav a:hover:not(.active) {
    background-color: rgba(92, 83, 71, 0.15);
    opacity: 1;
}

.dropdown a {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* Dropdown Submenu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    background-color: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0.6rem 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    transform: translateX(-50%) translateY(8px);
    z-index: 200;
    margin-top: 0.3rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 0.55rem 1.4rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary-bg);
    white-space: nowrap;
    transition: background-color 0.2s ease, opacity 0.2s ease;
    border-radius: 50px;
    background-color: rgba(92, 83, 71, 0.75);
}

.dropdown-menu li a:hover {
    background-color: rgba(75, 93, 72, 0.1);
    opacity: 1;
}

/* FAQ Accordion */
.faq-list {
    max-width: 900px;
    margin-top: 3rem;
}

.faq-item {
    border-bottom: 1px solid rgba(92, 83, 71, 0.2);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 0;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 0;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 0 1.5rem 0;
}

.faq-answer p,
.faq-answer ul,
.faq-answer li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
}

/* Hamburger (hidden on desktop) */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 110;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #2a2520;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hamburger X animation */
.site-header.nav-open .hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-header.nav-open .hamburger span:nth-child(2) {
    opacity: 0;
}

.site-header.nav-open .hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    box-shadow: 0 5px 9px rgba(75, 60, 45, 0.18);
    position: relative;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 20%;
    z-index: 1;
}

/* Removed hero overlay entirely */

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 2rem;
    transform: translateY(20px);
}

.hero-title {
    font-size: 6rem;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5), 0 2px 10px rgba(0, 0, 0, 0.2);
    /* Deep elegant drop shadow */
    color: var(--primary-bg);
    /* Striking contrast against the dark overlay */
}

.hero-title .bold-italic {
    font-style: italic;
    font-weight: 700;
}

.hero-title .light-italic {
    font-style: italic;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 3rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 2px 5px rgba(0, 0, 0, 0.2);
    color: var(--primary-bg);
}

.hero-btn {
    color: var(--primary-bg);
    border-color: var(--brand-green);
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hero-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--brand-green);
    z-index: -2;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}


/* --- Concept Section (Editorial Spread) --- */
.concept {
    max-width: 1300px;
    margin: 0 auto;
    padding: var(--spacing-xl) 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Right half stays intentionally empty */
    column-gap: 5rem;
    align-items: start;
}

/* Subheading spans full width above the two columns */
.concept>.subheading {
    grid-column: 1;
    margin-bottom: 1.5rem;
}

.concept h1,
.concept h2 {
    font-size: 7rem;
    font-weight: 600;
    /* Semibold upright — clean &amp; ampersand glyph */
    font-style: normal;
    /* Italic Minion Pro ampersand breaks, upright is clean */
    color: var(--text-color);
    margin-left: -0.3rem;
    line-height: 0.9;
    grid-column: 1;
    margin-bottom: 2.5rem;
}

.concept-text {
    font-size: 1.2rem;
    color: var(--text-color);
    grid-column: 1;
    /* Stack below heading, right side stays blank */
    position: relative;
    padding-left: 2.5rem;
    border-left: var(--hairline);
    max-width: 480px;
}

.concept-text p {
    margin-bottom: 1.5rem;
}

.concept-text p:last-child {
    margin-bottom: 0;
}

/* --- Image Breaks --- */
.image-container {
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}



.main-image-break {
    height: 600px;
}

.image-break.full-width {
    padding: 0;
    max-width: 100%;
    width: 100%;
}

.image-break.full-width .image-container {
    border-radius: 0;
    box-shadow: 0 5px 9px rgba(75, 60, 45, 0.18);
}

.secondary-image-break {
    height: 500px;
    max-width: none;
    margin: 0;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.image-bleed-right {
    margin-left: max(2rem, calc((100vw - 1300px) / 2));
    max-width: none;
    width: auto;
    padding-right: 0;
    margin-right: 0;
}

.image-bleed-right .image-container {
    border-radius: 40px 0 0 40px;
}

/* --- Mission Section (Asymmetrical Layout) --- */
.mission-grid {
    display: grid;
    grid-template-columns: 4fr 5fr;
    /* Asymmetrical split */
    gap: 6rem;
    align-items: stretch;
    position: relative;
}

/* Add a delicate vertical divider between columns */
.mission-grid::before {
    content: '';
    position: absolute;
    left: calc(44.44% + 3rem);
    /* Center of the gap */
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: var(--hairline);
    opacity: 0.5;
}

.mission-title-col h2 {
    font-size: 6rem;
    line-height: 0.95;
    color: var(--text-color);
}

.mission-text-col {
    padding-top: 1rem;
}

.mission-text-col p {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

/* --- Info Grid Section (Staggered Diagonal Editorial) --- */
.info-grid-section {
    padding: 5rem 2rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: stretch;
}

.info-card {
    text-align: center;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}



.info-card .subheading {
    font-style: italic;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0.02em;
    font-size: 1rem;
    color: var(--brand-green);
    margin-bottom: 0.3rem;
}

.info-card h3 {
    font-size: 3rem;
    font-weight: 700;
    font-style: normal;
    margin-bottom: 1.8rem;
    line-height: 1.05;
    color: var(--text-color);
}

.info-card .btn-outline {
    border-radius: 50px;
    padding: 0.8rem 2rem;
    font-size: 0.85rem;
    letter-spacing: 0.03em;
    background-color: var(--brand-green);
    color: var(--primary-bg);
    border-color: var(--brand-green);
    margin-top: auto;
}

/* --- Footer --- */
.site-footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding-top: 3rem;
    padding-bottom: 1rem;
}

.footer-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: start;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.footer-logo .logo-mark {
    color: var(--footer-text);
    width: 72px;
    /* +20% from 60px */
    height: 96px;
    /* +20% from 80px */
}

.footer-logo .logo-text {
    font-size: 2.16rem;
    /* +20% from 1.8rem */
    letter-spacing: 2px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.68rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--footer-text);
    opacity: 1;
}

.footer-col p {
    font-size: 1.14rem;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.contact-info h4 {
    margin-bottom: 0.5rem;
}

.footer-links li {
    margin-bottom: 0.4rem;
}

.footer-links a {
    font-size: 1.14rem;
    /* +20% from 0.95rem */
    opacity: 0.8;
}

.footer-links a:hover,
.footer-links a.active-link {
    opacity: 1;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    /* +20% from 36px */
    height: 43px;
    /* +20% from 36px */
    border-radius: 50%;
    border: 1px solid rgba(232, 223, 213, 0.3);
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: var(--footer-text);
    color: var(--footer-bg);
}

.footer-bottom {
    border-top: 1px solid rgba(232, 223, 213, 0.1);
    padding: 1.5rem 0;
    font-size: 1.02rem;
    /* +20% from 0.85rem */
    opacity: 0.7;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.angelpaw-logo {
    font-family: 'Minion Pro';
    font-style: italic;
    font-size: 1.44rem;
    /* +20% from 1.2rem */
    font-weight: 600;
    margin-left: 0.3rem;
}

/* Animations and polish */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-btn {
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

/* ===== PAGE-SPECIFIC COMPONENTS ===== */

/* --- Page Hero (shorter variant for inner pages) --- */
.page-hero {
    position: relative;
    height: 70vh;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--primary-bg);
    overflow: hidden;
    box-shadow: 0 5px 9px rgba(75, 60, 45, 0.18);
    z-index: 1;
}

.page-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    z-index: 1;
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(42, 37, 32, 0.3) 0%, rgba(42, 37, 32, 0.5) 100%);
    z-index: 1;
}

.page-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}

.page-hero .hero-content h1 {
    font-size: 5rem;
    font-weight: 600;
    font-style: italic;
    color: var(--primary-bg);
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    margin-bottom: 0.8rem;
    letter-spacing: -1px;
}

.page-hero .hero-content p {
    font-size: 1.5rem;
    color: var(--primary-bg);
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    font-weight: 400;
    opacity: 0.95;
}

/* --- Story / About Section --- */
.story-section {
    padding: var(--spacing-xl) 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 4fr 5fr;
    gap: 6rem;
    align-items: start;
    position: relative;
}

.story-grid::before {
    content: '';
    position: absolute;
    left: calc(44.44% + 3rem);
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: rgba(92, 83, 71, 0.2);
    opacity: 0.5;
}

.story-title-col .subheading {
    margin-bottom: 1.5rem;
}

.story-title-col h2 {
    font-size: 5rem;
    line-height: 0.95;
    color: var(--text-color);
}

.story-text-col p {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* --- Values Grid --- */
.values-section {
    padding: var(--spacing-lg) 0;
    background-color: var(--secondary-bg);
}

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

.values-grid .section-header {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 2rem;
}

.values-grid .section-header .subheading {
    margin-bottom: 1rem;
}

.values-grid .section-header h2 {
    font-size: 4.5rem;
    color: var(--text-color);
}

.value-card {
    text-align: center;
    padding: 3rem 2rem;
}

.value-card .value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background-color: var(--brand-green);
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-card .value-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary-bg);
    stroke: var(--primary-bg);
    fill: none;
}

.value-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 600;
}

.value-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    opacity: 0.85;
}

/* --- Team Grid --- */
.team-section {
    padding: var(--spacing-xl) 0;
}

.team-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.team-section .section-header h2 {
    font-size: 4.5rem;
    color: var(--text-color);
}

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

.team-card {
    text-align: center;
}

.team-card .team-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background-color: var(--secondary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.team-card .team-photo svg {
    width: 60px;
    height: 60px;
    color: var(--brand-green);
    opacity: 0.5;
}

.team-card h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--text-color);
}

.team-card .team-role {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--brand-green);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
    opacity: 0.8;
}

/* --- Contact Form Section --- */
.contact-section {
    padding: var(--spacing-xl) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

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

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

.form-group label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--brand-green);
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    font-family: var(--font-body);
    font-size: 1.1rem;
    padding: 1rem 1.2rem;
    border: 1px solid rgba(92, 83, 71, 0.25);
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.4);
    color: var(--text-color);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--brand-green);
    box-shadow: 0 0 0 3px rgba(75, 93, 72, 0.1);
}

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

.contact-info-panel h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.contact-detail {
    margin-bottom: 2.5rem;
}

.contact-detail h4 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--brand-green);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: var(--font-body);
}

.contact-detail p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-color);
}

/* --- Process Steps --- */
.process-section {
    padding: var(--spacing-xl) 0;
}

.process-section .section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.process-section .section-header h2 {
    font-size: 4.5rem;
    color: var(--text-color);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    counter-reset: step;
}

.process-step {
    text-align: center;
    padding: 2rem 1.5rem;
    counter-increment: step;
    position: relative;
}

.process-step::before {
    content: counter(step, decimal-leading-zero);
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--brand-green);
    opacity: 0.2;
    margin-bottom: 1rem;
    line-height: 1;
    font-family: var(--font-heading);
}

.process-step h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.process-step p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
    opacity: 0.8;
}

/* --- Service Cards --- */
.services-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--secondary-bg);
}

.services-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-section .section-header h2 {
    font-size: 4.5rem;
    color: var(--text-color);
}

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

.service-card {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.service-card .service-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background-color: var(--brand-green);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card .service-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary-bg);
    fill: none;
}


.service-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.service-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

/* --- FAQ / Accordion --- */
.faq-section {
    padding: var(--spacing-xl) 0;
}

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

.faq-section .section-header h2 {
    font-size: 4.5rem;
    color: var(--text-color);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(92, 83, 71, 0.15);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    text-align: left;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--brand-green);
}

.faq-question svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    color: var(--brand-green);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 2000px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    opacity: 0.8;
}

/* --- Benefits Grid (Vet Clinics) --- */
.benefits-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--secondary-bg);
}

.benefits-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.benefits-section .section-header h2 {
    font-size: 4.5rem;
    color: var(--text-color);
}

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

.benefit-card {
    text-align: center;
    padding: 3rem 2rem;
}

.benefit-card .benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background-color: var(--brand-green);
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-card .benefit-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary-bg);
    fill: none;
}

.benefit-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.benefit-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
    opacity: 0.8;
}

/* --- CTA Section --- */
.cta-section {
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 4rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.3rem;
    color: var(--text-color);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

/* --- Blog Grid --- */
.blog-section {
    padding: var(--spacing-xl) 0;
}

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

.blog-card {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.blog-card .blog-image {
    height: 220px;
    overflow: hidden;
    background-color: var(--secondary-bg);
}

.blog-card .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-card .blog-content {
    padding: 2rem;
}

.blog-card .blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.blog-card .blog-meta span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brand-green);
    font-weight: 600;
}

.blog-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-color);
    line-height: 1.3;
}

.blog-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    opacity: 0.75;
    margin-bottom: 1.2rem;
}

.blog-card .read-more {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: var(--brand-green);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.blog-card:hover .read-more {
    gap: 0.8rem;
}

/* --- Page-Specific Responsive --- */
@media (max-width: 1024px) {
    .page-hero .hero-content h1 {
        font-size: 3.5rem;
    }

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

    .story-grid::before {
        display: none;
    }

    .story-title-col h2 {
        font-size: 3.5rem;
    }

    .values-grid,
    .service-cards,
    .benefits-grid,
    .blog-grid {
        grid-template-columns: 1fr 1fr;
    }

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

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

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

/* --- Arrangements Modal --- */
.arrangements-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(92, 83, 71, 0.5);
    backdrop-filter: blur(4px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.arrangements-modal {
    background-color: var(--primary-bg);
    border-radius: 20px;
    padding: 3.5rem 3rem;
    max-width: 520px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.arrangements-modal .modal-close {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    line-height: 1;
}

.arrangements-modal .modal-close:hover {
    opacity: 1;
}

.arrangements-modal h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.arrangements-modal p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 2.5rem;
}

.arrangements-modal .modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.arrangements-modal .modal-btn {
    display: block;
    padding: 1.2rem 2rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.arrangements-modal .modal-btn-primary {
    background-color: var(--brand-green);
    color: var(--primary-bg);
    border: none;
    box-shadow: 0 4px 20px rgba(75, 93, 72, 0.25);
}

.arrangements-modal .modal-btn-primary:hover {
    background-color: var(--brand-brown);
    box-shadow: 0 6px 24px rgba(92, 83, 71, 0.3);
    transform: translateY(-1px);
}

.arrangements-modal .modal-btn-secondary {
    background-color: transparent;
    color: var(--brand-brown);
    border: 1px solid rgba(92, 83, 71, 0.3);
}

.arrangements-modal .modal-btn-secondary:hover {
    background-color: var(--brand-brown);
    color: var(--primary-bg);
    border-color: var(--brand-brown);
}

@media (max-width: 480px) {
    .arrangements-modal {
        padding: 2.5rem 1.8rem;
    }

    .arrangements-modal h2 {
        font-size: 1.6rem;
    }
}

/* --- Coming Soon Popup --- */
.coming-soon-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(92, 83, 71, 0.55);
    backdrop-filter: blur(6px);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    animation: fadeInOverlay 0.5s ease;
}

.coming-soon-modal {
    background-color: var(--primary-bg);
    border-radius: 20px;
    padding: 3.5rem 3rem;
    max-width: 480px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    animation: fadeInUp 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.coming-soon-modal .modal-close {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    line-height: 1;
}

.coming-soon-modal .modal-close:hover {
    opacity: 1;
}

.coming-soon-modal h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    font-style: italic;
    color: var(--brand-green);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.coming-soon-modal p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 2rem;
}

.coming-soon-modal .modal-btn-primary {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    background-color: var(--brand-green);
    color: var(--primary-bg);
    border: none;
    box-shadow: 0 4px 20px rgba(75, 93, 72, 0.25);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.coming-soon-modal .modal-btn-primary:hover {
    background-color: var(--brand-brown);
    box-shadow: 0 6px 24px rgba(92, 83, 71, 0.3);
    transform: translateY(-1px);
}

@keyframes fadeInOverlay {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 768px) {
    .coming-soon-modal {
        padding: 2.5rem 2rem;
        max-width: 360px;
    }

    .coming-soon-modal h2 {
        font-size: 1.6rem;
    }

    .coming-soon-modal p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .coming-soon-modal .modal-btn-primary {
        padding: 0.9rem 2rem;
        font-size: 0.8rem;
    }

    .coming-soon-modal img {
        width: 90px !important;
        margin-bottom: 1rem !important;
    }
}

@media (max-width: 480px) {
    .coming-soon-modal {
        padding: 2rem 1.5rem;
        max-width: 300px;
    }

    .coming-soon-modal h2 {
        font-size: 1.4rem;
    }

    .coming-soon-modal p {
        font-size: 0.88rem;
    }
}

/* --- Floating CTA Button --- */
.floating-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.2rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--primary-bg);
    background-color: var(--brand-green);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(75, 93, 72, 0.35);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    overflow: hidden;
}

.floating-cta::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background-color: var(--brand-brown);
    z-index: -1;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border-radius: 50px;
}

.floating-cta:hover {
    box-shadow: 0 8px 32px rgba(75, 93, 72, 0.5);
    transform: translateY(-2px);
}

.floating-cta:hover::before {
    transform: scaleY(1);
}

.floating-cta.cta-hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    pointer-events: none;
}

@media (max-width: 768px) {
    .floating-cta {
        bottom: 1.2rem;
        right: 1.2rem;
        padding: 0.85rem 1.6rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .floating-cta {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .page-hero {
        height: 40vh;
        min-height: 300px;
    }

    .page-hero .hero-content h1 {
        font-size: 2.8rem;
    }

    .page-hero .hero-content p {
        font-size: 1.1rem;
    }

    .values-grid,
    .service-cards,
    .benefits-grid,
    .blog-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

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

    .values-grid .section-header h2,
    .process-section .section-header h2,
    .services-section .section-header h2,
    .faq-section .section-header h2,
    .benefits-section .section-header h2,
    .team-section .section-header h2 {
        font-size: 3rem;
    }

    .cta-section h2 {
        font-size: 2.8rem;
    }

    .blog-card .blog-image {
        height: 180px;
    }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .site-header {
        padding: 1rem 2rem 0.4rem;
    }

    .hero-logo {
        left: 2rem;
        height: 180px;
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

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

    .mission-grid::before {
        display: none;
    }

    .mission-title-col h2 {
        font-size: 4rem;
    }

    .concept h1,
    .concept h2 {
        font-size: 5rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        min-height: auto;
    }

    .info-card {
        align-self: auto !important;
        text-align: center;
    }

    .info-card.center-card,
    .info-card.right-card {
        text-align: center;
    }

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

    .main-nav a {
        font-size: 1.1rem;
    }

    .secondary-image-break {
        height: 400px;
    }
}

@media (max-width: 768px) {

    /* --- Mobile Header --- */
    .site-header {
        padding: 0.8rem 1.5rem 0.4rem;
        flex-wrap: wrap;
        background-color: var(--primary-bg);
    }

    .hamburger {
        display: flex;
        order: 3;
        margin-left: auto;
    }

    .logo-container {
        order: 1;
        width: 40px;
        height: 40px;
    }

    .logo-compact {
        opacity: 1 !important;
    }

    .hero-logo {
        display: none;
    }

    .main-nav {
        order: 4;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, opacity 0.3s ease;
        opacity: 0;
    }

    .site-header.nav-open .main-nav {
        max-height: 800px;
        opacity: 1;
        overflow-y: auto;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem 0;
        align-items: stretch;
    }

    .main-nav > ul > li {
        width: 100%;
        text-align: center;
    }

    .main-nav a {
        font-size: 1rem;
        letter-spacing: 0;
        display: block;
        padding: 0.7rem 0;
    }

    .main-nav a.active {
        display: block;
        padding: 0.7rem 0;
        margin-bottom: 0;
    }

    /* Mobile dropdown: always visible, no toggle */
    .dropdown .dropdown-menu,
    .dropdown:hover .dropdown-menu,
    .dropdown.open .dropdown-menu,
    .dropdown.open:hover .dropdown-menu {
        position: static !important;
        transform: none !important;
        max-height: none !important;
        overflow: visible !important;
        opacity: 1 !important;
        visibility: visible !important;
        padding: 0 !important;
        margin: 0 !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        min-width: 0 !important;
        width: 100% !important;
    }

    /* Hide chevron arrow on mobile — no dropdown behaviour */
    .dropdown > a svg {
        display: none;
    }

    .dropdown-menu {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .dropdown-menu li {
        width: 100%;
        text-align: center;
    }

    .dropdown-menu li a {
        display: block;
        width: 100%;
        font-size: 1rem;
        padding: 0.7rem 0;
        background-color: rgba(92, 83, 71, 0.45);
        color: var(--primary-bg);
    }

    /* --- Mobile Hero --- */
    .hero {
        margin: 0;
        border-radius: 0;
        min-height: 75vh;
        height: auto;
    }

    /* Collapse inline 2-col / 3-col grids to single column on mobile */
    .values-section .wrapper > div[style*="grid-template-columns: 1fr 1fr"],
    .wrapper [style*="grid-template-columns: 1fr 1fr"],
    .wrapper [style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    /* Prevent floating CTA from covering page content/footer */
    body {
        padding-bottom: 0;
    }

    .site-footer {
        padding-bottom: 0;
    }

    .site-footer .footer-bottom {
        padding-bottom: 6.5rem;
    }

    .hero-content {
        padding: 0 1.5rem;
        text-align: center;
        transform: translateY(0);
    }

    .hero-title {
        font-size: 3.2rem;
        letter-spacing: -0.5px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-btn {
        font-size: 0.8rem;
        padding: 0.9rem 2rem;
    }

    /* --- Mobile Concept Section --- */
    .concept {
        grid-template-columns: 1fr !important;
        padding: 4.5rem 1.5rem !important;
        text-align: center;
    }

    .concept h1,
    .concept h2 {
        font-size: 3.8rem;
        line-height: 1;
        margin: 0 auto 2.25rem;
        text-align: center;
    }

    /* small decorative rule under the title instead of a harsh side border */
    .concept h1::after,
    .concept h2::after {
        content: "";
        display: block;
        width: 48px;
        height: 1px;
        background-color: var(--brand-brown);
        opacity: 0.5;
        margin: 1.5rem auto 0;
    }

    .concept-text {
        padding-left: 0;
        border-left: none;
        font-size: 1.05rem;
        line-height: 1.85;
        max-width: 34ch;
        margin: 0 auto;
        text-align: center;
    }

    .concept-text p {
        margin-bottom: 1.25rem;
    }

    /* --- Mobile Image Breaks --- */
    .main-image-break {
        height: 350px;
    }

    .secondary-image-break {
        height: 300px;
        max-width: 100%;
    }

    .image-bleed-left .image-container,
    .image-bleed-right .image-container {
        border-radius: 20px;
    }

    /* --- Mobile Mission Section --- */
    .mission {
        padding: 4.5rem 1.5rem !important;
        text-align: center;
    }

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .mission-grid::before {
        display: none;
    }

    .mission-title-col {
        text-align: center;
    }

    .mission-title-col .subheading {
        display: block;
        text-align: center;
    }

    .mission-title-col h2 {
        font-size: 3rem;
        line-height: 1.05;
        margin: 0.75rem auto 0;
        text-align: center;
    }

    .mission-title-col h2::after {
        content: "";
        display: block;
        width: 48px;
        height: 1px;
        background-color: var(--brand-brown);
        opacity: 0.5;
        margin: 1.25rem auto 0;
    }

    .mission-text-col {
        text-align: center;
        max-width: 34ch;
        margin: 0 auto;
    }

    .mission-text-col p {
        font-size: 1.05rem;
        line-height: 1.85;
        margin-bottom: 1.25rem;
    }

    .mission-text-col .btn {
        margin-top: 0.5rem;
    }

    /* --- Mobile Story Section (shared across inner pages) --- */
    .story-section {
        padding: 4rem 1.5rem !important;
        text-align: center;
    }

    .story-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        text-align: center;
    }

    .story-grid::before {
        display: none;
    }

    .story-title-col {
        text-align: center !important;
    }

    .story-title-col .subheading {
        display: block;
        text-align: center;
    }

    .story-title-col h2 {
        font-size: 3rem;
        line-height: 1.05;
        margin: 0.75rem auto 0;
        text-align: center;
    }

    .story-title-col h2::after {
        content: "";
        display: block;
        width: 48px;
        height: 1px;
        background-color: var(--brand-brown);
        opacity: 0.5;
        margin: 1.25rem auto 0;
    }

    .story-text-col {
        text-align: center;
        max-width: 34ch;
        margin: 0 auto;
    }

    .story-text-col p {
        font-size: 1.05rem;
        line-height: 1.85;
        margin-bottom: 1.25rem;
    }

    .story-text-col .btn {
        margin-top: 0.5rem;
    }

    /* --- Mobile Info Grid --- */
    .info-grid-section {
        padding: 3rem 1.5rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        min-height: auto;
    }

    .info-card {
        align-self: auto !important;
        text-align: center;
    }

    .info-card h3 {
        font-size: 2.2rem;
    }

    .info-card .subheading {
        font-size: 0.9rem;
    }

    .info-card .btn-outline {
        padding: 0.7rem 1.8rem;
        font-size: 0.8rem;
    }

    /* --- Mobile Footer --- */
    .site-footer {
        padding: 2rem 0 1rem;
    }

    .footer-wrapper {
        grid-template-columns: auto auto;
        justify-content: center;
        gap: 1.75rem 3rem;
        text-align: left;
        padding: 0 1.25rem;
        align-items: start;
    }

    /* Brand/logo column spans full width on top */
    .footer-wrapper .brand-col {
        grid-column: 1 / -1;
        display: flex;
        justify-content: center;
        margin-bottom: 0.5rem;
    }

    .footer-logo {
        justify-content: center;
        display: flex;
    }

    .footer-col h4 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .footer-col p,
    .footer-links a {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .footer-links {
        gap: 0.35rem;
    }

    .social-icons {
        justify-content: flex-start;
    }

    /* Follow Us spans full width and centers under both columns */
    .footer-wrapper .social-col {
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer-wrapper .social-col .social-icons {
        justify-content: center;
    }

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

    .footer-logo-img {
        max-height: 120px;
    }

    .footer-col h4 {
        margin-bottom: 0.5rem;
    }

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

    /* --- Mobile Layout Utilities --- */
    .section-padding {
        padding: 3rem 0;
    }

    .wrapper {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {

    /* --- Small Phone Refinements --- */
    .site-header {
        padding: 0.6rem 1rem 0.3rem;
    }

    .hero-logo {
        height: 130px;
    }

    .hero-title {
        font-size: 2.6rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .concept h1,
    .concept h2 {
        font-size: 2.8rem;
    }

    .mission-title-col h2 {
        font-size: 2.5rem;
    }

    .info-card h3 {
        font-size: 1.8rem;
    }

    .main-image-break {
        height: 250px;
    }

    .secondary-image-break {
        height: 220px;
    }

    .main-nav a {
        font-size: 0.9rem;
    }

    .main-nav ul {
        gap: 0;
    }
}