/* 
 * Sykes Painting Company - Unified Stylesheet
 * Luxury Design Theme
 * Version 1.0
 */

/* ==========================================
   CSS VARIABLES
   ========================================== */
:root {
    --navy: #1a3a52;
    --blue: #015581;
    /* --blue: #2c5f8d; */
    /* --gold: #007888; */
    --gold: #c9a961;
    --dark-gold: #b89851;
    --charcoal: #2d2d2d;
    --off-white: #fafaf8;
    --cream: #f5f3ef;
    --white: #ffffff;
    --text: #3a3a3a;
    --error: #c44545;
    --success: #4a9d5f;

	--logo-green: #00788B;
	--logo-blue: #015581;
}

/* ==========================================
   GLOBAL RESET & BASE STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--off-white);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ==========================================
   DECORATIVE ELEMENTS
   ========================================== */
.ornament {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 1.5rem auto;
}

.ornament-left {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: 1.5rem 0;
}

.ornament-vertical {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    margin: 0 auto;
}

/* ==========================================
   HEADER
   ========================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 1000;
    padding: 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid var(--gold);
}

.header-top {
    background: var(--navy);
    padding: 0.7rem 0;
    text-align: center;
}

.header-top p {
    font-size: 0.8rem;
    color: var(--cream);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
}

.header-top span {
    color: var(--gold);
    font-weight: 500;
}

.header-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo {
    font-family: 'Crimson Pro', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    letter-spacing: 1px;
    /* margin-bottom: 0.1rem; */
}

.logo-tagline {
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 500;
	display: none;;
}

.logo img {
	width: auto;
	object-fit: contain;
	border-radius: 8px;
}

nav ul {
    display: flex;
    gap: 3.5rem;
    list-style: none;
}

nav a {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--charcoal);
    text-decoration: none;
    position: relative;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

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

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 26px;
    height: 2px;
    background: var(--navy);
    transition: all 0.3s ease;
}

/* ==========================================
   PAGE HEADER
   ========================================== */
