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

:root {
    --emerald-deep: #1B4332;
    --emerald-mid: #2D6A4F;
    --emerald-light: #40916C;
    --cream: #F5F0E8;
    --cream-light: #FAF7F2;
    --cream-dark: #E8E0D0;
    --charcoal: #1A1A1A;
    --text-primary: #1A1A1A;
    --text-secondary: #4A4A4A;
    --text-muted: #6B6B6B;
    --white: #FFFFFF;
    --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--cream);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 4rem);
}

/* Loader */
.loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--emerald-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-line {
    width: 60px;
    height: 2px;
    background: var(--cream);
    animation: loaderLine 1s ease-in-out infinite;
}

@keyframes loaderLine {
    0%, 100% { transform: scaleX(0.3); opacity: 0.3; }
    50% { transform: scaleX(1); opacity: 1; }
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(245, 240, 232, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.75rem 0;
    box-shadow: 0 1px 0 rgba(27, 67, 50, 0.08);
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 4rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--cream);
    transition: var(--transition);
}

.nav.scrolled .nav-logo {
    color: var(--emerald-deep);
}

.nav-logo-accent {
    color: var(--emerald-light);
}

.nav.scrolled .nav-logo-accent {
    color: var(--emerald-mid);
}

.nav-logo-icon {
    color: var(--cream);
    transition: var(--transition);
}

.nav.scrolled .nav-logo-icon {
    color: var(--emerald-deep);
}

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

.nav-link {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.75);
    transition: var(--transition);
    position: relative;
}

.nav.scrolled .nav-link {
    color: var(--text-secondary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--emerald-light);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link:focus::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--cream);
}

.nav.scrolled .nav-link:hover {
    color: var(--emerald-deep);
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: rgba(245, 240, 232, 0.8);
    transition: var(--transition);
}

.nav.scrolled .nav-phone {
    color: var(--emerald-deep);
}

.nav-phone:hover {
    color: var(--cream);
}

.nav.scrolled .nav-phone:hover {
    color: var(--emerald-mid);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 22px;
    height: 1.5px;
    background: var(--cream);
    transition: var(--transition);
    transform-origin: center;
}

.nav.scrolled .nav-toggle span {
    background: var(--emerald-deep);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

.nav-mobile {
    display: none;
    position: fixed;
    inset: 0;
    top: auto;
    background: var(--emerald-deep);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.nav-mobile.active {
    opacity: 1;
    visibility: visible;
}

.nav-mobile a {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 500;
    color: var(--cream);
    transition: var(--transition);
}

.nav-mobile a:hover {
    color: var(--emerald-light);
}

/* Hero */
.hero {
    min-height: 100vh;
    background: var(--emerald-deep);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(45, 106, 79, 0.3) 0%, transparent 70%),
        radial-gradient(circle at 20% 80%, rgba(64, 145, 108, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 100vh;
    align-items: center;
    padding: 0;
}

.hero-left {
    padding: clamp(8rem, 15vw, 10rem) clamp(1.5rem, 4vw, 4rem) 4rem;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

.hero-left::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(245, 240, 232, 0.08);
}

.hero-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.5);
    margin-bottom: 2rem;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.75rem, 5.5vw, 5.5rem);
    font-weight: 400;
    line-height: 1.08;
    color: var(--cream);
    margin-bottom: 2rem;
    max-width: 680px;
}

.hero-headline .hero-accent {
    font-style: italic;
    font-weight: 400;
    color: rgba(245, 240, 232, 0.65);
}

.hero-sub {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: rgba(245, 240, 232, 0.6);
    max-width: 480px;
    margin-bottom: 3rem;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border-radius: 0;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    background: none;
}

.btn-primary {
    background: var(--cream);
    color: var(--emerald-deep);
}

.btn-primary:hover {
    background: var(--cream-dark);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--cream);
    border: 1px solid rgba(245, 240, 232, 0.3);
}

.btn-ghost:hover {
    border-color: var(--cream);
    color: var(--cream);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero-stat-num {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--cream);
}

.hero-stat-label {
    font-size: 0.6875rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.4);
}

.hero-right {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-image-col {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 2fr 1fr;
    height: 100%;
    position: relative;
}

.hero-img {
    overflow: hidden;
    position: relative;
}

.hero-img--main {
    grid-row: 1 / 3;
}

.hero-img--main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}

.hero-img--accent {
    grid-row: 2;
    grid-column: 1;
    margin-top: -3rem;
    margin-left: -2rem;
    z-index: 2;
    border: 4px solid var(--emerald-deep);
}

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

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

