/* [SITESECTION:1:variables] */
@import url('https://fonts.googleapis.com/css2?family=Cormorant:wght@600;700&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
    --primary: #C9A876;
    --primary-light: #DEC49B;
    --primary-dark: #B08D57;
    --secondary: #F5EFE6;
    --accent: #B08D57;
    --marble-light: #FAF7F2;
    --text-dark: #4A3F35;
    --text-muted: #7A6E5F;
    --text-light: #F5EFE6;
    --bg-light: #FAF7F2;
    --bg-cream: #F5EFE6;
    --bg-deep: #3E342B;
    --bg-dark: #3E342B;
    --gradient-1: linear-gradient(180deg, #F5EFE6, #E8DCC8);
    --gradient-2: linear-gradient(135deg, #C9A876, #B08D57);
    --gradient-dark: linear-gradient(180deg, #3E342B, #2C241D);
    --border-radius: 12px;
    --shadow-soft: 0 8px 25px rgba(176, 141, 87, 0.12);
    --shadow-hover: 0 20px 40px rgba(176, 141, 87, 0.2);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant', serif;
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: var(--primary-dark);
    transition: var(--transition);
}

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

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

input, select, textarea {
    font-family: inherit;
}
/* [/SITESECTION:1] */

/* [SITESECTION:2:layout] */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 56px;
}

.section-tag {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-dark);
    margin-bottom: 14px;
}

.section-title {
    font-size: 2.6rem;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
}

.title-divider {
    width: 60px;
    height: 2px;
    background: var(--gradient-2);
    margin: 0 auto 18px;
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.section-light {
    position: relative;
    background: var(--bg-light);
    padding: 80px 0 130px;
}

.section-cream {
    position: relative;
    background: var(--bg-cream);
    padding: 80px 0 130px;
}

.section-dark {
    position: relative;
    background: var(--gradient-dark);
    padding: 70px 0 90px;
}

.section-head-dark .section-title {
    color: var(--text-light);
}

.section-head-dark .section-subtitle {
    color: rgba(245, 239, 230, 0.7);
}

.section-head-dark .section-tag {
    color: var(--primary-light);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    border: none;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gradient-2);
    color: #fff;
    box-shadow: 0 8px 20px rgba(176, 141, 87, 0.35);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    opacity: 0;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: scale(1.03);
    box-shadow: 0 14px 30px rgba(176, 141, 87, 0.45);
    color: #fff;
}

.btn-primary:hover::before {
    opacity: 1;
    left: 130%;
    transition: left 0.7s ease, opacity 0.3s ease;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid var(--primary-dark);
    color: var(--text-dark);
}

.btn-outline:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: scale(1.03);
}

.btn-secondary {
    background: var(--bg-cream);
    border: 1px solid var(--primary);
    color: var(--primary-dark);
}

.btn-secondary:hover {
    background: var(--gradient-2);
    color: #fff;
    border-color: transparent;
    transform: scale(1.03);
}

.btn-block {
    width: 100%;
}

.required-mark {
    color: #C0392B;
}

.section-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 10;
    pointer-events: none;
    transform: none !important;
}

.section-divider svg {
    display: block;
    width: 100%;
    height: 100%;
}
/* [/SITESECTION:2] */

/* [SITESECTION:3:header] */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1100;
    background: rgba(250, 247, 242, 0.92);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 15px rgba(74, 63, 53, 0.08);
    transition: var(--transition);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gradient-2);
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.logo-text {
    font-family: 'Cormorant', serif;
    font-size: 1.35rem;
    color: var(--text-dark);
    line-height: 1.1;
}

.logo-text strong {
    color: var(--primary-dark);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-2);
    transition: width 0.35s ease;
}

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

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

.nav-link-cta {
    background: var(--gradient-2);
    color: #fff;
    padding: 10px 24px;
    border-radius: 50px;
    box-shadow: 0 6px 15px rgba(176, 141, 87, 0.3);
}

.nav-link-cta::after {
    display: none;
}

.nav-link-cta:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(176, 141, 87, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
/* [/SITESECTION:3] */

/* [SITESECTION:4:hero] */
.hero-section {
    position: relative;
    background: var(--gradient-1);
    padding: 160px 0 170px;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.hero-glow-1 {
    top: -10%;
    left: -8%;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(201, 168, 118, 0.15) 0%, transparent 70%);
    animation: glow-pulse 6s ease-in-out infinite;
}

.hero-glow-2 {
    bottom: -15%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 168, 118, 0.13) 0%, transparent 70%);
    animation: glow-pulse 9s ease-in-out infinite;
}