.page-header {
    margin-top: 130px;
    padding: 5rem 4rem 3rem;
    background: linear-gradient(to bottom, var(--white), var(--cream));
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 150px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

.page-title {
    font-family: 'Crimson Pro', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.page-subtitle {
    font-size: 1.15rem;
    color: var(--text);
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.8;
}

/* ==========================================
   HOME PAGE - HERO SECTION
   ========================================== */
.hero {
    margin-top: 130px;
    padding: 5rem 4rem 8rem;
    background: linear-gradient(to bottom, var(--white), var(--cream));
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 200px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

.hero-container {
    max-width: 1500px;
    margin: 0 auto;
    text-align: center;
}

.hero-intro {
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero h1 {
    font-family: 'Crimson Pro', serif;
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 300;
    color: var(--navy);
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -1px;
	color: var(--blue)
}

.hero h1 em {
    font-style: italic;
    font-weight: 600;
    color: var(--blue);
}

.hero-description {
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.15rem;
    color: var(--text);
    line-height: 1.9;
    font-weight: 300;
}

/* ==========================================
   HOME PAGE - SHOWCASE
   ========================================== */
.showcase {
    max-width: 1500px;
    margin: -4rem auto 0;
    padding: 0 4rem;
    position: relative;
    z-index: 10;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr 0.9fr;
    gap: 2rem;
}

.showcase-item {
    position: relative;
    overflow: hidden;
}

.showcase-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid var(--gold);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
    pointer-events: none;
}

.showcase-item:hover::before {
    opacity: 1;
}

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

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

.showcase-item:nth-child(2) {
    margin-top: 3rem;
}

/* ==========================================
   MISSION SECTION
   ========================================== */
.mission {
    padding: 8rem 4rem;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.mission::before,
.mission::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(201, 169, 97, 0.1);
    border-radius: 50%;
}

.mission::before {
    top: -200px;
    left: -100px;
}

.mission::after {
    bottom: -200px;
    right: -100px;
}

.mission-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.mission-label {
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
    font-weight: 500;
}

.mission-container h2,
.mission h2 {
    font-family: 'Crimson Pro', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--white);
    line-height: 1.6;
    font-weight: 300;
}

/* ==========================================
   HOME PAGE - VALUES SECTION
   ========================================== */
.values {
    padding: 8rem 4rem;
    background: var(--cream);
}

.values-container {
    max-width: 1500px;
    margin: 0 auto;
}

.values-header {
    text-align: center;
    margin-bottom: 6rem;
}

.values-title {
    font-family: 'Crimson Pro', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.values-subtitle {
    font-size: 1.1rem;
    color: var(--text);
    font-weight: 300;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.value-item {
    background: var(--white);
    padding: 4rem 3.5rem;
    border: 1px solid rgba(201, 169, 97, 0.2);
    position: relative;
    transition: all 0.4s ease;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--dark-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.value-item:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.value-item:hover::before {
    transform: scaleX(1);
}

.value-number {
    font-family: 'Crimson Pro', serif;
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.value-item h3 {
    font-family: 'Crimson Pro', serif;
    font-size: 2.2rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.value-item p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text);
    font-weight: 300;
}

.emphasis {
    color: var(--blue);
    font-weight: 500;
    font-style: italic;
}

/* ==========================================
   HOME PAGE - CTA SECTION
   ========================================== */
.home-cta-section {
    padding: 6rem 4rem;
    background: var(--white);
    text-align: center;
}

.home-cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.home-cta-title {
    font-family: 'Crimson Pro', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--navy);
    margin-bottom: 2rem;
    font-weight: 600;
    font-style: italic;
}

.home-cta-button {
    display: inline-block;
    padding: 1.3rem 3.5rem;
    background: var(--navy);
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    border: 2px solid var(--navy);
    transition: all 0.4s ease;
    margin-top: 1rem;
}

.home-cta-button:hover {
    background: transparent;
    color: var(--navy);
    border-color: var(--gold);
}

/* ==========================================
   PORTFOLIO PAGE
   ========================================== */
.portfolio-section {
    padding: 6rem 4rem;
    background: var(--cream);
}

.portfolio-container {
    max-width: 1500px;
    margin: 0 auto;
}

.category {
    margin-bottom: 6rem;
}

.category:last-child {
    margin-bottom: 0;
}

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

.category-title {
    font-family: 'Crimson Pro', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.album-card {
    background: var(--white);
    border: 1px solid rgba(201, 169, 97, 0.2);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
}

.album-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--dark-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 2;
}

.album-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: var(--gold);
}

.album-card:hover::before {
    transform: scaleX(1);
}

.album-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.album-info {
    padding: 2rem;
}

.album-location {
    font-family: 'Crimson Pro', serif;
    font-size: 1.5rem;
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.album-type {
    font-size: 0.85rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gold);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--navy);
    transition: all 0.3s ease;
    z-index: 2001;
}

.lightbox-close:hover {
    background: var(--white);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(201, 169, 97, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--navy);
    transition: all 0.3s ease;
    font-weight: 300;
}

.lightbox-nav:hover {
    background: var(--gold);
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-counter {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(201, 169, 97, 0.9);
    color: var(--navy);
    padding: 0.8rem 2rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.lightbox-title {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: rgba(201, 169, 97, 0.9);
    color: var(--navy);
    padding: 1rem 2rem;
    font-family: 'Crimson Pro', serif;
    font-size: 1.5rem;
    font-weight: 600;
}

/* ==========================================
   SERVICES PAGE
   ========================================== */
.services-section {
    padding: 6rem 4rem;
    background: var(--cream);
}

.services-container {
    max-width: 1500px;
    margin: 0 auto;
}

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

.service-card {
    background: var(--white);
    padding: 3.5rem 3rem;
    border: 1px solid rgba(201, 169, 97, 0.2);
    position: relative;
    transition: all 0.4s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--dark-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 2;
}

.service-card h3 {
    font-family: 'Crimson Pro', serif;
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.service-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-list li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
}

.service-list li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.7rem;
}

.featured-service {
    background: var(--white);
    padding: 4rem 3.5rem;
    border: 1px solid rgba(201, 169, 97, 0.2);
    position: relative;
    margin-top: 3rem;
}

.featured-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--dark-gold));
}