.hero-scroll {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0 clamp(1.5rem, 4vw, 4rem) 2rem;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

.hero-scroll span {
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.35);
}

.hero-scroll-line {
    width: 40px;
    height: 1px;
    background: rgba(245, 240, 232, 0.25);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: scaleX(0.3); transform-origin: left; }
    50% { transform: scaleX(1); transform-origin: left; }
}

/* Intro */
.intro {
    padding: clamp(6rem, 12vw, 10rem) 0;
    background: var(--cream);
}

.intro-layout {
    max-width: 900px;
}

.intro-mark {
    margin-bottom: 2rem;
}

.intro-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--emerald-mid);
    margin-bottom: 1.5rem;
}

.intro-heading {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 2.5rem;
}

.intro-body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.intro-body p {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: var(--text-secondary);
}

.intro-signature {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--cream-dark);
}

.intro-signature-line {
    flex: 0 0 40px;
    height: 1px;
    background: var(--emerald-mid);
}

.intro-signature-text {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-style: italic;
    color: var(--text-muted);
}

/* Services */
.services {
    padding: clamp(6rem, 12vw, 10rem) 0;
    background: var(--cream-light);
    position: relative;
    overflow: hidden;
}

.services-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(27, 67, 50, 0.03) 1px, transparent 0);
    background-size: 32px 32px;
    pointer-events: none;
}

.services-header {
    text-align: center;
    margin-bottom: clamp(3rem, 6vw, 5rem);
    position: relative;
}

.services-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--emerald-mid);
    margin-bottom: 1.5rem;
}

.services-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--text-primary);
}

.services-accent {
    font-style: italic;
    color: var(--emerald-mid);
}

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

.service-card {
    background: var(--white);
    padding: clamp(2rem, 3vw, 3rem);
    border: 1px solid rgba(27, 67, 50, 0.06);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--emerald-mid);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

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

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(27, 67, 50, 0.08);
}

.service-num {
    font-family: var(--font-serif);
    font-size: 0.875rem;
    color: var(--emerald-light);
    margin-bottom: 1.5rem;
    opacity: 0.6;
}

.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--cream-dark);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    color: var(--emerald-deep);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--emerald-deep);
    border-color: var(--emerald-deep);
    color: var(--cream);
}

.service-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-card p {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--text-muted);
}

/* About */
.about {
    padding: clamp(6rem, 12vw, 10rem) 0;
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-image-main {
    overflow: hidden;
}

.about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}

.about-image-main:hover img {
    transform: scale(1.03);
}

.about-image-detail {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    overflow: hidden;
    border: 4px solid var(--cream);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

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

.about-accent-box {
    position: absolute;
    top: -1.5rem;
    left: -1.5rem;
    background: var(--emerald-deep);
    padding: 1.5rem 2rem;
    z-index: 2;
}

.about-accent-num {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--cream);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.about-accent-text {
    font-size: 0.6875rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.6);
}

.about-content {
    padding-top: 2rem;
}

.about-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--emerald-mid);
    margin-bottom: 1.5rem;
}

.about-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.about-accent {
    font-style: italic;
    color: var(--emerald-mid);
}

.about-body {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--cream-dark);
}

.about-value {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.about-value-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-mid);
    margin-top: 2px;
}

.about-value strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.about-value span {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Gallery */
.gallery {
    padding: clamp(6rem, 12vw, 10rem) 0;
    background: var(--cream-light);
}

.gallery-header {
    text-align: center;
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.gallery-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--emerald-mid);
    margin-bottom: 1.5rem;
}

.gallery-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--text-primary);
}

.gallery-accent {
    font-style: italic;
    color: var(--emerald-mid);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 1.5rem;
}

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

.gallery-item--tall {
    grid-column: 1 / 6;
    grid-row: 1 / 3;
}

.gallery-item--wide {
    grid-column: 6 / 13;
    grid-row: 2;
}

.gallery-item:not(.gallery-item--tall):not(.gallery-item--wide) {
    grid-column: span 6;
    grid-row: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 6s ease;
}

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(27, 67, 50, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-item-overlay span {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--cream);
}

/* Testimonials */
.testimonials {
    padding: clamp(6rem, 12vw, 10rem) 0;
    background: var(--emerald-deep);
    position: relative;
    overflow: hidden;
}

.testimonials-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(45, 106, 79, 0.25) 0%, transparent 70%),
        radial-gradient(circle at 10% 90%, rgba(64, 145, 108, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

.testimonials-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.4);
    text-align: center;
    margin-bottom: 1.5rem;
}

