/* ===========================================
   PizzaCart — Petsitter Gótica
   style.css — Tema Vermelho & Preto
=========================================== */

/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --red-gothic:   #B00020;
  --red-dark:     #7F0000;
  --red-bright:   #FF1744;
  --black-deep:   #0A0A0A;
  --black-soft:   #1A1A1A;
  --black-card:   #2C2C2C;
  --gray-mid:     #555555;
  --white-ghost:  #F0E6E6;
  --white:        #FFFFFF;

  --font-gothic:  'UnifrakturMaguntia', cursive;
  --font-display: 'Cinzel', serif;
  --font-body:    'Raleway', sans-serif;

  --transition:   0.3s ease;
  --radius:       8px;
  --radius-sm:    4px;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--black-deep);
  color: var(--white-ghost);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

button {
  cursor: pointer;
  font-family: inherit;
}

/* ===========================
   CONTAINER
=========================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ===========================
   SECTIONS
=========================== */
section {
  padding: 90px 0;
}

/* ===========================
   TYPOGRAPHY
=========================== */
h1 {
  font-family: var(--font-gothic);
  color: var(--white-ghost);
}

h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--red-gothic);
  font-weight: 700;
}

h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white-ghost);
  font-weight: 600;
}

p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #aaa;
}

.ornament {
  display: block;
  text-align: center;
  color: var(--red-gothic);
  font-size: 1.2rem;
  letter-spacing: 10px;
  margin-bottom: 10px;
}

.section-title {
  text-align: center;
  margin-bottom: 56px;
}

.section-title h2 {
  margin-bottom: 8px;
}

.section-title p {
  max-width: 540px;
  margin: 0 auto;
}

.divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--red-gothic), transparent);
  margin: 14px auto 20px;
}

.divider-left {
  margin-left: 0;
}

/* ===========================
   BUTTONS
=========================== */
.btn-primary {
  display: inline-block;
  background: var(--red-gothic);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 14px 32px;
  border: 2px solid var(--red-gothic);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  box-shadow: 0 0 20px rgba(176, 0, 32, 0.65);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--red-gothic);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 13px 30px;
  border: 2px solid var(--red-gothic);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
  text-decoration: none;
}

.btn-outline:hover {
  background: var(--red-gothic);
  color: var(--white);
  box-shadow: 0 0 20px rgba(176, 0, 32, 0.5);
  transform: translateY(-2px);
}

.btn-pulse {
  animation: pulse 2.4s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(176, 0, 32, 0.5); }
  50%       { box-shadow: 0 0 0 14px rgba(176, 0, 32, 0); }
}

/* ===========================
   SCROLL REVEAL
=========================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   HEADER / NAVBAR
=========================== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(10, 10, 10, 0.92);
  border-bottom: 1px solid var(--red-dark);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 16px 0;
  transition: padding var(--transition), background var(--transition);
}

#header.scrolled {
  padding: 10px 0;
  background: rgba(10, 10, 10, 0.98);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-family: var(--font-gothic);
  font-size: 1.9rem;
  color: var(--red-gothic);
  text-decoration: none;
  text-shadow: 0 0 14px rgba(176, 0, 32, 0.5);
  flex-shrink: 0;
  transition: text-shadow var(--transition);
}

.logo:hover {
  text-shadow: 0 0 24px rgba(176, 0, 32, 0.8);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  margin: 0 auto;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--white-ghost);
  text-decoration: none;
  letter-spacing: 0.8px;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--red-gothic);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-links a:hover {
  color: var(--red-gothic);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  flex-shrink: 0;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--red-dark);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  cursor: pointer;
  transition: border-color var(--transition);
}

.menu-toggle:hover {
  border-color: var(--red-gothic);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white-ghost);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===========================
   HERO
=========================== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 140px 24px 80px;
  background:
    radial-gradient(ellipse at 50% 0%, #3a0000 0%, transparent 60%),
    radial-gradient(ellipse at 50% 100%, #1a0000 0%, transparent 50%),
    var(--black-deep);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 60px,
    rgba(176, 0, 32, 0.015) 60px,
    rgba(176, 0, 32, 0.015) 61px
  );
  pointer-events: none;
}

/* Floating particles */
.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--red-gothic);
  border-radius: 50%;
  opacity: 0;
  animation: floatUp var(--dur, 8s) var(--delay, 0s) infinite ease-in;
}

@keyframes floatUp {
  0%   { opacity: 0;   transform: translateY(100vh) scale(0.5); }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.2; }
  100% { opacity: 0;   transform: translateY(-10vh) scale(1.2); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 4px;
  color: var(--red-bright);
  border: 1px solid var(--red-dark);
  padding: 6px 20px;
  border-radius: 2px;
  margin-bottom: 28px;
  text-transform: uppercase;
  background: rgba(176, 0, 32, 0.07);
}

