:root {
--bg: #faf8f3;
--surface: #f3efe6;
--card: #ffffff;
--ink: #141a2e;
--ink-2: #3a4256;
--muted: #6b7280;
--border: #e8e3d7;
--primary: #141a2e;
--primary-foreground: #faf8f3;
--accent: #e89b3c;
--accent-2: #d97a2b;
--accent-soft: #fbead1;
--star: #f5b544;
--radius: 16px;
--radius-lg: 24px;
--radius-xl: 32px;
--shadow-sm: 0 4px 14px -6px rgba(20, 26, 46, 0.12);
--shadow-md: 0 14px 40px -18px rgba(20, 26, 46, 0.28);
--shadow-lg: 0 30px 70px -30px rgba(20, 26, 46, 0.4);
--font-display: "Fraunces", ui-serif, Georgia, serif;
--font-sans:
    "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
}

/* ============ RESET ============ */
*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
scroll-behavior: smooth;
}
body {
font-family: var(--font-sans);
color: var(--ink);
background: var(--bg);
line-height: 1.6;
-webkit-font-smoothing: antialiased;
overflow-x: hidden;
}
a {
color: inherit;
text-decoration: none;
}
img {
max-width: 100%;
display: block;
}
button {
font: inherit;
cursor: pointer;
background: none;
border: none;
color: inherit;
}
h1,
h2,
h3,
h4 {
font-family: var(--font-display);
font-weight: 600;
letter-spacing: -0.02em;
line-height: 1.1;
}
.container {
width: 100%;
max-width: 1180px;
margin: 0 auto;
padding: 0 24px;
}
section {
scroll-margin-top: 80px;
}

