@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --ink: #111416;
    --ink-soft: #1b2024;
    --steel: #2b3238;
    --paper: #f6f4ef;
    --white: #ffffff;
    --muted: #6e7478;
    --line: #ddd9d0;
    --accent: #d6a13c;
    --accent-deep: #b8801f;
    --shadow: 0 20px 50px rgba(17, 20, 22, .12);
    --radius: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }

.shell { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.top-strip { background: #0c0f11; border-bottom: 1px solid rgba(255,255,255,.08); color: #d9dcde; }
.top-strip__inner { min-height: 42px; display: flex; align-items: center; gap: 24px; font-size: 13px; }
.contact-link { display: inline-flex; align-items: center; gap: 8px; transition: color .2s ease; }
.contact-link i { color: var(--accent); }
.contact-link:hover { color: var(--white); }
.contact-link--email { margin-right: auto; }
.social-link { width: 29px; height: 29px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; color: var(--white); transition: .2s ease; }
.social-link:hover { background: var(--accent); border-color: var(--accent); color: var(--ink); }

.site-header { background: rgba(17,20,22,.97); position: relative; z-index: 20; }
.nav-wrap { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-block; width: 180px; }
.brand img { width: 100%; height: 82px; object-fit: contain; object-position: left center; }
.site-nav { display: flex; align-items: center; gap: 30px; color: #e8eaeb; font-size: 14px; font-weight: 600; }
.site-nav > a { position: relative; transition: color .2s ease; }
.site-nav > a:not(.nav-cta):after { content: ''; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--accent); transition: right .2s ease; }
.site-nav > a:not(.nav-cta):hover { color: var(--white); }
.site-nav > a:not(.nav-cta):hover:after { right: 0; }
.nav-cta { background: var(--accent); color: var(--ink); padding: 12px 18px; border-radius: 999px; }
.nav-cta:hover { background: #e2b252; }

.hero { position: relative; min-height: 650px; display: flex; align-items: center; background: #15191c url('../images/Main.jpg') center/cover no-repeat; color: var(--white); overflow: hidden; }
.hero:after { content: ''; position: absolute; right: -10%; bottom: -32%; width: 58%; height: 82%; border: 1px solid rgba(214,161,60,.34); border-radius: 50%; transform: rotate(-13deg); }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(12,15,17,.97) 0%, rgba(12,15,17,.88) 43%, rgba(12,15,17,.38) 76%, rgba(12,15,17,.2) 100%); }
.hero__content { position: relative; z-index: 2; padding: 88px 0; }
.hero__copy { max-width: 730px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--accent); text-transform: uppercase; letter-spacing: .16em; font-size: 12px; font-weight: 700; }
.eyebrow:before { content: ''; width: 32px; height: 2px; background: currentColor; }
.eyebrow--dark { color: var(--accent-deep); }
.hero h1 { margin: 16px 0 20px; font-size: clamp(48px, 7vw, 86px); line-height: .98; letter-spacing: -.04em; font-weight: 700; }
.hero h1 span { color: var(--accent); }
.hero__copy > p { max-width: 650px; margin: 0; color: #d0d4d6; font-size: 18px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 0 23px; border-radius: 999px; border: 1px solid transparent; font-weight: 700; font-size: 14px; transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button--primary { background: var(--accent); color: var(--ink); }
.button--primary:hover { background: #e3b452; }
.button--ghost { color: var(--white); border-color: rgba(255,255,255,.34); background: rgba(255,255,255,.04); }
.button--ghost:hover { border-color: rgba(255,255,255,.65); background: rgba(255,255,255,.08); }
.hero__trust { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 54px; }
.hero__trust > div { min-width: 145px; padding: 14px 18px; border-left: 1px solid rgba(255,255,255,.18); }
.hero__trust strong, .hero__trust span { display: block; }
.hero__trust strong { font-size: 18px; color: var(--white); }
.hero__trust span { margin-top: 3px; color: #aeb4b8; font-size: 12px; }

.section { padding: 104px 0; }
.section--light { background: var(--paper); }
.section-heading { margin-bottom: 44px; }
.section-heading--split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: end; }
.section-heading h2, .about-copy h2, .review-card h2, .contact-section h2 { margin: 12px 0 0; font-size: clamp(35px, 4.2vw, 58px); line-height: 1.08; letter-spacing: -.03em; }
.section-heading--split > p { margin: 0 0 8px; color: var(--muted); }
.section-heading--center { max-width: 720px; margin-left: auto; margin-right: auto; text-align: center; }
.section-heading--center .eyebrow { justify-content: center; }
.section-heading--center p { color: var(--muted); margin: 12px 0 0; }

.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.feature-card { position: relative; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.feature-card > img { width: 100%; height: 330px; object-fit: cover; }
.feature-card__body { position: relative; padding: 30px; }
.feature-card__icon { position: absolute; right: 28px; top: -28px; width: 58px; height: 58px; display: grid; place-items: center; background: var(--accent); border: 5px solid var(--white); border-radius: 50%; font-size: 18px; }
.feature-card h3 { margin: 0 0 9px; font-size: 25px; }
.feature-card p { margin: 0; color: var(--muted); }

.about-section { background: var(--ink-soft); color: var(--white); position: relative; overflow: hidden; }
.about-section:before { content: ''; position: absolute; left: -180px; top: -180px; width: 440px; height: 440px; border: 80px solid rgba(214,161,60,.05); border-radius: 50%; }
.about-grid { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: 76px; align-items: center; }
.about-copy p { color: #bec4c8; font-size: 17px; max-width: 580px; }
.text-link { display: inline-flex; gap: 10px; align-items: center; margin-top: 18px; color: var(--accent); font-weight: 700; }
.text-link i { transition: transform .2s ease; }
.text-link:hover i { transform: translateX(4px); }
.services-panel { background: #23292e; border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 38px; box-shadow: 0 30px 80px rgba(0,0,0,.22); }
.services-panel h3 { margin: 0 0 24px; font-size: 25px; }
.service-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px 24px; }
.service-list li { display: flex; align-items: center; gap: 11px; color: #e2e5e7; border-bottom: 1px solid rgba(255,255,255,.07); padding-bottom: 12px; }
.service-list i { color: var(--accent); font-size: 12px; }

.gallery-section { background: #f3f1eb; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: 265px; gap: 14px; }
.gallery-item { margin: 0; border-radius: 16px; overflow: hidden; background: #d9d7d1; box-shadow: 0 12px 35px rgba(17,20,22,.08); }
.gallery-item--wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease, filter .45s ease; }
.gallery-item:hover img { transform: scale(1.04); filter: contrast(1.04); }
.social-panel { margin-top: 28px; padding: 30px 34px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.social-panel h3 { margin: 5px 0 0; font-size: 25px; }
.social-buttons { display: flex; flex-wrap: wrap; gap: 10px; }
.social-buttons a { display: inline-flex; align-items: center; gap: 9px; padding: 12px 16px; border: 1px solid var(--line); border-radius: 999px; font-weight: 600; transition: .2s ease; }
.social-buttons a:hover { border-color: var(--accent); background: #fff8e9; }

.review-section { padding: 0 0 104px; background: #f3f1eb; }
.review-card { display: grid; grid-template-columns: 1fr .8fr; align-items: center; gap: 54px; padding: 48px; border-radius: 24px; background: var(--ink); color: var(--white); box-shadow: var(--shadow); }
.review-card__copy p { max-width: 600px; color: #bdc3c6; }
.review-logo { background: #ffd400; border-radius: 18px; padding: 34px; display: grid; place-items: center; min-height: 210px; }
.review-logo img { max-width: 390px; width: 100%; }

.contact-section { background: #14181b; color: var(--white); }
.section-heading--inverse p { color: #b6bdc1; }
.contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 26px; align-items: stretch; }
.contact-card, .map-card { border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(255,255,255,.08); background: #1c2226; }
.contact-card { padding: 34px; }
.contact-details { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; margin-bottom: 28px; }
.contact-details > a, .contact-details > div { min-width: 0; display: flex; gap: 12px; align-items: flex-start; padding: 16px; border-radius: 14px; background: #242b30; color: #e6e9ea; }
.contact-details i { flex: 0 0 34px; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: rgba(214,161,60,.13); color: var(--accent); }
.contact-details span { min-width: 0; overflow-wrap: anywhere; font-size: 12px; }
.contact-details small { display: block; margin-bottom: 2px; color: #9ea7ac; text-transform: uppercase; letter-spacing: .08em; font-size: 9px; }
.quote-form { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.form-row { min-width: 0; }
.form-row--full { grid-column: 1 / -1; }
.form-row label { display: block; margin-bottom: 7px; color: #bfc5c8; font-size: 12px; font-weight: 600; }
.form-row input, .form-row textarea { width: 100%; border: 1px solid #3a4248; border-radius: 12px; outline: none; background: #161b1e; color: var(--white); padding: 13px 15px; transition: border-color .2s ease, box-shadow .2s ease; }
.form-row textarea { resize: vertical; min-height: 150px; }
.form-row input::placeholder, .form-row textarea::placeholder { color: #737d83; }
.form-row input:focus, .form-row textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(214,161,60,.12); }
.button--submit { border: 0; min-width: 190px; }
.form-notice { margin: 14px 0 0; padding: 12px 14px; border-radius: 10px; background: rgba(87,176,112,.12); color: #bfe4c9; font-size: 13px; }
.map-card { min-height: 100%; }
.map-card iframe { width: 100%; height: 100%; min-height: 610px; border: 0; display: block; filter: grayscale(.15) contrast(1.02); }

.site-footer { background: #0c0f11; color: #c0c5c8; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .7fr 1fr; gap: 70px; padding: 62px 0; }
.footer-brand img { width: 190px; height: 90px; object-fit: contain; object-position: left center; }
.footer-brand p { max-width: 400px; margin: 10px 0 0; color: #8e979c; }
.footer-links { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.footer-links h3 { color: var(--white); margin: 0 0 9px; font-size: 15px; }
.footer-links > a { color: #9ca5aa; transition: color .2s ease; }
.footer-links > a:hover { color: var(--accent); }
.footer-socials { display: flex; gap: 8px; margin-top: 7px; }
.footer-socials a { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid #2f363b; border-radius: 50%; color: var(--white); }
.footer-socials a:hover { background: var(--accent); border-color: var(--accent); color: var(--ink); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); color: #70797e; font-size: 12px; padding: 17px 0; }

@media (max-width: 980px) {
    .site-nav { gap: 18px; }
    .hero { min-height: 600px; }
    .section-heading--split, .about-grid, .review-card, .contact-grid { grid-template-columns: 1fr; gap: 38px; }
    .feature-card > img { height: 260px; }
    .gallery-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
    .contact-details { grid-template-columns: 1fr; }
    .map-card iframe { min-height: 440px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
    .shell { width: min(100% - 28px, 1180px); }
    .top-strip__inner { gap: 12px; min-height: 38px; }
    .contact-link--email { display: none; }
    .social-link { margin-left: auto; }
    .nav-wrap { min-height: 82px; }
    .brand { width: 142px; }
    .brand img { height: 70px; }
    .site-nav { gap: 8px; }
    .site-nav > a:not(.nav-cta) { display: none; }
    .nav-cta { padding: 10px 15px; font-size: 12px; }
    .hero { min-height: 610px; background-position: 60% center; }
    .hero__overlay { background: linear-gradient(90deg, rgba(12,15,17,.97), rgba(12,15,17,.82)); }
    .hero__content { padding: 72px 0; }
    .hero h1 { font-size: clamp(48px, 15vw, 72px); }
    .hero__copy > p { font-size: 16px; }
    .hero__actions { flex-direction: column; align-items: stretch; }
    .button { width: 100%; }
    .hero__trust { margin-top: 38px; gap: 0; }
    .hero__trust > div { min-width: 50%; padding: 10px 12px; margin-bottom: 8px; }
    .section { padding: 76px 0; }
    .section-heading--split { gap: 18px; }
    .feature-grid { grid-template-columns: 1fr; }
    .feature-card > img { height: 230px; }
    .about-grid { gap: 32px; }
    .services-panel { padding: 26px 22px; }
    .service-list { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, minmax(0,1fr)); grid-auto-rows: 210px; }
    .gallery-item--wide { grid-column: span 2; }
    .social-panel { flex-direction: column; align-items: flex-start; padding: 25px; }
    .social-buttons { width: 100%; }
    .social-buttons a { flex: 1; justify-content: center; }
    .review-section { padding-bottom: 76px; }
    .review-card { padding: 28px 22px; }
    .review-logo { min-height: 160px; padding: 25px; }
    .contact-card { padding: 22px; }
    .quote-form { grid-template-columns: 1fr; }
    .form-row--full { grid-column: auto; }
    .footer-grid { grid-template-columns: 1fr; gap: 34px; padding: 46px 0; }
    .footer-brand { grid-column: auto; }
}

@media (max-width: 480px) {
    .contact-link span { font-size: 12px; }
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 280px; }
    .gallery-item--wide { grid-column: auto; }
    .social-buttons { flex-direction: column; }
    .hero__trust > div { min-width: 100%; }
}