.hero-glow-3 {
    top: 30%;
    left: 45%;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.35) 0%, transparent 70%);
    animation: glow-pulse 7s ease-in-out infinite 1.5s;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(201, 168, 118, 0.4);
    color: var(--primary-dark);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
    animation: fade-up 0.8s ease both;
}

.hero-title {
    font-size: 3.4rem;
    letter-spacing: 0.5px;
    margin-bottom: 22px;
    animation: fade-up 0.8s ease 0.15s both;
}

.hero-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 540px;
    margin-bottom: 32px;
    animation: fade-up 0.8s ease 0.3s both;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 34px;
    animation: fade-up 0.8s ease 0.45s both;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    animation: fade-up 0.8s ease 0.6s both;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-dark);
}

.hero-features i {
    color: var(--primary-dark);
}

.hero-image-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(74, 63, 53, 0.2);
    border: 6px solid rgba(255, 255, 255, 0.8);
    animation: fade-up 0.9s ease 0.35s both;
}

.hero-image-frame img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image-frame:hover img {
    filter: brightness(1.1);
    transform: scale(1.03);
}
/* [/SITESECTION:4] */

/* [SITESECTION:5:sections] */
.founder-section {
    background:
        radial-gradient(ellipse 800px 500px at 15% 20%, rgba(201, 168, 118, 0.08), transparent 60%),
        radial-gradient(ellipse 700px 450px at 85% 75%, rgba(201, 168, 118, 0.1), transparent 60%),
        radial-gradient(ellipse 600px 400px at 50% 100%, rgba(232, 220, 200, 0.45), transparent 65%),
        var(--bg-light);
}

.founder-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: center;
    margin-bottom: 64px;
}

.founder-photo-frame {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 5px solid #fff;
}

.founder-photo-frame img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.founder-photo:hover .founder-photo-frame img {
    filter: brightness(1.1);
    transform: scale(1.03);
}

.founder-photo-caption {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

.founder-photo-caption i {
    color: var(--primary-dark);
    font-size: 1.2rem;
}

.founder-story h3 {
    font-size: 1.9rem;
    margin-bottom: 18px;
}

.founder-story p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.award-card {
    background: #fff;
    border: 1px solid rgba(201, 168, 118, 0.25);
    border-radius: var(--border-radius);
    padding: 34px 28px;
    text-align: center;
    transition: var(--transition);
}

.award-card:hover {
    box-shadow: 0 0 25px rgba(201, 168, 118, 0.4);
    transform: translateY(-6px);
}

.award-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gradient-2);
    color: #fff;
    font-size: 1.7rem;
    box-shadow: 0 8px 20px rgba(176, 141, 87, 0.3);
    transition: var(--transition);
}

.award-card:hover .award-icon {
    transform: scale(1.05);
}

.award-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.award-text {
    font-size: 0.92rem;
    color: var(--text-muted);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    text-align: center;
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(201, 168, 118, 0.18);
    color: var(--primary-light);
    font-size: 1.4rem;
}

.stat-number {
    font-family: 'Cormorant', serif;
    font-variant-numeric: tabular-nums;
    min-width: 150px;
    display: inline-block;
    text-align: center;
    font-weight: 700;
    font-size: 2.8rem;
    color: var(--primary-light);
    line-height: 1.2;
}

.stat-label {
    color: rgba(245, 239, 230, 0.75);
    font-size: 0.92rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid var(--accent);
    border-radius: var(--border-radius);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.service-card:hover::before {
    opacity: 1;
}

.service-image {
    overflow: hidden;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.service-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-image img {
    filter: brightness(1.1);
    transform: scale(1.03);
}

.service-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 24px;
}

.service-title {
    min-height: 60px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
}

.service-title i {
    color: var(--primary-dark);
    font-size: 1.1rem;
}

.service-description {
    flex-grow: 1;
    min-height: 80px;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 10px 0;
}

.service-price {
    margin-top: auto;
    font-family: 'Cormorant', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.service-card .btn {
    margin-top: 1rem;
}

.comparison-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.results-description {
    text-align: center;
    margin-top: 28px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid rgba(201, 168, 118, 0.25);
    border-radius: var(--border-radius);
    padding: 32px 26px;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 30px rgba(201, 168, 118, 0.35);
}

.pricing-card-featured {
    border: 2px solid var(--primary);
    background: linear-gradient(180deg, #fff, var(--bg-cream));
}

.pricing-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--gradient-2);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    z-index: 10;
    letter-spacing: 0.5px;
}

.pricing-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gradient-2);
    color: #fff;
    font-size: 1.4rem;
    box-shadow: 0 8px 18px rgba(176, 141, 87, 0.28);
}

