/* =========================================
   TOKENS
   ========================================= */
:root {
    --bg: #faf9f6;
    --surface: #ffffff;
    --ink: #1a2233;
    --ink-mid: #4b5468;
    --ink-dim: #8b93a3;
    --navy: #1c2e4a;
    --navy-dark: #111e33;
    --navy-tint: #eef1f6;
    --gold: #c8a851;
    --gold-dark: #a8893a;
    --line: #e4e3dc;
    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    --ease: cubic-bezier(0.25, 1, 0.5, 1);
    --shadow-sm: 0 1px 3px rgba(26, 34, 51, 0.06);
    --shadow-md: 0 8px 30px rgba(26, 34, 51, 0.08);
}

/* =========================================
   RESET
   ========================================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: color 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--ink);
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6.5rem 0;
}

/* =========================================
   SECTION LABEL  (small "About", "Services" etc.)
   ========================================= */
.section-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 1rem;
}

/* =========================================
   NAVIGATION
   ========================================= */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}

header.scrolled,
header.solid {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 0.9rem 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--gold);
    transition: color 0.4s;
}

header.scrolled .logo,
header.solid .logo {
    color: var(--gold-dark);
}

.logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.4rem;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s;
}

header.scrolled .nav-links a,
header.solid .nav-links a {
    color: var(--ink-mid);
}

.nav-links a:hover {
    color: #ffffff;
}

header.scrolled .nav-links a:hover,
header.solid .nav-links a:hover {
    color: var(--gold-dark);
}

.nav-links a.active,
header.scrolled .nav-links a.active,
header.solid .nav-links a.active {
    color: var(--gold);
    font-weight: 600;
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.hamburger div {
    width: 24px;
    height: 2px;
    background: #ffffff;
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s;
}

header.scrolled .hamburger div,
header.solid .hamburger div {
    background: var(--ink);
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
    animation: kenburns 22s ease-in-out infinite;
    transform-origin: center center;
}

@keyframes kenburns {
    0%   { transform: scale(1)    translate(0, 0); }
    30%  { transform: scale(1.07) translate(-1.5%, -1%); }
    60%  { transform: scale(1.04) translate(1%, 0.5%); }
    100% { transform: scale(1)    translate(0, 0); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        100deg,
        rgba(13, 22, 38, 0.8) 0%,
        rgba(13, 22, 38, 0.45) 55%,
        rgba(13, 22, 38, 0.25) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 720px;
}

.hero-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.4rem;
}

.hero h1 {
    font-size: clamp(2.8rem, 6vw, 4.6rem);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.5px;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.hero-tagline {
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    max-width: 480px;
}

.hero-cta {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--navy-dark);
    background: var(--gold);
    padding: 1rem 2.4rem;
    border-radius: 4px;
    transition: background 0.3s, transform 0.3s;
}

.hero-cta:hover {
    background: #d9bd66;
    transform: translateY(-2px);
}

/* =========================================
   ABOUT
   ========================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text h2 {
    font-size: clamp(1.9rem, 3.2vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.05rem;
    color: var(--ink-mid);
    line-height: 1.85;
    margin-bottom: 1rem;
}

.inline-link {
    color: var(--gold-dark);
    font-weight: 500;
    border-bottom: 1px solid currentColor;
    padding-bottom: 1px;
}

.inline-link:hover {
    color: var(--navy);
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

/* =========================================
   SERVICES
   ========================================= */
#services {
    background: var(--surface);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.services-heading {
    position: sticky;
    top: 7rem;
}

.services-heading h2 {
    font-size: clamp(1.9rem, 3.2vw, 2.5rem);
}

.services-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.service-item {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 1.75rem;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.service-item:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.service-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
}

.service-item p {
    font-size: 0.95rem;
    color: var(--ink-mid);
    line-height: 1.7;
}

/* =========================================
   FOUNDER PAGE
   ========================================= */
.founder-hero {
    padding: 10rem 0 0;
    text-align: center;
}

.founder-hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    line-height: 1.1;
    margin-top: 0.5rem;
}

.founder-portrait {
    margin-top: 3rem;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.founder-portrait img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.founder-hero + .section {
    padding-top: 3.5rem;
}

.founder-content {
    max-width: 680px;
}

.founder-block {
    margin-bottom: 4rem;
}

.founder-block h2 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
}

.founder-block p {
    font-size: 1.05rem;
    color: var(--ink-mid);
    line-height: 1.85;
    margin-bottom: 1rem;
}

.founder-block p:last-child {
    margin-bottom: 0;
}

.founder-cta {
    margin-top: 1rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--line);
}

.founder-photo {
    margin-top: 4rem;
    text-align: center;
}

.founder-photo img {
    max-width: 420px;
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

/* =========================================
   GALLERY
   ========================================= */
#gallery h2 {
    font-size: clamp(1.9rem, 3.2vw, 2.5rem);
    margin-bottom: 2.5rem;
}