.featured-header {
    text-align: center;
    margin-bottom: 3rem;
}

.featured-header h3 {
    font-family: 'Crimson Pro', serif;
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
    font-weight: 600;
}

.featured-intro {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text);
    margin-bottom: 2.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

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

.featured-text h4 {
    font-family: 'Crimson Pro', serif;
    font-size: 1.5rem;
    color: var(--blue);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

.featured-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.featured-list li {
    padding-left: 1.8rem;
    margin-bottom: 1rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text);
}

.featured-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 600;
    font-size: 1.2rem;
}

.featured-image {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid rgba(201, 169, 97, 0.2);
}

/* Services CTA Section */
.cta-section {
    background: var(--navy);
    padding: 5rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before,
.cta-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(201, 169, 97, 0.1);
    border-radius: 50%;
}

.cta-section::before {
    top: -200px;
    left: -100px;
}

.cta-section::after {
    bottom: -200px;
    right: -100px;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.cta-title {
    font-family: 'Crimson Pro', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.cta-text {
    font-size: 1.15rem;
    color: var(--cream);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 1.3rem 3.5rem;
    background: var(--gold);
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    border: 2px solid var(--gold);
    transition: all 0.4s ease;
}

.cta-button:hover {
    background: transparent;
    color: var(--gold);
}

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

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-intro {
    background: var(--white);
    padding: 4rem 4rem;
    border: 1px solid rgba(201, 169, 97, 0.2);
    position: relative;
    margin-bottom: 5rem;
}

.about-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--dark-gold));
}

.about-intro p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.about-intro p:last-child {
    margin-bottom: 0;
}

.highlight {
    color: var(--blue);
    font-weight: 500;
}

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

.stat-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--white);
    border: 1px solid rgba(201, 169, 97, 0.2);
    transition: all 0.4s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.stat-number {
    font-family: 'Crimson Pro', serif;
    font-size: 3.5rem;
    color: var(--gold);
    font-weight: 600;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
}

.owner-section {
    background: var(--white);
    padding: 4rem;
    border: 1px solid rgba(201, 169, 97, 0.2);
    position: relative;
}

.owner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--dark-gold));
}

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

.owner-header h2 {
    font-family: 'Crimson Pro', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 1rem;
}

.owner-content {
    display: grid;
    /* grid-template-columns: 400px 1fr; */
    gap: 4rem;
    align-items: start;
}

.owner-image {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--cream);
    border: 1px solid rgba(201, 169, 97, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 2rem;
}

.owner-image::before {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold);
    z-index: -1;
}

.placeholder-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.placeholder-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
}

.placeholder-text {
    font-family: 'Crimson Pro', serif;
    font-size: 1.2rem;
    color: var(--gold);
    text-align: center;
    font-style: italic;
}

.owner-bio h3 {
    font-family: 'Crimson Pro', serif;
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.owner-bio p:last-child {
    margin-bottom: 0;
}

.mission-statement {
    background: var(--navy);
    padding: 5rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 6rem;
}

.mission-statement::before,
.mission-statement::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(201, 169, 97, 0.1);
    border-radius: 50%;
}

.mission-statement::before {
    top: -200px;
    left: -100px;
}

.mission-statement::after {
    bottom: -200px;
    right: -100px;
}

/* ==========================================
   CONTACT PAGE
   ========================================== */
.contact-section {
    padding: 6rem 4rem;
    background: var(--cream);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.contact-info {
    background: var(--white);
    padding: 3.5rem 3rem;
    border: 1px solid rgba(201, 169, 97, 0.2);
    position: relative;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--dark-gold));
}

