:root {
    --forest: #000000;
    --forest-mid: #1a1a1a;
    --forest-light: #333333;
    --oak: #AB8B65;
    --oak-light: #c4a67d;
    --oak-dark: #8a7050;
    --cream: #faf8f4;
    --cream-mid: #f0ebe3;
    --cream-dark: #e5ddd0;
    --charcoal: #000000;
    --text: #1a1a1a;
    --text-light: #555555;
    --error: #c94a4a;
    --success: #4a9c6b;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    padding-top: 82px;
}

.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.img-contain {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.img-wrapper {
    position: relative;
    overflow: hidden;
    background: var(--cream-dark);
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.img-wrapper--hero {
    position: absolute;
    inset: 0;
}

.img-wrapper--square {
    aspect-ratio: 1 / 1;
}

.img-wrapper--landscape {
    aspect-ratio: 16 / 10;
}

.img-wrapper--portrait {
    aspect-ratio: 3 / 4;
}

.img-wrapper--wide {
    aspect-ratio: 21 / 9;
}

.top-bar {
    background: var(--forest);
    color: var(--cream);
    padding: 0.3rem 2rem;
    font-size: 0.7rem;
    text-align: center;
    font-weight: 400;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

.top-bar strong {
    color: var(--oak-light);
    font-weight: 500;
}

nav {
    background: rgba(250, 248, 244, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.6rem 5% 0.35rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 23px;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(28, 46, 36, 0.08);
}

nav > * {
    max-width: 1400px;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--forest);
    text-decoration: none;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.logo-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--oak);
}

.logo span {
    color: var(--oak-dark);
    font-style: italic;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links > li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: var(--forest);
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--oak);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: var(--oak-dark);
}

.nav-links a:hover::before {
    width: 100%;
}

.nav-dropdown {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    cursor: pointer;
}

.nav-dropdown svg {
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: -1rem;
    background: var(--cream);
    min-width: 200px;
    padding: 0.75rem 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    border-top: 2px solid var(--oak);
}

.nav-links > li:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-links > li:hover .nav-dropdown svg {
    transform: rotate(180deg);
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
}

.nav-dropdown-menu a::before {
    display: none;
}

.nav-dropdown-menu a:hover {
    background: var(--cream-mid);
}

.nav-dropdown-menu a.dropdown-overview {
    border-bottom: 1px solid var(--cream-dark);
    font-weight: 500;
    color: var(--text);
    padding: 0.75rem 1.25rem;
}

.nav-dropdown-menu a.dropdown-overview:hover {
    background: var(--cream-mid);
}

.nav-links a.nav-cta {
    background: var(--oak);
    color: var(--forest);
    padding: 0.65rem 1.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.nav-links a.nav-cta::before {
    display: none;
}

.nav-links a.nav-cta:hover {
    background: var(--oak-light);
    color: var(--forest);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(171, 139, 101, 0.4);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--forest);
    transition: all 0.3s ease;
    transform-origin: center;
}

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

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

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 82px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cream);
    z-index: 998;
    padding: 1.5rem 6% 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    overflow-y: auto;
}

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

.mobile-menu ul {
    list-style: none;
}

.mobile-menu li {
    border-bottom: 1px solid var(--cream-dark);
}

.mobile-menu li:last-child {
    border-bottom: none;
}

.mobile-menu a {
    display: block;
    padding: 0.85rem 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--forest);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--oak-dark);
}

.mobile-menu-contact {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--cream-dark);
}

.mobile-menu-contact a {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0;
}

.mobile-menu-contact svg {
    width: 18px;
    height: 18px;
    stroke: var(--oak-dark);
}

.mobile-submenu {
    border-bottom: none;
}

.mobile-submenu a {
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    padding: 0.5rem 0 0.5rem 1rem;
    color: var(--text-light);
}

.hero {
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

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

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(28, 46, 36, 0.9) 0%,
        rgba(28, 46, 36, 0.7) 50%,
        rgba(28, 46, 36, 0.5) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 8%;
    max-width: 800px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(201, 169, 98, 0.15);
    border: 1px solid rgba(201, 169, 98, 0.3);
    color: var(--oak-light);
    padding: 0.6rem 1.25rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1.75rem;
}