.hero-title {
  font-family: var(--font-gothic);
  font-size: clamp(2.8rem, 7vw, 4.8rem);
  color: var(--white-ghost);
  line-height: 1.05;
  margin-bottom: 18px;
  text-shadow: 0 0 40px rgba(176, 0, 32, 0.35);
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--red-gothic);
  margin-bottom: 24px;
  letter-spacing: 1.5px;
}

.hero-description {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: #999;
  max-width: 560px;
  margin: 0 auto 44px;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-ornament {
  font-size: 8rem;
  position: absolute;
  opacity: 0.05;
  color: var(--red-gothic);
  font-family: serif;
  line-height: 1;
  pointer-events: none;
}

.hero-ornament.left  { left: 5%;  top: 50%; transform: translateY(-50%); }
.hero-ornament.right { right: 5%; top: 50%; transform: translateY(-50%); }

/* ===========================
   SERVICES
=========================== */
#services {
  background: var(--black-deep);
  position: relative;
}

#services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--red-dark), transparent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--black-soft);
  border: 1px solid var(--red-dark);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--red-gothic), transparent);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.service-card:hover {
  border-color: var(--red-bright);
  box-shadow: 0 8px 36px rgba(176, 0, 32, 0.25);
  transform: translateY(-6px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  font-size: 3.2rem;
  margin-bottom: 20px;
  display: block;
  filter: drop-shadow(0 0 6px rgba(176, 0, 32, 0.4));
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.service-card p {
  font-size: 0.93rem;
  line-height: 1.7;
}

/* ===========================
   ABOUT
=========================== */
#about {
  background: var(--black-soft);
  position: relative;
}

#about::before,
#about::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--red-dark), transparent);
}

#about::before { top: 0; }
#about::after  { bottom: 0; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  padding: 8px;
}

.about-image-frame {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--black-card), #0d0000);
  border: 1px solid var(--red-dark);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  box-shadow:
    inset 0 0 60px rgba(176, 0, 32, 0.1),
    0 0 40px rgba(176, 0, 32, 0.15);
  overflow: hidden;
}

.about-image-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.about-emoji {
  font-size: 5rem;
  filter: drop-shadow(0 0 16px rgba(176, 0, 32, 0.6));
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

.about-image-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--gray-mid);
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* Gothic corner decorations */
.about-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: var(--red-gothic);
  border-style: solid;
  opacity: 0.8;
}

.about-corner.tl { top: 0;    left: 0;    border-width: 3px 0 0 3px; }
.about-corner.tr { top: 0;    right: 0;   border-width: 3px 3px 0 0; }
.about-corner.bl { bottom: 0; left: 0;    border-width: 0 0 3px 3px; }
.about-corner.br { bottom: 0; right: 0;   border-width: 0 3px 3px 0; }

.about-text h2 {
  margin-bottom: 8px;
  margin-top: 8px;
}

.about-text p {
  margin-bottom: 18px;
  line-height: 1.8;
}

.about-stats {
  display: flex;
  gap: 28px;
  margin: 32px 0;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  flex: 1;
  min-width: 80px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--red-gothic);
  line-height: 1;
  text-shadow: 0 0 16px rgba(176, 0, 32, 0.4);
}

.stat-label {
  font-size: 0.78rem;
  color: var(--gray-mid);
  font-family: var(--font-body);
  margin-top: 4px;
  letter-spacing: 0.5px;
}

/* ===========================
   TESTIMONIALS
=========================== */
#testimonials {
  background: var(--black-deep);
  position: relative;
}

#testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--red-dark), transparent);
}

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

.testimonial-card {
  background: var(--black-soft);
  border: 1px solid #2a0000;
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.testimonial-card:hover {
  border-color: var(--red-dark);
  box-shadow: 0 6px 28px rgba(176, 0, 32, 0.2);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: var(--red-gothic);
  font-size: 1rem;
  margin-bottom: 14px;
  letter-spacing: 3px;
  text-shadow: 0 0 8px rgba(176, 0, 32, 0.5);
}

.testimonial-text {
  font-style: italic;
  font-size: 0.92rem;
  color: #bbb;
  margin-bottom: 22px;
  line-height: 1.75;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #1a0000;
  border: 2px solid var(--red-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.author-name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--white-ghost);
  font-weight: 600;
}

.author-city {
  font-size: 0.76rem;
  color: var(--gray-mid);
  margin-top: 2px;
}

/* ===========================
   LOCATION
=========================== */
#location {
  background: var(--black-soft);
  position: relative;
}

#location::before,
#location::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--red-dark), transparent);
}

#location::before { top: 0; }
#location::after  { bottom: 0; }

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.map-wrapper {
  width: 100%;
  aspect-ratio: 16/11;
  border: 1px solid var(--red-dark);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 0 24px rgba(176, 0, 32, 0.15);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: invert(90%) hue-rotate(180deg) saturate(0.7) brightness(0.9);
}

.location-text h2 {
  margin-top: 8px;
  margin-bottom: 8px;
}

.location-text > p {
  margin-bottom: 4px;
}

.location-areas {
  list-style: none;
  margin: 16px 0 28px;
}