.gallery-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.gallery-img {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.gallery-img img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

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

.gallery-link {
    margin-top: 2rem;
    font-size: 0.95rem;
    color: var(--ink-dim);
}

.gallery-link a {
    color: var(--gold-dark);
    font-weight: 500;
    border-bottom: 1px solid currentColor;
    padding-bottom: 1px;
}

.gallery-link a:hover {
    color: var(--navy);
}

/* =========================================
   TESTIMONIAL
   ========================================= */
.testimonial-section {
    background: var(--navy);
    text-align: center;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 860px;
    margin: 0 auto;
    text-align: left;
}

.review-card {
    display: block;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 1.6rem 1.8rem;
    text-decoration: none;
    transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.review-card:hover {
    background: rgba(255,255,255,0.09);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.review-top {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #c0392b;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.review-name {
    color: #f2f1ec;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.review-stars {
    color: #f5c518;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.google-icon {
    width: 22px;
    height: 22px;
    margin-left: auto;
    flex-shrink: 0;
}

.review-text {
    color: rgba(242,241,236,0.75);
    font-size: 0.93rem;
    line-height: 1.65;
    font-style: italic;
}

/* =========================================
   CONTACT FORM
   ========================================= */
#contact h2 {
    font-size: clamp(1.9rem, 3.2vw, 2.5rem);
    margin-bottom: 1rem;
}

.contact-note {
    max-width: 580px;
    font-size: 0.95rem;
    color: var(--ink-mid);
    font-style: italic;
    margin-bottom: 2.5rem;
    padding-left: 1rem;
    border-left: 2px solid var(--gold);
    line-height: 1.7;
}

.contact-form {
    max-width: 680px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--ink-mid);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--ink);
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 6px;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200, 168, 81, 0.18);
}

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

.form-submit {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 1rem 2.6rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ffffff;
    background: var(--navy);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.form-submit:hover {
    background: var(--navy-dark);
    transform: translateY(-2px);
}

@media screen and (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

/* =========================================
   SEASONS STRIP
   ========================================= */
.seasons-strip {
    background: var(--navy);
    padding: 2.5rem 0;
}

.seasons-inner {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.seasons-heading {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--gold);
    white-space: nowrap;
    flex-shrink: 0;
}

.seasons-list {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    flex: 1;
    justify-content: flex-end;
}

.season-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 1.5rem;
    color: rgba(255, 255, 255, 0.85);
}

.season-icon {
    font-size: 1.1rem;
    line-height: 1;
}

.season-name {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}

.season-divider {
    width: 1px;
    height: 1.2rem;
    background: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

@media screen and (max-width: 768px) {
    .seasons-inner {
        gap: 1.5rem;
    }

    .seasons-heading {
        font-size: 0.95rem;
    }

    .seasons-list {
        justify-content: center;
    }

    .season-item {
        padding: 0 0.9rem;
    }
}

@media screen and (max-width: 480px) {
    .seasons-strip {
        padding: 1.75rem 0;
    }

    .seasons-inner {
        flex-direction: column;
        align-items: center;
        gap: 0.9rem;
        text-align: center;
    }

    .seasons-heading {
        text-align: center;
        font-size: 0.9rem;
    }

    .seasons-list {
        flex-wrap: nowrap;
        gap: 0;
        width: 100%;
        justify-content: center;
    }

    .season-item {
        padding: 0 0.4rem;
        gap: 0.25rem;
    }

    .season-icon {
        font-size: 0.9rem;
    }

    .season-name {
        font-size: 0.72rem;
        letter-spacing: 0.5px;
    }
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.85);
    padding: 5rem 0 2rem;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr auto;
    gap: 3rem;
    align-items: start;
    padding-bottom: 4rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.footer-logo-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-tagline {
    font-size: 0.95rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

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

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

.footer-social a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s;
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* =========================================
   NAV OVERLAY
   ========================================= */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(17, 30, 51, 0.45);
    z-index: 999;
}

.nav-overlay.active {
    display: block;
}

/* =========================================
   BACK TO TOP
   ========================================= */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--line);
    color: var(--ink-mid);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, transform 0.3s;
    z-index: 900;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    color: var(--gold-dark);
    border-color: var(--gold);
    transform: translateY(-2px);
}


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

.appear {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media screen and (max-width: 900px) {
    .about-grid,
    .services-grid,
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .services-heading {
        position: static;
    }

    .services-items,
    .gallery-row {
        grid-template-columns: 1fr;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        background: var(--surface);
        flex-direction: column;
        justify-content: center;
        width: 70%;
        max-width: 320px;
        box-shadow: -10px 0 40px rgba(17, 30, 51, 0.15);
        transition: right 0.4s var(--ease);
    }

    .nav-links a,
    header .nav-links a {
        color: var(--ink);
        font-size: 1.05rem;
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: block;
        z-index: 1001;
    }

    .hamburger.toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 5px);
        background: var(--ink);
    }
    .hamburger.toggle .line2 {
        opacity: 0;
    }
    .hamburger.toggle .line3 {
        transform: rotate(45deg) translate(-5px, -5px);
        background: var(--ink);
    }
}