.hero-tag svg {
    width: 16px;
    height: 16px;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.75rem, 6vw, 4.5rem);
    font-weight: 500;
    color: var(--cream);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero h1 em {
    font-style: italic;
    color: var(--oak-light);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(250, 248, 244, 0.8);
    margin-bottom: 2.5rem;
    max-width: 520px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--oak);
    color: var(--forest);
}

.btn-primary:hover {
    background: var(--oak-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 169, 98, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--cream);
    border: 1px solid rgba(250, 248, 244, 0.3);
}

.btn-outline:hover {
    background: rgba(250, 248, 244, 0.1);
    border-color: rgba(250, 248, 244, 0.5);
}

section {
    position: relative;
}

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

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--oak-dark);
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 500;
    color: var(--forest);
    line-height: 1.2;
}

.section-title-light {
    color: var(--cream);
}

.welcome {
    padding: 4rem 8%;
    position: relative;
    overflow: hidden;
}

.welcome::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: var(--cream-mid);
    z-index: -1;
}

.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.welcome-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    font-weight: 500;
    color: var(--forest);
    margin-bottom: 1.5rem;
    line-height: 1.25;
}

.welcome-content h2 span {
    color: var(--oak-dark);
    font-style: italic;
}

.welcome-content p {
    color: var(--text-light);
    margin-bottom: 1.25rem;
    font-size: 1.02rem;
}

.welcome-quote {
    background: var(--forest);
    color: var(--cream);
    padding: 2rem 2.5rem;
    margin: 2rem 0;
    position: relative;
}

.welcome-quote::before {
    content: '"';
    position: absolute;
    top: -15px;
    left: 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 6rem;
    color: var(--oak);
    opacity: 0.2;
    line-height: 1;
}

.welcome-quote p {
    color: rgba(250, 248, 244, 0.9);
    font-style: italic;
    margin: 0;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.7;
}

.welcome-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--cream-dark);
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--oak-dark);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.35rem;
}

.welcome-images {
    position: relative;
    height: 550px;
}

.welcome-img {
    position: absolute;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.welcome-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.welcome-img:hover img {
    transform: scale(1.03);
}

.welcome-img-1 {
    width: 70%;
    height: 380px;
    top: 0;
    left: 0;
    z-index: 2;
}

.welcome-img-2 {
    width: 55%;
    height: 260px;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.welcome-badge {
    position: absolute;
    bottom: 100px;
    left: -20px;
    background: var(--oak);
    color: var(--forest);
    padding: 1.5rem;
    text-align: center;
    z-index: 3;
    box-shadow: 0 10px 30px rgba(201, 169, 98, 0.3);
}

.welcome-badge-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1;
}

.welcome-badge-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
    opacity: 0.8;
}

.services {
    background: var(--forest);
    padding: 4rem 8%;
}

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

.services-header .section-tag {
    color: var(--oak-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: var(--cream);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.service-img {
    height: 200px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.08);
}

.service-content {
    padding: 1.75rem;
}

.service-icon {
    width: 48px;
    height: 48px;
    background: var(--forest);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    margin-top: -42px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(28, 46, 36, 0.3);
}

.service-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--oak);
}

.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    color: var(--forest);
    margin-bottom: 0.6rem;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.65;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1rem;
    color: var(--oak-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: gap 0.3s ease, color 0.3s ease;
}

.service-link:hover {
    gap: 0.6rem;
    color: var(--forest);
}

.service-link svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.gallery {
    padding: 4rem 8%;
    background: var(--cream-mid);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4 / 3;
}

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

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(28, 46, 36, 0.8) 0%, transparent 50%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

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

.gallery-item-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem;
    z-index: 2;
    transform: translateY(15px);
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-item-content {
    transform: translateY(0);
    opacity: 1;
}

.gallery-item-content h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--cream);
    margin-bottom: 0.2rem;
}

.gallery-item-content span {
    font-size: 0.8rem;
    color: var(--oak-light);
}

.trust-bar {
    background: var(--forest);
    padding: 2.5rem 8%;
}

.trust-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--cream);
}

.trust-item svg {
    width: 24px;
    height: 24px;
    stroke: var(--oak);
    flex-shrink: 0;
}

.trust-item span {
    font-size: 0.9rem;
    opacity: 0.9;
}