/* ============ HEADER ============ */
.header {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 50;
transition:
    background 0.3s ease,
    backdrop-filter 0.3s ease,
    border-color 0.3s ease;
border-bottom: 1px solid transparent;
}
.header.scrolled {
background: rgba(250, 248, 243, 0.82);
backdrop-filter: saturate(180%) blur(16px);
-webkit-backdrop-filter: saturate(180%) blur(16px);
border-bottom-color: var(--border);
}
.header-inner {
display: flex;
align-items: center;
justify-content: space-between;
height: 72px;
}
.logo {
display: flex;
align-items: center;
gap: 10px;
font-weight: 700;
}
.logo-text {
font-family: var(--font-display);
font-size: 1.6rem;
font-weight: 700;
}
.nav {
display: flex;
align-items: center;
gap: 36px;
}
.nav a {
font-size: 0.9rem;
font-weight: 500;
color: var(--ink-2);
transition: color 0.2s;
}
.nav a:hover {
color: var(--ink);
}
.btn {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 12px 22px;
border-radius: 999px;
font-weight: 600;
font-size: 0.9rem;
transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s;
white-space: nowrap;
}
nav .btn-primary {
background: var(--ink);
color: var(--surface);
}
nav .btn-primary:hover {
    color: var(--ink);
    background: var(--surface);
    border: 2px solid var(--ink);
transform: translateY(-2px);
box-shadow: var(--shadow-md);
}
.btn-outline {
background: var(--card);
color: var(--ink);
border: 1px solid var(--border);
}
.btn-outline:hover {
background: var(--surface);
border: 2px solid var(--ink);
}
.btn-accent {
background: var(--accent);
color: #3a2408;
}
.btn-accent:hover {
opacity: 0.92;
transform: translateY(-2px);
}
.btn-lg {
padding: 16px 28px;
font-size: 0.95rem;
}
.btn .arrow {
transition: transform 0.2s;
}
.btn:hover .arrow {
transform: translateX(4px);
}
.hamburger {
display: none;
width: 40px;
height: 40px;
place-items: center;
}
.hamburger span {
display: block;
width: 22px;
height: 2px;
background: var(--ink);
margin: 4px 0;
transition: 0.3s;
}
.hamburger.active span:nth-child(1) {
transform: translateY(6px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
opacity: 0;
}
.hamburger.active span:nth-child(3) {
transform: translateY(-6px) rotate(-45deg);
}

/* ============ HERO ============ */
.hero {
position: relative;
overflow: hidden;
padding: 140px 0 100px;
background:
    radial-gradient(
    1200px 600px at 85% 10%,
    rgba(232, 155, 60, 0.22),
    transparent 60%
    ),
    radial-gradient(
    900px 500px at 10% 90%,
    rgba(20, 26, 46, 0.08),
    transparent 60%
    ),
    linear-gradient(180deg, var(--bg), var(--surface));
}
.hero-grid {
display: grid;
grid-template-columns: 1.15fr 1fr;
gap: 64px;
align-items: center;
}
.badge {
display: inline-flex;
align-items: center;
gap: 10px;
padding: 8px 16px;
border-radius: 999px;
background: rgba(255, 255, 255, 0.6);
border: 1px solid var(--border);
backdrop-filter: blur(6px);
font-size: 0.8rem;
font-weight: 500;
color: var(--ink-2);
}
.badge .dot {
width: 6px;
height: 6px;
border-radius: 50%;
background: var(--accent);
animation: pulse 2s infinite;
}
@keyframes pulse {
0%,
100% {
    opacity: 1;
}
50% {
    opacity: 0.4;
}
}
.hero h1 {
font-size: clamp(2.5rem, 6vw, 4.8rem);
margin-top: 24px;
font-weight: 600;
}
.hero h1 .italic {
font-style: italic;
background: linear-gradient(135deg, var(--accent), var(--accent-2));
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.hero p.lead {
margin-top: 24px;
max-width: 520px;
color: var(--muted);
font-size: 1.1rem;
}
.hero-actions {
margin-top: 36px;
display: flex;
flex-wrap: wrap;
gap: 14px;
}
.perks {
margin-top: 40px;
display: flex;
flex-wrap: wrap;
gap: 12px 32px;
}
.perk {
display: inline-flex;
align-items: center;
gap: 8px;
font-size: 0.88rem;
color: var(--muted);
}
.perk svg {
width: 16px;
height: 16px;
color: var(--accent-2);
}
.perk strong {
color: var(--ink);
font-weight: 600;
}

/* Hero image */
.hero-visual {
position: relative;
}
.hero-photo {
position: relative;
aspect-ratio: 4/5;
border-radius: var(--radius-xl);
overflow: hidden;
box-shadow: var(--shadow-lg);
animation: float 7s ease-in-out infinite;
background: linear-gradient(160deg, #c98b4a, #6b3f22);
}
.hero-photo img {
width: 100%;
height: 100%;
display: block;
object-fit: cover;
object-position: center;
}
.hero-photo::after {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(
    to top,
    rgba(20, 26, 46, 0.4),
    transparent 60%
);
}
@keyframes float {
0%,
100% {
    transform: translateY(0);
}
50% {
    transform: translateY(-14px);
}
}
.review-card {
position: absolute;
left: -24px;
bottom: -24px;
background: var(--card);
padding: 16px 18px;
border-radius: var(--radius);
box-shadow: var(--shadow-md);
border: 1px solid var(--border);
max-width: 230px;
}
.stars {
display: flex;
gap: 2px;
color: var(--star);
}
.stars svg {
width: 14px;
height: 14px;
fill: currentColor;
}
.review-card p {
margin-top: 8px;
font-size: 0.85rem;
font-weight: 500;
line-height: 1.4;
}
.review-card span {
margin-top: 4px;
font-size: 0.75rem;
color: var(--muted);
display: block;
}
.badge-247 {
position: absolute;
right: -16px;
top: 32px;
background: var(--ink);
color: var(--primary-foreground);
padding: 14px 20px;
border-radius: var(--radius);
box-shadow: var(--shadow-lg);
}
.badge-247 .num {
font-family: var(--font-display);
font-size: 2rem;
font-weight: 600;
}
.badge-247 .lbl {
font-size: 0.7rem;
opacity: 0.75;
margin-top: 2px;
}

/* ============ MARQUEE ============ */
.marquee {
border-top: 1px solid var(--border);
border-bottom: 1px solid var(--border);
background: var(--surface);
padding: 20px 0;
}
.marquee-inner {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
gap: 12px 40px;
font-size: 0.82rem;
font-weight: 600;
color: var(--muted);
text-transform: uppercase;
letter-spacing: 0.18em;
}
.marquee-inner .sep {
color: var(--accent);
}

/* ============ SERVICES ============ */
.services {
padding: 120px 0;
}
.eyebrow {
font-size: 0.72rem;
font-weight: 700;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--accent-2);
}
.section-head {
max-width: 640px;
}
.section-head h2 {
font-size: clamp(2rem, 4.2vw, 3.2rem);
margin-top: 12px;
}
.section-head p {
margin-top: 16px;
color: var(--muted);
font-size: 1.1rem;
}
.services-grid {
margin-top: 56px;
display: grid;
gap: 20px;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.service {
background: var(--card);
border: 1px solid var(--border);
border-radius: var(--radius-lg);
padding: 28px;
transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s;
display: flex;
flex-direction: column;
}
.service:hover {
transform: translateY(-6px);
box-shadow: var(--shadow-md);
border-color: rgba(20, 26, 46, 0.2);
}
.service .icon {
width: 52px;
height: 52px;
border-radius: 14px;
background: var(--accent-soft);
color: var(--accent-2);
display: grid;
place-items: center;
}
.service .icon svg {
width: 26px;
height: 26px;
stroke: currentColor;
fill: none;
stroke-width: 1.8;
stroke-linecap: round;
stroke-linejoin: round;
}
.service h3 {
margin-top: 22px;
font-size: 1.5rem;
}
.service p {
margin-top: 12px;
color: var(--muted);
font-size: 0.92rem;
flex: 1;
}
.service .link {
margin-top: 22px;
display: inline-flex;
align-items: center;
gap: 6px;
font-size: 0.88rem;
font-weight: 600;
color: var(--ink);
}
.service .link svg {
width: 16px;
height: 16px;
transition: transform 0.2s;
}
.service:hover .link svg {
transform: translateX(4px);
}
/* featured card */
.service.featured {
background: var(--ink);
color: var(--primary-foreground);
border-color: var(--ink);
box-shadow: var(--shadow-lg);
}
.service.featured .icon {
background: var(--accent);
color: #3a2408;
}
.service.featured p {
color: rgba(250, 248, 243, 0.7);
}
.service.featured .link {
color: var(--accent);
}

/* ============ ABOUT ============ */
.about {
padding: 120px 0;
background: var(--surface);
}
.about-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 64px;
align-items: center;
}
.about-photo {
position: relative;
aspect-ratio: 5/6;
border-radius: var(--radius-xl);
overflow: hidden;
box-shadow: var(--shadow-lg);
background: linear-gradient(160deg, #2a3652, #141a2e);
}
.about-photo img {
width: 100%;
height: 100%;
display: block;
object-fit: stretch;
}
.verified-card {
position: absolute;
bottom: -24px;
right: -24px;
max-width: 230px;
background: var(--card);
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 18px;
box-shadow: var(--shadow-md);
}
.verified-card .lbl {
display: inline-flex;
align-items: center;
gap: 6px;
font-size: 0.7rem;
font-weight: 700;
letter-spacing: 0.18em;
text-transform: uppercase;
color: var(--accent-2);
}
.verified-card .lbl svg {
width: 14px;
height: 14px;
}
.verified-card p {
margin-top: 10px;
font-size: 0.85rem;
color: var(--muted);
line-height: 1.5;
}
.about-content h2 {
font-size: clamp(2rem, 4vw, 3rem);
margin-top: 12px;
}
.about-content .body {
margin-top: 24px;
display: flex;
flex-direction: column;
gap: 16px;
color: var(--muted);
}
.stats {
margin-top: 44px;
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 14px;
}
.stat {
background: var(--card);
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 20px;
}
.stat .num {
font-family: var(--font-display);
font-size: 2.1rem;
font-weight: 600;
line-height: 1;
}
.stat .num .plus {
color: var(--accent);
}
.stat .lbl {
margin-top: 6px;
font-size: 0.7rem;
font-weight: 600;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--muted);
}

/* ============ CTA ============ */
.cta {
padding: 100px 0;
}
.cta-inner {
    position: relative;
    overflow: hidden;
    background: url(./img/contact_us.jpg) center no-repeat;
    color: var(--primary-foreground);
    border-radius: 40px;
    padding: 80px 64px;
    box-shadow: var(--shadow-lg);
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(20, 26, 46, 0.85);
}
.cta-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.5;
    background: radial-gradient(
            600px 300px at 85% 20%,
        rgba(232, 155, 60, 0.45),
        transparent 60%
    );
    pointer-events: none;
}
.cta-content {
position: relative;
max-width: 560px;
}
.cta h2 {
font-size: clamp(2rem, 4vw, 3rem);
}
.cta p {
margin-top: 16px;
color: rgba(250, 248, 243, 0.75);
font-size: 1.1rem;
}
.cta .btn {
margin-top: 32px;
}

/* ============ FOOTER ============ */
.footer {
background: var(--surface);
border-top: 1px solid var(--border);
}
.footer-grid {
display: grid;
grid-template-columns: 2fr 1fr 1fr;
gap: 40px;
padding: 64px 0;
}
.footer-brand p {
margin-top: 16px;
max-width: 360px;
color: var(--muted);
font-size: 0.9rem;
}
.footer h4 {
font-family: var(--font-display);
font-size: 0.85rem;
font-weight: 700;
letter-spacing: 0.14em;
text-transform: uppercase;
}
.footer ul {
list-style: none;
margin-top: 18px;
display: flex;
flex-direction: column;
gap: 8px;
}
.footer ul a,
.footer ul li {
color: var(--muted);
font-size: 0.9rem;
transition: color 0.2s;
}
.footer ul a:hover {
color: var(--ink);
}
.footer-bottom {
border-top: 1px solid var(--border);
padding: 22px 0;
display: flex;
justify-content: space-between;
align-items: center;
font-size: 0.8rem;
color: var(--muted);
}

/* ============ REVEAL ANIMATIONS ============ */
.reveal {
opacity: 0;
transform: translateY(24px);
transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal.in {
opacity: 1;
transform: none;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
.hero {
    padding: 120px 0 80px;
}
.hero-grid,
.about-grid {
    grid-template-columns: 1fr;
    gap: 56px;
}
.hero-visual {
    max-width: 420px;
    margin: 0 auto;
}
.services,
.about,
.cta {
    padding: 80px 0;
}
.cta-inner {
    padding: 56px 32px;
    border-radius: 28px;
}
.footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.nav {
    display: none;
}
.nav.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(250, 248, 243, 0.98);
    backdrop-filter: blur(14px);
    padding: 20px 24px 28px;
    border-bottom: 1px solid var(--border);
}
.nav.open a {
    padding: 8px 16px;
}
.hamburger {
    display: grid;
}
.footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
}
}
@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .stats {
    grid-template-columns: 1fr 1fr;
  }
  .review-card {
    left: -8px;
    bottom: -16px;
  }
  .badge-247 {
    right: -4px;
  }
}