.location-areas li {
  padding: 9px 0;
  border-bottom: 1px solid #1a0808;
  font-family: var(--font-body);
  color: #aaa;
  font-size: 0.93rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color var(--transition);
}

.location-areas li:hover {
  color: var(--white-ghost);
}

.location-areas li::before {
  content: '✦';
  color: var(--red-gothic);
  font-size: 0.65rem;
  flex-shrink: 0;
}

/* ===========================
   CONTACT
=========================== */
#contact {
  background: var(--black-deep);
  position: relative;
}

#contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--red-dark), transparent);
}

.contact-title {
  font-family: var(--font-gothic) !important;
  font-size: 3rem !important;
  color: var(--white-ghost) !important;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-form {
  background: var(--black-soft);
  border: 1px solid var(--red-dark);
  border-radius: var(--radius);
  padding: 42px 38px;
}

.contact-form h3 {
  margin-bottom: 32px;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  color: var(--white-ghost);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 9px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--black-card);
  border: 1px solid #3a1a1a;
  border-radius: var(--radius-sm);
  color: var(--white-ghost);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 13px 16px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red-gothic);
  box-shadow: 0 0 0 3px rgba(176, 0, 32, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-mid);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.form-group select option {
  background: var(--black-soft);
  color: var(--white-ghost);
}

/* Custom select arrow */
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237F0000' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.4) sepia(1) saturate(5) hue-rotate(310deg);
  cursor: pointer;
}

.btn-submit {
  width: 100%;
  font-size: 1rem;
  padding: 16px;
  margin-top: 8px;
  letter-spacing: 2px;
}

.form-success {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  display: none;
}

.form-success.show {
  display: block;
  background: rgba(176, 0, 32, 0.15);
  border: 1px solid var(--red-gothic);
  color: var(--white-ghost);
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.contact-info h3 {
  margin-bottom: 28px;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid #2a0000;
  color: inherit;
  text-decoration: none;
  transition: transform var(--transition);
}

a.contact-item:hover {
  transform: translateX(4px);
}

a.contact-item:hover .contact-item-icon {
  border-color: var(--red-gothic);
  background: rgba(176, 0, 32, 0.15);
}

.contact-item-icon {
  width: 46px;
  height: 46px;
  background: #1a0000;
  border: 1px solid var(--red-dark);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: border-color var(--transition), background var(--transition);
}

.contact-item-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  color: var(--gray-mid);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.contact-item-value {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white-ghost);
  margin-top: 2px;
}

/* ===========================
   FOOTER
=========================== */
footer {
  background: var(--black-deep);
  border-top: 2px solid var(--red-dark);
  padding: 56px 0 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 44px;
}

.footer-logo {
  font-family: var(--font-gothic);
  font-size: 1.9rem;
  color: var(--red-gothic);
  margin-bottom: 14px;
  text-shadow: 0 0 12px rgba(176, 0, 32, 0.4);
  display: block;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--gray-mid);
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: var(--black-soft);
  border: 1px solid #2a0000;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white-ghost);
  text-decoration: none;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.social-icon:hover {
  border-color: var(--red-gothic);
  box-shadow: 0 0 12px rgba(176, 0, 32, 0.4);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--white-ghost);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid #2a0000;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--gray-mid);
  text-decoration: none;
  transition: color var(--transition), padding-left var(--transition);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--red-gothic);
  padding-left: 6px;
}

.footer-ornament {
  text-align: center;
  font-size: 1.1rem;
  opacity: 0.35;
  letter-spacing: 12px;
  margin-bottom: 24px;
  color: var(--red-gothic);
}

.footer-bottom {
  border-top: 1px solid #1a0000;
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-family: var(--font-display);
  font-size: 0.78rem;
  color: var(--gray-mid);
  letter-spacing: 1px;
}

/* ===========================
   RESPONSIVE — TABLET
=========================== */
@media (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }

  .nav-links {
    gap: 24px;
  }

  .about-grid {
    gap: 48px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: span 2;
  }
}

/* ===========================
   RESPONSIVE — MOBILE
=========================== */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  section {
    padding: 60px 0;
  }

  h2 {
    font-size: 1.7rem;
  }

  /* Navbar mobile */
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    z-index: 998;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.1rem;
    letter-spacing: 2px;
  }

  .menu-toggle {
    display: flex;
    z-index: 1000;
  }

  .nav-cta {
    display: none;
  }

  /* Hero */
  #hero {
    padding: 120px 20px 60px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }

  .hero-ornament {
    display: none;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image-frame {
    aspect-ratio: 3/2;
  }

  .about-stats {
    justify-content: center;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  /* Location */
  .location-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 28px 22px;
  }

  .contact-title {
    font-size: 2.2rem !important;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: span 1;
  }
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero-ctas .btn-primary,
  .hero-ctas .btn-outline {
    width: 100%;
    text-align: center;
  }

  .about-stats {
    gap: 16px;
  }

  .stat-number {
    font-size: 1.8rem;
  }
}