.about-cta {
    padding: 5rem 8%;
    position: relative;
    background: var(--forest);
}

.about-cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.about-cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.about-cta-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
}

.about-cta-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(171, 139, 101, 0.2);
    border: 1px solid rgba(171, 139, 101, 0.4);
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--oak-light);
    letter-spacing: 0.05em;
}

.about-cta h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    color: var(--cream);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.about-cta p {
    color: rgba(250, 248, 244, 0.85);
    max-width: 650px;
    margin: 0 auto 2rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.about-cta-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.about-cta-stat {
    text-align: center;
}

.about-cta-stat .number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--oak);
    line-height: 1;
}

.about-cta-stat .label {
    font-size: 0.8rem;
    color: rgba(250, 248, 244, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

.btn-cta {
    background: var(--oak);
    color: var(--forest);
    border: none;
}

.btn-cta:hover {
    background: var(--oak-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(171, 139, 101, 0.3);
}

.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--cream-mid);
    padding: 4rem 8%;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    background: var(--forest);
    padding: 2.5rem;
}

.contact-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    color: var(--cream);
    margin-bottom: 1rem;
}

.contact-info > p {
    color: rgba(250, 248, 244, 0.8);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--cream);
}

.contact-info-item svg {
    width: 20px;
    height: 20px;
    stroke: var(--oak);
    flex-shrink: 0;
}

.contact-info-item a,
.contact-info-item span {
    color: rgba(250, 248, 244, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: var(--oak);
}

.contact-hours {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(250, 248, 244, 0.15);
}

.contact-hours h4 {
    color: var(--cream);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.contact-hours-list {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.35rem 1rem;
    font-size: 0.85rem;
    color: rgba(250, 248, 244, 0.75);
}

.contact-hours-list span:nth-child(even) {
    text-align: right;
}

.contact-map {
    margin-top: 1.5rem;
    height: 200px;
    background: var(--cream-dark);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-form-wrapper {
    background: var(--cream);
    padding: 2.5rem;
}

.contact-form-header {
    margin-bottom: 2rem;
}

.contact-form-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: var(--forest);
    margin-bottom: 0.5rem;
}

.contact-form-header p {
    color: var(--text-light);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 100%;
    overflow: hidden;
}

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

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--forest);
    margin-bottom: 0.5rem;
}

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

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.9rem 1rem;
    border: 1px solid var(--cream-dark);
    background: var(--cream);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    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(--oak);
    box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6b6b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-submit {
    margin-top: 0.5rem;
}

.form-submit .btn {
    width: 100%;
    justify-content: center;
    padding: 1.1rem 2rem;
}

.btn-dark {
    background: var(--forest);
    color: var(--cream);
}

.btn-dark:hover {
    background: var(--forest-mid);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(28, 46, 36, 0.2);
}

#contact-form {
    max-width: 100%;
    overflow: hidden;
}

#contact-form .g-recaptcha {
    transform-origin: left center;
    max-width: 100%;
}