.pricing-title {
    min-height: 60px;
    display: flex;
    align-items: center;
    font-size: 1.45rem;
}

.pricing-list {
    flex-grow: 1;
    margin: 14px 0 6px;
}

.pricing-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    font-size: 0.88rem;
    color: var(--text-muted);
    padding: 11px 4px;
    border-bottom: 1px solid rgba(201, 168, 118, 0.25);
    transition: background 0.3s ease;
}

.pricing-list li:hover {
    background: rgba(245, 239, 230, 0.8);
}

.price-value {
    font-weight: 600;
    color: var(--primary-dark);
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

.pricing-card .btn {
    margin-top: 1rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.team-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.team-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.team-card:hover {
    transform: translateY(-8px);
}

.team-card:hover::after {
    opacity: 1;
}

.team-photo {
    overflow: hidden;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.team-photo img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover .team-photo img {
    filter: brightness(1.1);
    transform: scale(1.03);
}

.team-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 24px;
}

.team-name {
    min-height: 50px;
    display: flex;
    align-items: center;
    font-size: 1.4rem;
}

.team-role {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 6px 0 12px;
}

.team-description {
    flex-grow: 1;
    min-height: 80px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

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

.testimonial-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid rgba(201, 168, 118, 0.2);
    border-radius: var(--border-radius);
    padding: 30px 28px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.testimonial-quote {
    font-size: 1.6rem;
    color: var(--primary-light);
    margin-bottom: 14px;
}

.testimonial-text {
    flex-grow: 1;
    font-size: 0.92rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 22px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-author img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-light);
    flex-shrink: 0;
}

.testimonial-meta {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.testimonial-position {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.testimonial-stars {
    color: var(--primary);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

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

.faq-item {
    background: #fff;
    border: 1px solid rgba(201, 168, 118, 0.25);
    border-radius: var(--border-radius);
    margin-bottom: 14px;
    transition: var(--transition);
}

.faq-item.open {
    box-shadow: var(--shadow-soft);
    border-color: var(--primary);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    text-align: left;
    background: transparent;
    border: none;
    padding: 20px 24px;
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--text-dark);
}

.faq-question i {
    color: var(--primary-dark);
    transition: transform 0.35s ease;
    flex-shrink: 0;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

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

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-muted);
    font-size: 0.94rem;
}
/* [/SITESECTION:5] */

/* [SITESECTION:6:contact] */
.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: start;
}

.calculator-box {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(201, 168, 118, 0.3);
    border-radius: 16px;
    padding: 32px;
}

.calculator-title {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.calculator-title i {
    color: var(--primary-light);
}

.calculator-options {
    display: flex;
    flex-direction: column;
}

.calc-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 8px;
    border-bottom: 1px solid rgba(201, 168, 118, 0.25);
    cursor: pointer;
    color: rgba(245, 239, 230, 0.85);
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.calc-option:hover {
    background: rgba(245, 239, 230, 0.08);
}

.calc-checkbox {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    flex-shrink: 0;
}

.calc-name {
    flex-grow: 1;
}

.calc-price {
    color: var(--primary-light);
    font-weight: 600;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

.calculator-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8px 0;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
}

.calc-total-value {
    font-family: 'Cormorant', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-light);
    font-variant-numeric: tabular-nums;
    transition: color 0.3s ease;
}

.contact-info-block {
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid rgba(201, 168, 118, 0.3);
}

.contact-info-block h4 {
    color: var(--text-light);
    font-size: 1.3rem;
    margin-bottom: 14px;
}

.contact-info-block p {
    color: rgba(245, 239, 230, 0.8);
    font-size: 0.92rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info-block p i {
    color: var(--primary-light);
    width: 18px;
    text-align: center;
}

.contact-info-block a {
    color: rgba(245, 239, 230, 0.9);
}

.contact-info-block a:hover {
    color: var(--primary-light);
}

.contact-socials {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.contact-socials a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(201, 168, 118, 0.18);
    color: var(--primary-light);
    font-size: 1.1rem;
    transition: var(--transition);
}

.contact-socials a:hover {
    background: var(--gradient-2);
    color: #fff;
    transform: translateY(-3px);
}

.booking-form {
    background: #fff;
    border-radius: 16px;
    padding: 36px 32px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-title i {
    color: var(--primary-dark);
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(201, 168, 118, 0.4);
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--marble-light);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(201, 168, 118, 0.18);
}

.form-group textarea {
    resize: vertical;
}

.captcha-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
}

.captcha-group img {
    height: 50px;
    border-radius: 8px;
    flex-shrink: 0;
    border: 1px solid rgba(201, 168, 118, 0.4);
}

.captcha-group input {
    flex: 1;
    width: auto;
    padding: 12px 16px;
    border: 1px solid rgba(201, 168, 118, 0.4);
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--marble-light);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.captcha-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(201, 168, 118, 0.18);
}

.captcha-refresh-btn {
    background: transparent;
    border: none;
    color: var(--primary-dark);
    cursor: pointer;
    font-size: 1.3rem;
    padding: 8px;
    border-radius: 8px;
    transition: opacity 0.3s ease;
}

.captcha-refresh-btn:hover {
    opacity: 0.7;
}

.consent-group {
    display: flex;
    align-items: flex-start;
    margin: 15px 0;
    padding: 5px 0;
}

.consent-group label {
    display: flex;
    gap: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--text-muted);
}

