:root {
    --gold:  #ef7f22;
    --gold-dark:  #ef7f22;
    --gold-light:  #ef7f22;
    --dark:  #1a1a1a;
    --dark-brown:  #2c2416;
    --text-dark:  #222222;
    --text-muted:  #666666;
    --bg-light:  #f5f4f0;
    --bg-white:  #ffffff;
    --font-heading:  "Playfair Display",  Georgia,  serif;
    --font-body:  "Open Sans",  system-ui,  sans-serif;
}
*, *:before, *:after {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-white);
    margin: 0;
    padding: 0;
    min-width: 320px;
}
a {
    text-decoration: none;
}
.btn-gold {
    background-color: var(--gold);
    color: #fff;
    border: 2px solid var(--gold);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: .78rem;
    letter-spacing: .04em;
    border-radius: 0;
    transition: background-color .25s, color .25s;
}
.btn-gold:hover, .btn-gold:focus {
    background-color: #fff;
    border-color: var(--gold-dark);
    color: var(--gold-dark);
}
.btn-gold-sm {
    background-color: var(--gold);
    color: #fff;
    border: 2px solid var(--gold);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: .72rem;
    letter-spacing: .04em;
    border-radius: 0;
    padding: .35rem .75rem;
    display: inline-block;
    transition: background-color .25s, color .25s;
}
.btn-gold-sm:hover {
   /* background-color: var(--gold-dark);
    border-color: var(--gold-dark);
    color: #fff;*/
     background-color: #fff;
    border-color: var(--gold-dark);
    color: var(--gold-dark);
}
.btn-hero {
    border: 2px solid rgba(255, 255, 255, .85);
    color: #fff;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .05em;
    border-radius: 0;
    padding: .65rem 1.8rem;
    transition: background-color .25s, color .25s;
}
.btn-hero:hover {
    background-color: #ef7f22;
    color: #fff;
}
.btn-cta-outline {
    border: 2px solid #fff;
    color: #fff;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .05em;
    border-radius: 0;
    padding: .65rem 1.5rem;
    background: transparent;
    transition: background-color .25s, color .25s;
}
.btn-cta-outline:hover {
    /*background-color: #ffffff26;*/
    background-color: var(--gold-dark);
    color: #fff;
}
.section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}
.body-text {
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: .9rem;
}
.topbar {
    background-color: #fff;
    border-bottom: 1px solid #e8e3d8;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px #0000000f;
}
.logo-img img {
    width: 200px;
    object-fit: cover;
}
.topbar-link {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
    transition: color .2s;
}
.topbar-link:hover {
    color: var(--gold);
}
.hero-section {
    position: relative;
    min-height: 55vh;
    background-image: url(https://images.pexels.com/photos/5668882/pexels-photo-5668882.jpeg?auto=compress&cs=tinysrgb&w=1600);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #140e05b8;
}
.hero-content {
    position: relative;
    z-index: 1;
    padding: 5rem 1rem;
    max-width: 820px;
}
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3.5vw, 2.4rem);
    font-weight: 700;
    line-height: 1.35;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .35);
}
.about-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}
.about-img {
    border-radius: 2px;
    width: 100%;
    height: 360px;
    object-fit: cover;
    box-shadow: 0 8px 32px #0000001f;
}
.expertise-section {
    padding: 80px 0 60px;
    background-color: var(--bg-light);
}
.expertise-card {
    background: #fff;
    box-shadow: 0 2px 16px #00000014;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform .25s, box-shadow .25s;
}
.expertise-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px #00000021;
}
.expertise-img-wrap {
    overflow: hidden;
    height: 200px;
}
.expertise-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform .4s ease;
}
.expertise-card:hover .expertise-img {
    transform: scale(1.05);
}
.expertise-body {
    padding: 1.25rem 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.expertise-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: .5rem;
}
.expertise-desc {
    font-size: .83rem;
    color: var(--text-muted);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 1rem;
}
.carousel-dots {
    padding-top: 8px;
}
.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #c8c2b0;
    border: none;
    margin: 0 4px;
    padding: 0;
    cursor: pointer;
    transition: background-color .2s, transform .2s;
}
.dot.active {
    background-color: var(--gold);
    transform: scale(1.2);
}
.dot:hover {
    background-color: var(--gold-light);
}
.why-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}
.why-card {
    background-color: var(--gold);
    padding: 2.5rem 1.75rem;
    border-radius: 2px;
    transition: background-color .25s, transform .25s;
}
.why-card:hover {
    background-color: var(--gold-dark);
    transform: translateY(-3px);
}
.why-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #ffffffe6;
}
.why-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .65rem;
}
.why-desc {
    font-size: .84rem;
    color: #ffffffe0;
    line-height: 1.6;
    margin: 0;
}
.contact-section {
    padding: 80px 0;
    background-color: #f0ede6;
}
.contact-card {
    background: #fff;
    border: 1px solid #e0dbd0;
    padding: 2.5rem 2.25rem;
    max-width: 600px;
    box-shadow: 0 4px 20px #0000000f;
}
.contact-label {
    font-size: .83rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: .35rem;
}
.required {
    color: #c0392b;
}
.contact-input {
    border-radius: 0;
    border: 1px solid #d0cbbf;
    font-size: .85rem;
    color: var(--text-dark);
    padding: .5rem .75rem;
    transition: border-color .2s, box-shadow .2s;
}
.contact-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px #8b764026;
    outline: none;
}
.cta-section {
    position: relative;
    background-image: url(https://images.pexels.com/photos/5668772/pexels-photo-5668772.jpeg?auto=compress&cs=tinysrgb&w=1400);
    background-size: cover;
    background-position: center;
    padding: 0;
}
.cta-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #120c04d1;
}
.cta-content {
    position: relative;
    z-index: 1;
    padding: 60px 15px;
}
.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: .75rem;
}
.cta-text {
    font-size: .88rem;
    color: #ffffffd1;
    line-height: 1.7;
    max-width: 580px;
    margin-bottom: 0;
}
.site-footer {
    background-color: #1c1810;
    padding: 20px 0 16px;
}
.footer-item {
    font-size: .8rem;
    color: #ffffffb3;
    font-weight: 500;
    transition: color .2s;
}
a.footer-item:hover {
    color: var(--gold-light);
}
.footer-hr {
    border-color: #ffffff1f;
    margin: .5rem 0;
}
.footer-copy {
    font-size: .78rem;
    color: #ffffff80;
    padding-top: 8px;
}
.footer-copy a {
    color: #ffffff80;
}
.footer-copy a:hover {
    color: var(--gold-light);
}
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 24px;
    z-index: 999;
    width: 42px;
    height: 42px;
    background-color: var(--gold);
    color: #fff;
    border: none;
    border-radius: 0;
    font-size: 1.1rem;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 16px #0003;
    transition: background-color .2s, transform .2s;
}
.back-to-top.visible {
    display: flex;
}
.back-to-top:hover {
    background-color: var(--gold-dark);
    transform: translateY(-2px);
}
@media (max-width: 991px) {
    .about-img {
    height: 280px;
}
}
@media (max-width: 767px) {
    .about-section, .expertise-section, .why-section, .contact-section {
    padding: 50px 0;
}
.topbar .d-flex.align-items-center.gap-3 {
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem!important;
}
.hero-content {
    padding: 4rem 1rem;
}
.contact-card {
    padding: 1.75rem 1.25rem;
}
.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--gold);
  z-index: 9999;
}

.mobile-bottom-bar a {
  font-weight: 500;
  font-size: 14px;
}

.mobile-bottom-bar .border-end {
  border-right: 1px solid rgba(255,255,255,0.3);
}
}