@media (max-width: 640px) {
    section,
    section > div,
    section > div > div,
    section > div > div > div {
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .contact > div,
    .contact-grid > div,
    .grid > div {
        min-width: 0;
        max-width: 100%;
    }
}

footer {
    background: var(--charcoal);
    color: rgba(250, 248, 244, 0.75);
    padding: 4rem 8% 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto 2rem;
}

.footer-brand .logo {
    color: var(--cream);
    margin-bottom: 1.25rem;
    display: inline-flex;
}

.footer-brand .logo-icon {
    background: var(--forest-mid);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.75;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

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

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(250, 248, 244, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--oak);
}

.footer-social svg {
    width: 17px;
    height: 17px;
    stroke: var(--cream);
    transition: stroke 0.3s ease;
}

.footer-social a:hover svg {
    stroke: var(--forest);
}

.footer-col h4 {
    color: var(--cream);
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

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

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul a {
    color: rgba(250, 248, 244, 0.65);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

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

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    stroke: var(--oak);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item a,
.footer-contact-item span {
    color: rgba(250, 248, 244, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(250, 248, 244, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.5;
    max-width: 1400px;
    margin: 0 auto;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease;
}

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

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .trust-bar-inner {
        justify-content: center;
    }
}

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

    .menu-toggle {
        display: flex;
    }

    .mobile-menu {
        display: block;
        top: 82px;
    }

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

    .welcome::before {
        display: none;
    }

    .welcome-images {
        order: -1;
        height: 420px;
    }

    .welcome-img-1 {
        width: 72%;
        height: 320px;
    }

    .welcome-img-2 {
        width: 50%;
        height: 200px;
    }

    .welcome-badge {
        bottom: 70px;
        left: 0;
    }

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

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

@media (max-width: 768px) {
    body {
        padding-top: 84px;
    }

    .top-bar {
        padding: 0.4rem 1rem;
        font-size: 0.7rem;
    }

    nav {
        padding: 0.5rem 5%;
        top: 32px;
    }

    .logo {
        font-size: 1.7rem;
    }

    .logo-icon {
        width: 42px;
        height: 42px;
    }

    .logo-icon svg {
        width: 20px;
        height: 20px;
    }

    .mobile-menu {
        top: 84px;
    }

    .hero {
        min-height: 500px;
        height: 70vh;
        max-height: 650px;
    }

    .hero-content {
        padding: 0 5%;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 0.85rem 1.5rem;
    }

    .welcome, .services, .gallery {
        padding: 2.5rem 5%;
    }

    .welcome-images {
        height: 220px;
    }

    .welcome-img-1 {
        width: 100%;
        height: 220px;
        position: relative;
    }

    .welcome-img-2 {
        display: none;
    }

    .welcome-badge {
        bottom: auto;
        top: 10px;
        left: auto;
        right: 10px;
        padding: 1rem;
    }

    .welcome-badge-number {
        font-size: 1.75rem;
    }

    .welcome-quote {
        padding: 1.25rem 1.5rem;
        margin: 1.25rem 0;
    }

    .welcome-quote::before {
        font-size: 4rem;
        top: -10px;
        left: 10px;
    }

    .welcome-stats {
        flex-wrap: wrap;
        gap: 1rem;
        padding-top: 1.25rem;
        margin-top: 1.25rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .section-header {
        margin-bottom: 1.5rem;
    }

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

    .service-img {
        height: 160px;
    }

    .service-content {
        padding: 1.25rem;
    }

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

    .trust-bar {
        padding: 1.5rem 5%;
    }

    .trust-bar-inner {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .trust-item {
        justify-content: center;
    }

    .trust-item span {
        font-size: 0.8rem;
    }

    .about-cta {
        padding: 2.5rem 5%;
    }

    .about-cta h2 {
        font-size: 1.5rem;
    }

    .about-cta p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .about-cta-stats {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .about-cta-stat .number {
        font-size: 1.75rem;
    }

    .about-cta-stat .label {
        font-size: 0.7rem;
    }

    .contact {
        grid-template-columns: 1fr;
        padding: 2.5rem 5%;
        gap: 1.5rem;
    }

    .contact-info {
        padding: 2rem;
    }

    .contact-info h3 {
        font-size: 1.5rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

    .contact-form-header {
        margin-bottom: 1.25rem;
    }

    .contact-form-header h2 {
        font-size: 1.35rem;
    }

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

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.75rem;
    }

    .form-group textarea {
        min-height: 100px;
    }

    footer {
        padding: 2.5rem 5% 1.5rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-brand p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .footer-social {
        justify-content: center;
    }

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

    .footer-contact-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 450px;
        height: 65vh;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

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

    .welcome, .services, .gallery {
        padding: 2rem 5%;
    }

    .welcome-content h2 {
        font-size: 1.5rem;
    }

    .welcome-content p {
        font-size: 0.9rem;
    }

    .welcome-images {
        height: 180px;
    }

    .welcome-img-1 {
        height: 180px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .service-card h3 {
        font-size: 1.15rem;
    }

    .service-card p {
        font-size: 0.85rem;
    }

    .about-cta h2 {
        font-size: 1.35rem;
    }

    .about-cta-stat .number {
        font-size: 1.5rem;
    }
}

@media (max-width: 400px) {
    #contact-form .g-recaptcha {
        transform: scale(0.85);
    }
}

@media (max-width: 340px) {
    #contact-form .g-recaptcha {
        transform: scale(0.75);
    }
}