.contact-info h2 {
    font-family: 'Crimson Pro', serif;
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 2rem;
    font-weight: 600;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.info-value {
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.6;
}

.service-areas {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
}

.service-areas h3 {
    font-family: 'Crimson Pro', serif;
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
    font-weight: 600;
}

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

/* Contact Form */
.contact-form-container {
    background: var(--white);
    padding: 3.5rem 3rem;
    border: 1px solid rgba(201, 169, 97, 0.2);
    position: relative;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--dark-gold));
}

.form-header {
    margin-bottom: 2.5rem;
}

.form-header h2 {
    font-family: 'Crimson Pro', serif;
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-header p {
    font-size: 1rem;
    color: var(--text);
}

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.form-group label .required {
    color: var(--gold);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(201, 169, 97, 0.3);
    background: var(--off-white);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--text);
    transition: all 0.3s ease;
}

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

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

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

.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.submit-btn {
    width: 100%;
    padding: 1.3rem;
    background: var(--navy);
    color: var(--white);
    border: 2px solid var(--navy);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: transparent;
    color: var(--navy);
    border-color: var(--gold);
}

.submit-btn:disabled {
    background: var(--text);
    border-color: var(--text);
    cursor: not-allowed;
    opacity: 0.6;
}

.form-message {
    padding: 1.2rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
    font-size: 0.95rem;
    display: none;
}

.form-message.show {
    display: block;
}

.form-message.success {
    background: rgba(74, 157, 95, 0.1);
    border: 1px solid var(--success);
    color: var(--success);
}

.form-message.error {
    background: rgba(196, 69, 69, 0.1);
    border: 1px solid var(--error);
    color: var(--error);
}

.field-error {
    color: var(--error);
    font-size: 0.85rem;
    margin-top: 0.4rem;
    display: none;
}

.field-error.show {
    display: block;
}

.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error select {
    border-color: var(--error);
}

/* ==========================================
   IMPROVED CONTACT FORM NOTIFICATIONS
   Replace the contact form styles in sykes-styles.css
   ========================================== */

/* Toast Notification Container */
.toast-container {
    position: fixed;
    top: 100px;
    right: 30px;
    z-index: 10000;
    pointer-events: none;
}

.toast {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 1.5rem;
    margin-bottom: 1rem;
    min-width: 350px;
    max-width: 450px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transform: translateX(500px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: all;
    border-left: 4px solid;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast.success {
    border-left-color: #4a9d5f;
}

.toast.error {
    border-left-color: #c44545;
}

.toast-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.toast.success .toast-icon {
    background: rgba(74, 157, 95, 0.1);
    color: #4a9d5f;
}

.toast.error .toast-icon {
    background: rgba(196, 69, 69, 0.1);
    color: #c44545;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-family: 'Crimson Pro', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.3rem;
}

.toast-message {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.5;
}

.toast-close {
    flex-shrink: 0;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
    line-height: 1;
}

.toast-close:hover {
    color: var(--navy);
}

/* Progress bar */
.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 0 0 8px 8px;
    overflow: hidden;
}

.toast-progress-bar {
    height: 100%;
    background: currentColor;
    animation: progress 5s linear forwards;
    transform-origin: left;
}

.toast.success .toast-progress-bar {
    color: #4a9d5f;
}

.toast.error .toast-progress-bar {
    color: #c44545;
}

@keyframes progress {
    from { transform: scaleX(1); }
    to { transform: scaleX(0); }
}

/* Improved Field Validation */
.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error select {
    border-color: #c44545;
    background: rgba(196, 69, 69, 0.03);
    animation: shake 0.4s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-8px); }
    75% { transform: translateX(8px); }
}

.field-error {
    color: #c44545;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: none;
    align-items: center;
    gap: 0.5rem;
}

.field-error.show {
    display: flex;
    animation: slideDown 0.3s ease;
}

.field-error::before {
    content: '⚠';
    font-size: 1rem;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Submit Button Loading */
.submit-btn.loading {
    position: relative;
    color: transparent;
    pointer-events: none;
}

.submit-btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 3px solid var(--white);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spinner 0.8s linear infinite;
}