/* ============ RESPONSIVE MODAL ============ */
@media (max-width: 600px) {
  .modal-card {
    padding: 28px 20px;
    max-width: 100%;
    border-radius: var(--radius);
  }
  .modal-card h3 {
    font-size: 1.3rem;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 12px;
    font-size: 0.92rem;
  }
  .modal-card .btn {
    padding: 14px 20px;
    font-size: 0.95rem;
  }
}

/* ============ MODAL ============ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(20, 26, 46, 0.6);
  backdrop-filter: blur(6px);
  display: none;
  place-items: center;
  padding: 24px;
  overflow-y: auto;
}
.modal-overlay.active {
  display: grid;
}
.modal-card {
  background: var(--card);
  border-radius: var(--radius-xl);
  padding: 44px 36px;
  max-width: 560px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
}
.modal-close:hover {
  color: var(--ink);
  background: var(--surface);
}
.modal-card h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.modal-card .modal-subtitle {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 24px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink);
}
.form-group label .required {
  color: #c0392b;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232, 155, 60, 0.15);
}
.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
  border-color: #c0392b;
}
.form-group input[readonly] {
  background: var(--surface);
  color: var(--muted);
  cursor: default;
}
.area-field {
  display: none;
}
.area-field.visible {
  display: block;
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: none; }
}
.modal-card .btn {
  margin-top: 12px;
  width: 100%;
  justify-content: center;
  padding: 16px 28px;
  font-size: 1rem;
}
.modal-card .btn:active {
  transform: scale(0.98);
}
.success-message {
  display: none;
  text-align: center;
  padding: 32px 0;
}
.success-message.active {
  display: block;
}
.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-2);
  font-size: 2rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
}
.success-message h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.success-message p {
  color: var(--muted);
  font-size: 0.95rem;
}
.error-message {
  display: none;
  text-align: center;
  padding: 32px 0;
}
.error-message.active {
  display: block;
}
.error-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fce4e4;
  color: #c0392b;
  font-size: 2rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
}
.error-message h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.error-message p {
  color: var(--muted);
  font-size: 0.95rem;
}