.consent-group input {
    accent-color: var(--primary);
    margin-top: 2px;
    flex-shrink: 0;
}
/* [/SITESECTION:6] */

/* [SITESECTION:7:footer] */
.site-footer {
    background: linear-gradient(180deg, #2C241D, #221B15);
    color: rgba(245, 239, 230, 0.8);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1.2fr;
    gap: 44px;
    padding-bottom: 44px;
}

.footer-logo {
    margin-bottom: 16px;
}

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

.footer-logo .logo-text strong {
    color: var(--primary-light);
}

.footer-about {
    font-size: 0.9rem;
    margin-bottom: 20px;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(201, 168, 118, 0.16);
    color: var(--primary-light);
    font-size: 1rem;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--gradient-2);
    color: #fff;
    transform: translateY(-3px);
}

.footer-title {
    color: var(--text-light);
    font-size: 1.3rem;
    margin-bottom: 18px;
}

.footer-nav li,
.footer-contacts li {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-nav a {
    color: rgba(245, 239, 230, 0.75);
}

.footer-nav a:hover {
    color: var(--primary-light);
    padding-left: 4px;
}

.footer-contacts li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contacts i {
    color: var(--primary-light);
    width: 18px;
    text-align: center;
}

.footer-contacts a {
    color: rgba(245, 239, 230, 0.75);
}

.footer-contacts a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    border-top: 1px solid rgba(201, 168, 118, 0.2);
    padding: 20px 0 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(245, 239, 230, 0.55);
}
/* [/SITESECTION:7] */

/* [SITESECTION:8:components] */
.toast-notification {
    position: fixed;
    top: 20px;
    right: -350px;
    z-index: 9999;
    padding: 15px 20px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    max-width: 300px;
    transition: right 0.3s ease-out;
}

.toast-notification.show {
    right: 20px;
}

.toast-notification.success {
    background: #28a745;
}

.toast-notification.error {
    background: #dc3545;
}

.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    z-index: 1000;
    background: var(--gradient-2);
    color: #fff;
    border: none;
    font-size: 1.1rem;
    box-shadow: 0 8px 20px rgba(176, 141, 87, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 26px rgba(176, 141, 87, 0.5);
}

.floating-call-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    z-index: 1000;
    background: #fff;
    color: var(--primary-dark);
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 8px 20px rgba(74, 63, 53, 0.2);
    transition: var(--transition);
}

.floating-call-btn:hover {
    background: var(--gradient-2);
    color: #fff;
    transform: translateY(-4px);
}

.exit-popup {
    position: fixed;
    inset: 0;
    background: rgba(44, 36, 29, 0.7);
    backdrop-filter: blur(4px);
    z-index: 9000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.exit-popup.show {
    display: flex;
    animation: fade-in 0.3s ease;
}

.exit-popup-content {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 36px 32px;
    max-width: 440px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    text-align: center;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.exit-popup-content h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.exit-popup-content > p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 20px;
}

.exit-popup-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gradient-2);
    color: #fff;
    font-size: 1.7rem;
    box-shadow: 0 10px 24px rgba(176, 141, 87, 0.35);
}

.exit-popup-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 26px;
    color: var(--text-muted);
    line-height: 1;
    transition: color 0.3s ease;
}

.exit-popup-close:hover {
    color: var(--text-dark);
}

.exit-popup-form {
    text-align: left;
}