@keyframes spinner {
    to { transform: rotate(360deg); }
}

/* Success Modal */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.success-modal.show {
    display: flex;
    opacity: 1;
}

.success-modal-content {
    background: var(--white);
    border-radius: 12px;
    padding: 3rem;
    max-width: 500px;
    text-align: center;
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.success-modal.show .success-modal-content {
    transform: scale(1);
}

.success-modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #4a9d5f, #5fd47f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
    animation: scaleIn 0.5s ease 0.2s backwards;
}

@keyframes scaleIn {
    from { transform: scale(0) rotate(-180deg); }
    to { transform: scale(1) rotate(0deg); }
}

.success-modal-title {
    font-family: 'Crimson Pro', serif;
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 1rem;
    font-weight: 600;
}

.success-modal-message {
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.success-modal-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.success-modal-button:hover {
    background: var(--blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(44, 95, 141, 0.3);
}

/* Hide old form-message */
.form-message {
    display: none !important;
}

/* Responsive */
@media (max-width: 640px) {
    .toast-container {
        right: 15px;
        left: 15px;
    }
    
    .toast {
        min-width: auto;
        max-width: none;
    }
    
    .success-modal-content {
        margin: 1rem;
        padding: 2rem;
    }
    
    .success-modal-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .success-modal-title {
        font-size: 1.5rem;
    }
}


/* ==========================================
   FOOTER
   ========================================== */
footer {
    background: var(--charcoal);
    color: var(--cream);
    padding: 5rem 4rem 3rem;
}

.footer-container {
    max-width: 1500px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 5rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-family: 'Crimson Pro', serif;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 600;
	line-height: normal;
}

.footer-brand p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(250, 250, 248, 0.7);
    font-weight: 300;
    max-width: 400px;
}

.footer-section h4 {
    font-family: 'Crimson Pro', serif;
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-nav a {
    color: rgba(250, 250, 248, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-nav a:hover {
    color: var(--gold);
    padding-left: 10px;
}

.footer-contact p {
    color: rgba(250, 250, 248, 0.7);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(250, 250, 248, 0.5);
    font-weight: 300;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 1024px) {
    .header-container {
        padding: 1.5rem 2rem;
    }

    .menu-toggle {
        display: flex;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 2rem;
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
        border-top: 1px solid var(--gold);
    }

    nav.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    nav ul {
        flex-direction: column;
        gap: 1.5rem;
    }

    .page-header,
    .services-section,
    .about-section,
    .contact-section,
    footer {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .hero,
    .showcase,
    .mission,
    .values,
    .home-cta-section,
    .cta-section,
    .portfolio-section {
        padding-left: 2rem;
        padding-right: 2rem;
    }

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

    .showcase-item:nth-child(2) {
        margin-top: 0;
    }

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

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

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

    .album-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 2rem;
    }

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

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

    .owner-image {
        max-width: 400px;
        margin: 0 auto;
    }

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

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

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

    .lightbox-nav {
        width: 50px;
        height: 50px;
    }

    .lightbox-prev {
        left: 1rem;
    }

    .lightbox-next {
        right: 1rem;
    }

    .lightbox-title {
        font-size: 1.2rem;
        padding: 0.8rem 1.5rem;
        left: 1rem;
    }

    .lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 640px) {
    .service-card,
    .featured-service,
    .contact-info,
    .contact-form-container,
    .about-intro,
    .owner-section {
        padding: 2.5rem 2rem;
    }

	.logo img {
		height: 65px;
	}

    .featured-image {
        min-height: 300px;
    }

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

    .lightbox-title {
		display: none;
        position: static;
        margin-bottom: 1rem;
    }

    .lightbox-content {
        flex-direction: column;
    }

    .lightbox-counter {
        bottom: 1rem;
        font-size: 0.8rem;
        padding: 0.6rem 1.5rem;
    }

    .owner-image {
        aspect-ratio: 1/1;
    }
}
