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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", Arial, sans-serif;
    background: #f7f5f0;
    color: #181818;
    line-height: 1.7;
}

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

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

#progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: #d4af37;
    z-index: 9999;
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #141414;
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

header .container {
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo img {
    width: 95px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 28px;
}

nav a {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    transition: .3s;
}

nav a:hover {
    color: #d4af37;
}

.header-btn,
.hero-btn,
form button {
    display: inline-block;
    background: #d4af37;
    color: #111;
    border: 0;
    padding: 14px 24px;
    border-radius: 4px;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.header-btn:hover,
.hero-btn:hover,
form button:hover {
    background: #b99222;
    transform: translateY(-2px);
}

.hero {
    min-height: 720px;
    background: linear-gradient(90deg, #101010 0%, #101010 45%, rgba(16,16,16,.35) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    padding: 90px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr .85fr;
    align-items: center;
    gap: 70px;
}

.gold-title {
    color: #d4af37;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.hero h1 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(48px, 6vw, 78px);
    line-height: 1.02;
    font-weight: 600;
    margin-bottom: 25px;
}

.hero h1 span {
    display: block;
    color: #d4af37;
}

.hero-text > p:not(.gold-title) {
    max-width: 650px;
    color: #ddd;
    font-size: 16px;
    margin-bottom: 32px;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    max-height: 600px;
    margin: 0 auto;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid rgba(212,175,55,.45);
}

section {
    padding: 100px 0;
}

section h2 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 45px;
}

#about {
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 75px;
    align-items: center;
}

.owner-photo {
    width: 100%;
    max-width: 520px;
    height: 600px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #d4af37;
}

#about p:not(.gold-title) {
    color: #555;
    margin-bottom: 20px;
    font-size: 15px;
}

.signature {
    width: 280px;
    margin-top: 20px;
}

#approach {
    background: #171717;
    color: #fff;
}

#approach h2,
#contact h2 {
    color: #fff;
}

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

.card {
    background: #202020;
    border: 1px solid rgba(212,175,55,.25);
    padding: 32px 25px;
    border-radius: 5px;
    transition: .3s;
}

.card:hover {
    transform: translateY(-6px);
    border-color: #d4af37;
}

.card h3 {
    font-family: "Cormorant Garamond", Georgia, serif;
    color: #d4af37;
    font-size: 25px;
    margin-bottom: 14px;
}

.card p {
    color: #ccc;
    font-size: 14px;
}

#standards {
    background: #f7f5f0;
}

#standards .card {
    background: #fff;
    border-color: #e2dfd6;
}

#standards .card p {
    color: #555;
}

.gallery {
    background: #fff;
}

.gallery > .container > p {
    max-width: 700px;
    color: #666;
    margin-bottom: 40px;
}

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

.gallery-grid img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 4px;
}

#contact {
    background: #171717;
    color: #fff;
}

#contact .container {
    max-width: 900px;
}

form {
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

form input,
form textarea,
form select {
    width: 100%;
    display: block;
    padding: 16px 18px;
    background: #202020;
    color: #fff;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 4px;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 14px;
    outline: none;
}

form input:focus,
form textarea:focus,
form select:focus {
    border-color: #d4af37;
}

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

form button {
    width: 100%;
    padding: 17px;
}

footer {
    background: #0e0e0e;
    color: #fff;
    text-align: center;
    padding: 65px 0;
}

.footer-logo {
    width: 115px;
    margin: 0 auto 25px;
}

footer p {
    color: #999;
    font-size: 13px;
    margin-bottom: 6px;
}

footer p:first-of-type {
    color: #d4af37;
    font-weight: 600;
}

@media (max-width: 900px) {

menu-toggle {
display: block;
background: none;
border: none;
color: #d4af37;
font-size: 32px;
cursor: pointer;
padding: 5px;
position: relative;
z-index: 1001;
}

nav {
display: none;
position: absolute;
top: 75px;
right: 20px;
width: 250px;
background: #141414;
border: 1px solid rgba(212, 175, 55, .45);
padding: 20px;
z-index: 1000;
}

nav.active {
display: block;
}

nav ul {
display: flex;
flex-direction: column;
gap: 0;
margin: 0;
padding: 0;
list-style: none;
}

nav li {
width: 100%;
}

nav a {
display: block;
width: 100%;
padding: 16px 10px;
font-size: 18px;
color: #fff;
text-decoration: none;
border-bottom: 1px solid rgba(212, 175, 55, .2);
}

nav a:hover {
color: #d4af37;
}

.header-btn {
display: none;
}

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

.hero-image {
order: -1;
}

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

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

/* Testimonials Section */
.testimonials {
padding: 90px 20px;
background: #f8f8f6;
text-align: center;
}

.testimonials-header {
max-width: 700px;
margin: 0 auto 50px;
}

.section-label {
margin-bottom: 10px;
font-size: 13px;
font-weight: 700;
letter-spacing: 2px;
text-transform: uppercase;
color: #a17c32;
}

.testimonials-header h2 {
margin: 0 0 15px;
font-size: 42px;
line-height: 1.15;
color: #171717;
}

.testimonials-subtitle {
margin: 0;
font-size: 17px;
line-height: 1.7;
color: #666;
}

.testimonial-grid {
max-width: 1150px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 25px;
}

.testimonial-card {
padding: 35px 30px;
background: #ffffff;
border-radius: 16px;
text-align: left;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
border: 1px solid #eeeeee;
}

.stars {
margin-bottom: 18px;
color: #b58a3c;
font-size: 18px;
letter-spacing: 3px;
}

.testimonial-text {
margin: 0 0 25px;
font-size: 16px;
line-height: 1.7;
color: #444;
}

.guest-name {
font-size: 17px;
font-weight: 700;
color: #171717;
}

.guest-title {
margin-top: 4px;
font-size: 14px;
color: #888;
}

/* Mobile Testimonials */
@media (max-width: 800px) {
.testimonials {
padding: 65px 18px;
}

.testimonials-header h2 {
font-size: 34px;
}

.testimonial-grid {
grid-template-columns: 1fr;
gap: 18px;
}

.testimonial-card {
padding: 28px 24px;
}
}