css
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
--primary: #a16831;
--primary-dark: #754b24;
--secondary: #d2b384;
--accent: #fbbf24;
--text: #1f2937;
--text-light: #6b7280;
--bg: #ffffff;
--bg-alt: #f8f4ed;
--border: #e5e7eb;
--shadow: rgba(0, 0, 0, 0.1);
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
color: var(--text);
line-height: 1.6;
background: var(--bg);
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
.utility-bar {
background: var(--primary);
color: white;
padding: 10px 0;
font-size: 14px;
}
.utility-content {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 12px;
}
.utility-link {
color: white;
text-decoration: none;
display: flex;
align-items: center;
gap: 6px;
}
.utility-link:hover {
color: var(--secondary);
}
.utility-address {
display: none;
}
@media (min-width: 768px) {
.utility-address {
display: inline;
}
}
.header {
background: white;
box-shadow: 0 2px 8px var(--shadow);
position: sticky;
top: 0;
z-index: 100;
transition: all 0.3s ease;
}
.header.scrolled {
box-shadow: 0 4px 12px var(--shadow);
}
.header-content {
display: flex;
justify-content: space-between;
align-items: center;
padding: 16px 0;
}
.logo-section {
display: flex;
align-items: center;
gap: 12px;
}
.logo {
height: 50px;
width: auto;
}
.business-name {
font-size: 20px;
font-weight: 700;
color: var(--primary);
}
.menu-toggle {
display: flex;
flex-direction: column;
gap: 5px;
background: none;
border: none;
cursor: pointer;
padding: 8px;
}
.menu-toggle span {
width: 28px;
height: 3px;
background: var(--primary);
border-radius: 2px;
transition: all 0.3s ease;
}
.menu-toggle.active span:nth-child(1) {
transform: rotate(45deg) translate(8px, 8px);
}
.menu-toggle.active span:nth-child(2) {
opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
transform: rotate(-45deg) translate(7px, -7px);
}
.nav {
position: fixed;
top: 82px;
left: 0;
right: 0;
background: white;
box-shadow: 0 4px 12px var(--shadow);
padding: 20px;
display: none;
flex-direction: column;
gap: 16px;
}
.nav.active {
display: flex;
}
.nav a {
color: var(--text);
text-decoration: none;
font-weight: 500;
padding: 8px 0;
transition: color 0.3s ease;
}
.nav a:hover {
color: var(--primary);
}
.cta-button {
background: var(--primary);
color: white !important;
padding: 12px 24px;
border-radius: 8px;
text-align: center;
transition: background 0.3s ease;
}
.cta-button:hover {
background: var(--primary-dark);
}
@media (min-width: 768px) {
.menu-toggle {
display: none;
}
.nav {
position: static;
display: flex;
flex-direction: row;
align-items: center;
padding: 0;
box-shadow: none;
gap: 24px;
}
}
.hero {
position: relative;
height: 500px;
overflow: hidden;
}
.hero-image {
width: 100%;
height: 100%;
object-fit: cover;
}
.hero-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg, rgb(161 104 49 / 20%) 0%, rgb(161 104 49 / 22%) 100%);
display: flex;
align-items: center;
}
.hero-content {
color: white;
max-width: 600px;
}
.hero-content h1 {
font-size: 32px;
font-weight: 700;
margin-bottom: 16px;
line-height: 1.2;
}
.hero-subtitle {
font-size: 18px;
margin-bottom: 24px;
opacity: 0.95;
}
.hero-cta {
display: flex;
flex-wrap: wrap;
gap: 12px;
}
.btn {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 12px 24px;
border-radius: 8px;
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
border: 2px solid transparent;
}
.btn-primary {
background: var(--secondary);
color: var(--primary-dark);
}
.btn-primary:hover {
background: #d9d9d9;
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(20, 255, 236, 0.3);
}
.btn-secondary {
background: #0000005c;
color: white;
border-color: white;
}
.btn-secondary:hover {
background: #f8f4ed;
color: var(--primary);
}
@media (min-width: 768px) {
.hero {
height: 600px;
}
.hero-content h1 {
font-size: 48px;
}
.hero-subtitle {
font-size: 20px;
}
}
.section {
padding: 60px 0;
}
.section-alt {
background: var(--bg-alt);
}
.section h2 {
font-size: 32px;
font-weight: 700;
margin-bottom: 24px;
color: var(--primary);
}
.section p {
margin-bottom: 16px;
color: var(--text-light);
}
.services-grid {
display: grid;
gap: 24px;
margin-top: 32px;
}
@media (min-width: 768px) {
.services-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (min-width: 1024px) {
.services-grid {
grid-template-columns: repeat(3, 1fr);
}
}
.service-card {
background: white;
padding: 32px;
border-radius: 12px;
box-shadow: 0 2px 8px var(--shadow);
transition: all 0.3s ease;
}
.service-card:hover {
transform: translateY(-4px);
box-shadow: 0 8px 16px var(--shadow);
}
.service-icon {
color: var(--primary);
margin-bottom: 16px;
}
.service-card h3 {
font-size: 20px;
font-weight: 600;
margin-bottom: 12px;
color: var(--text);
}
.service-card p {
font-size: 15px;
margin-bottom: 0;
}
.trust-section {
background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
color: white;
text-align: center;
}
.rating-display {
display: flex;
flex-direction: column;
align-items: center;
gap: 16px;
}
.stars {
display: flex;
gap: 4px;
}
.rating-text {
display: flex;
flex-direction: column;
gap: 4px;
}
.rating-text strong {
font-size: 24px;
font-weight: 700;
}
.rating-text span {
font-size: 16px;
opacity: 0.9;
}
.gallery-grid {
display: grid;
gap: 20px;
margin-top: 32px;
}
@media (min-width: 768px) {
.gallery-grid {
grid-template-columns: repeat(3, 1fr);
}
}
.gallery-grid img {
width: 100%;
height: 250px;
object-fit: cover;
border-radius: 12px;
box-shadow: 0 4px 12px var(--shadow);
transition: transform 0.3s ease;
}
.gallery-grid img:hover {
transform: scale(1.05);
}
.review-actions {
display: flex;
flex-wrap: wrap;
gap: 12px;
margin-top: 32px;
justify-content: center;
}
.faq-accordion {
margin-top: 32px;
}
.faq-item {
background: white;
border-radius: 12px;
margin-bottom: 16px;
box-shadow: 0 2px 8px var(--shadow);
overflow: hidden;
}
.faq-question {
width: 100%;
background: none;
border: none;
padding: 20px;
text-align: left;
font-size: 16px;
font-weight: 600;
color: var(--text);
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
gap: 16px;
transition: background 0.3s ease;
}
.faq-question:hover {
background: var(--bg-alt);
}
.faq-icon {
flex-shrink: 0;
transition: transform 0.3s ease;
color: var(--primary);
}
.faq-item.active .faq-icon {
transform: rotate(180deg);
}
.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
}
.faq-item.active .faq-answer {
max-height: 500px;
}
.faq-answer p {
padding: 0 20px 20px;
margin: 0;
}
.contact-grid {
display: grid;
gap: 32px;
margin-top: 32px;
}
@media (min-width: 768px) {
.contact-grid {
grid-template-columns: 1fr 1fr;
}
}
.contact-info {
display: flex;
flex-direction: column;
gap: 24px;
}
.contact-item {
display: flex;
gap: 16px;
}
.contact-item svg {
flex-shrink: 0;
color: var(--primary);
}
.contact-item strong {
display: block;
margin-bottom: 4px;
color: var(--text);
}
.contact-item p {
margin: 0;
color: var(--text-light);
}
.contact-item a {
color: var(--primary);
text-decoration: none;
}
.contact-item a:hover {
text-decoration: underline;
}
.map-container {
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 12px var(--shadow);
}
.map-container iframe {
width: 100%;
height: 400px;
}
.footer {
background: var(--primary-dark);
color: white;
padding: 48px 0 24px;
}
.footer-content {
display: grid;
gap: 32px;
margin-bottom: 32px;
}
@media (min-width: 768px) {
.footer-content {
grid-template-columns: repeat(3, 1fr);
}
}
.footer-section h3 {
font-size: 18px;
font-weight: 600;
margin-bottom: 16px;
}
.footer-section p {
margin-bottom: 8px;
opacity: 0.9;
}
.footer-section a {
color: white;
text-decoration: none;
}
.footer-section a:hover {
color: var(--secondary);
}
.footer-nav {
display: flex;
flex-direction: column;
gap: 8px;
}
.footer-bottom {
text-align: center;
padding-top: 24px;
border-top: 1px solid rgba(255, 255, 255, 0.2);
opacity: 0.8;
}
.mobile-cta-bar {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: white;
box-shadow: 0 -4px 12px var(--shadow);
display: flex;
z-index: 90;
padding: 8px;
}
.mobile-cta-item {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 4px;
padding: 12px 8px;
text-decoration: none;
color: var(--primary);
font-size: 13px;
font-weight: 600;
transition: background 0.3s ease;
border-radius: 8px;
}
.mobile-cta-item:hover {
background: var(--bg-alt);
}
.mobile-cta-item svg {
flex-shrink: 0;
}
@media (min-width: 768px) {
.mobile-cta-bar {
display: none;
}
}
.back-to-top {
position: fixed;
bottom: 80px;
right: 20px;
width: 50px;
height: 50px;
background: var(--primary);
color: white;
border: none;
border-radius: 50%;
box-shadow: 0 4px 12px var(--shadow);
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
z-index: 80;
}
.back-to-top.visible {
opacity: 1;
visibility: visible;
}
.back-to-top:hover {
background: var(--primary-dark);
transform: translateY(-4px);
}
@media (min-width: 768px) {
.back-to-top {
bottom: 20px;
}
}
@media (prefers-reduced-motion: reduce) {

{
transition: none !important;
animation: none !important;
}
}