.testimonials-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--cream);
    text-align: center;
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.testimonials-accent {
    font-style: italic;
    color: rgba(245, 240, 232, 0.55);
}

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

.testimonial-card {
    background: rgba(245, 240, 232, 0.04);
    border: 1px solid rgba(245, 240, 232, 0.08);
    padding: clamp(2rem, 3vw, 3rem);
    transition: var(--transition);
}

.testimonial-card:hover {
    background: rgba(245, 240, 232, 0.07);
    transform: translateY(-4px);
}

.testimonial-quote-mark {
    font-family: var(--font-serif);
    font-size: 4rem;
    line-height: 1;
    color: var(--emerald-light);
    opacity: 0.4;
    margin-bottom: 0.5rem;
}

.testimonial-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: rgba(245, 240, 232, 0.75);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(245, 240, 232, 0.08);
}

.testimonial-author-name {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--cream);
}

.testimonial-author-detail {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.35);
}

/* Contact */
.contact {
    padding: clamp(6rem, 12vw, 10rem) 0;
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: start;
}

.contact-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--emerald-mid);
    margin-bottom: 1.5rem;
}

.contact-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.contact-accent {
    font-style: italic;
    color: var(--emerald-mid);
}

.contact-body {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

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

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    transition: var(--transition);
}

.contact-detail:hover {
    transform: translateX(4px);
}

.contact-detail-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--cream-dark);
    border-radius: 50%;
    color: var(--emerald-deep);
    transition: var(--transition);
}

.contact-detail:hover .contact-detail-icon {
    background: var(--emerald-deep);
    border-color: var(--emerald-deep);
    color: var(--cream);
}

.contact-detail-label {
    display: block;
    font-size: 0.6875rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.contact-detail-value {
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.6;
}

.contact-form-wrap {
    background: var(--white);
    border: 1px solid rgba(27, 67, 50, 0.06);
    padding: clamp(2rem, 3vw, 3rem);
}

.contact-form-title {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

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

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

.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--text-primary);
    background: var(--cream-light);
    border: 1px solid var(--cream-dark);
    border-radius: 0;
    outline: none;
    transition: var(--transition);
    -webkit-appearance: none;
}

.form-input:focus {
    border-color: var(--emerald-mid);
    background: var(--white);
}

.form-input::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

.form-select {
    cursor: pointer;
}

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

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 2rem;
    gap: 1rem;
}

.form-success.show {
    display: flex;
}

.form-success svg {
    color: var(--emerald-mid);
}

.form-success p {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Footer */
.footer {
    background: var(--charcoal);
    padding: clamp(4rem, 8vw, 6rem) 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: clamp(3rem, 6vw, 6rem);
    padding-bottom: clamp(3rem, 6vw, 5rem);
    border-bottom: 1px solid rgba(245, 240, 232, 0.08);
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 1.25rem;
}

.footer-logo-accent {
    color: var(--emerald-light);
}

.footer-logo-icon {
    color: var(--cream);
}

.footer-tagline {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: rgba(245, 240, 232, 0.4);
}

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

.footer-col-title {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.35);
    margin-bottom: 1.25rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col a {
    font-size: 0.9375rem;
    color: rgba(245, 240, 232, 0.6);
    transition: var(--transition);
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: clamp(1.5rem, 3vw, 2rem) 0;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(245, 240, 232, 0.3);
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-right {
        display: none;
    }

    .hero-left {
        padding-top: clamp(7rem, 12vw, 9rem);
    }

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

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

    .about-image-wrap {
        max-width: 560px;
    }

    .gallery-item--tall {
        grid-column: 1 / 7;
        grid-row: auto;
    }

    .gallery-item--wide {
        grid-column: 7 / 13;
        grid-row: auto;
    }

    .gallery-item:not(.gallery-item--tall):not(.gallery-item--wide) {
        grid-column: span 6;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

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

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

@media (max-width: 768px) {
    .nav-links,
    .nav-phone {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-mobile {
        display: flex;
    }

    .hero-headline {
        font-size: clamp(2.25rem, 8vw, 3.5rem);
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

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

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

    .gallery-item--tall,
    .gallery-item--wide,
    .gallery-item:not(.gallery-item--tall):not(.gallery-item--wide) {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .gallery-item--tall {
        min-height: 320px;
    }

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

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

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

@media (max-width: 480px) {
    .hero-cta-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}