.exit-popup-form input[type="text"]:not([name="website"]),
.exit-popup-form input[type="tel"] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(201, 168, 118, 0.4);
    border-radius: 8px;
    font-size: 0.95rem;
    background: var(--marble-light);
    color: var(--text-dark);
}

.exit-popup-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(201, 168, 118, 0.18);
}

.comparison-slider {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    cursor: ew-resize;
    user-select: none;
}

.comparison-images {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
}

.comparison-before,
.comparison-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.comparison-before {
    z-index: 1;
}

.comparison-after {
    z-index: 2;
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
    transition: clip-path 0.05s ease;
}

.comparison-label {
    position: absolute;
    top: 20px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-weight: 600;
    border-radius: 6px;
    z-index: 10;
    pointer-events: none;
    font-size: 0.85rem;
}

.comparison-before .comparison-label {
    left: 20px;
}

.comparison-after .comparison-label {
    right: 20px;
}

.comparison-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: white;
    z-index: 5;
    transform: translateX(-50%);
    pointer-events: none;
}

.comparison-divider {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: ew-resize;
    pointer-events: auto;
}

.comparison-divider::before,
.comparison-divider::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

.comparison-divider::before {
    border-width: 8px 12px 8px 0;
    border-color: transparent #4A3F35 transparent transparent;
    left: 10px;
}

.comparison-divider::after {
    border-width: 8px 0 8px 12px;
    border-color: transparent transparent transparent #4A3F35;
    right: 10px;
}

[data-tooltip] {
    position: relative;
}

[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: rgba(62, 52, 43, 0.95);
    color: #fff;
    font-size: 0.78rem;
    line-height: 1.4;
    padding: 10px 14px;
    border-radius: 8px;
    width: 240px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 30;
    pointer-events: none;
}

[data-tooltip]:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
/* [/SITESECTION:8] */

/* [SITESECTION:9:animations] */
@keyframes glow-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.25;
    }
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.animate-on-scroll,
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animate,
.reveal.animate,
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.no-js .animate-on-scroll,
.no-js .reveal,
noscript ~ * .animate-on-scroll {
    opacity: 1;
    transform: none;
}
/* [/SITESECTION:9] */

/* [SITESECTION:10:responsive] */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.7rem;
    }

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 40px;
    }

    .founder-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .founder-photo-frame img {
        height: 420px;
    }

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

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 76px;
        left: 0;
        width: 100%;
        background: rgba(250, 247, 242, 0.98);
        backdrop-filter: blur(12px);
        box-shadow: 0 12px 25px rgba(74, 63, 53, 0.12);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .main-nav.open {
        max-height: 420px;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 16px 24px 24px;
    }

    .nav-link {
        display: block;
        padding: 14px 4px;
        border-bottom: 1px solid rgba(201, 168, 118, 0.2);
        font-size: 1rem;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link-cta {
        margin-top: 14px;
        text-align: center;
        border-bottom: none;
    }

    .hero-section {
        padding: 130px 0 150px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .hero-image-frame img {
        height: 320px;
    }

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

    .section-light,
    .section-cream {
        padding: 60px 0 110px;
    }

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

    .comparison-wrap {
        grid-template-columns: 1fr;
    }

    .comparison-slider {
        max-width: 100%;
        border-radius: 8px;
    }

    .comparison-divider {
        width: 50px;
        height: 50px;
    }

    .booking-form {
        padding: 28px 22px;
    }

    .booking-form .btn {
        min-height: 50px;
    }

    .calculator-box {
        padding: 24px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .captcha-group {
        flex-direction: column;
        align-items: stretch;
    }

    .captcha-group img {
        align-self: center;
    }

    .stat-number {
        min-width: 120px;
        font-size: 2.3rem;
    }

    .scroll-top-btn,
    .floating-call-btn {
        bottom: 20px;
        width: 50px;
        height: 50px;
    }

    .scroll-top-btn {
        right: 20px;
    }

    .floating-call-btn {
        left: 20px;
    }

    [data-tooltip]::after {
        display: none;
    }
}

@media (max-width: 576px) {
    .services-grid,
    .pricing-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-buttons .btn {
        width: 100%;
    }

    .founder-photo-frame img {
        height: 340px;
    }

    .toast-notification {
        right: -100%;
        left: auto;
        max-width: calc(100% - 40px);
    }

    .toast-notification.show {
        right: 20px;
    }

    .exit-popup-content {
        padding: 28px 20px;
    }
}
/* [/SITESECTION:10] */