@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Playball&family=Roboto:wght@300;400;500&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --color-taupe: #6f6d68;
  --color-taupe-dark: #5a5855;
  --color-orange: #ffa500;
  --color-white: #ffffff;
  --color-off-white: #f5f5f5;
  --color-light-grey: #eeeeee;
  --color-text: #333333;
  --color-text-light: #666666;

  --font-heading: 'Oswald', sans-serif;
  --font-script: 'Playball', cursive;
  --font-body: 'Roboto', sans-serif;

  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ============================================================
   HEADER — Single-row: [Logo+Brand] [Nav] [Phone+Socials]
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(111, 109, 104, 0.92);
  color: var(--color-white);
  transition: background-color 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.5s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  animation: headerSlideDown 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes headerSlideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.site-header.scrolled {
  background: rgba(55, 53, 50, 0.97);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25), 0 1px 0 rgba(255, 165, 0, 0.08);
  border-bottom-color: rgba(255, 165, 0, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 30px;
  transition: padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled .header-inner {
  padding: 8px 30px;
}

/* Left: Logo + Brand Name */
.header-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.header-brand:hover {
  transform: scale(1.02);
}

.header-logo-img {
  width: 55px;
  height: 44px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled .header-logo-img {
  width: 40px;
  height: 32px;
}

.header-brand-name {
  font-family: var(--font-script);
  font-size: 20px;
  line-height: 1.2;
  white-space: nowrap;
  opacity: 1;
  transition: opacity 0.4s ease, font-size 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled .header-brand-name {
  font-size: 17px;
}

/* Center: Desktop Nav Links */
.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--color-white);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-orange);
  transition: width 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), left 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-radius: 1px;
}

.nav-link:hover::after {
  width: 100%;
  left: 0;
}

.nav-link.active {
  color: var(--color-white);
}

.nav-link.active::after {
  width: 100%;
  left: 0;
}

/* Right: Phone + CTA + Hamburger */
.header-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
  white-space: nowrap;
}

.header-phone:hover {
  color: var(--color-orange);
}

.header-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.header-cta {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 20px;
  background: var(--color-orange);
  color: var(--color-white);
  border-radius: 3px;
  white-space: nowrap;
  transition: background 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.header-cta:hover {
  background: #e69500;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
}

/* Hamburger (CSS-only animated bars) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1002;
}

.hamburger-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.25s ease;
  transform-origin: center;
}

.hamburger.open .hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open .hamburger-bar:nth-child(2) {
  opacity: 0;
}

.hamburger.open .hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: rgba(40, 38, 36, 0.97);
  backdrop-filter: blur(30px) saturate(1.3);
  -webkit-backdrop-filter: blur(30px) saturate(1.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.45s ease;
}

.mobile-nav-overlay.show {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  padding: 16px 0;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: color 0.3s ease, opacity 0.5s ease, transform 0.5s ease;
}

.mobile-nav-overlay.show .mobile-nav-link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav-overlay.show .mobile-nav-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav-overlay.show .mobile-nav-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav-overlay.show .mobile-nav-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav-overlay.show .mobile-nav-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav-overlay.show .mobile-nav-link:nth-child(5) { transition-delay: 0.3s; }

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--color-white);
}

.mobile-nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: var(--color-orange);
}

.mobile-nav-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease 0.35s, transform 0.5s ease 0.35s;
}

.mobile-nav-overlay.show .mobile-nav-footer {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav-cta {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 14px 40px;
  background: var(--color-orange);
  color: var(--color-white);
  border-radius: 3px;
  margin-bottom: 10px;
  transition: background 0.3s ease, transform 0.25s ease;
}

.mobile-nav-cta:hover {
  background: #e69500;
  transform: scale(1.03);
}

.mobile-nav-phone {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--color-orange);
}

.mobile-nav-email {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}

.mobile-nav-email:hover {
  color: var(--color-white);
}

/* ===== MAIN CONTENT ===== */
.main-content {
  flex: 1;
  animation: pageEnter 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 0.15s;
}

@keyframes pageEnter {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  color: var(--color-white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.45));
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 5px;
  line-height: 1.05;
  margin-bottom: 10px;
  text-shadow: 2px 3px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-family: var(--font-script);
  font-size: clamp(1.5rem, 3.5vw, 2.8rem);
  font-weight: 400;
  text-shadow: 1px 2px 5px rgba(0, 0, 0, 0.3);
}

/* ===== INTRO ===== */
.intro-section {
  padding: 80px 30px;
  text-align: center;
  background: var(--color-white);
}

.intro-section p {
  max-width: 850px;
  margin: 0 auto;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
  color: var(--color-taupe);
  line-height: 1.5;
}

.intro-section .btn-orange {
  display: inline-block;
  max-width: 320px;
}

/* ===== SERVICE PILLARS ===== */
.pillars-section {
  padding: 40px 30px 80px;
  background: var(--color-white);
}

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

.pillar-card {
  text-align: center;
  transition: transform 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-4px);
}

.pillar-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  margin-bottom: 20px;
}

.pillar-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-taupe);
}

/* ===== SPLIT SECTION ===== */
.split-section {
  display: flex;
  min-height: 550px;
}

.split-image {
  flex: 1;
  overflow: hidden;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
  background: var(--color-light-grey);
}

.split-text h2 {
  font-family: var(--font-script);
  font-size: 36px;
  font-weight: 400;
  color: var(--color-taupe);
  margin-bottom: 24px;
  line-height: 1.3;
}

.split-text p {
  font-size: 16px;
  color: var(--color-text-light);
  margin-bottom: 16px;
  line-height: 1.8;
}

.btn-outline {
  display: inline-block;
  padding: 14px 40px;
  border: 1px solid var(--color-text);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-text);
  transition: background 0.3s, color 0.3s;
  align-self: flex-start;
  margin-top: 16px;
}

.btn-outline:hover {
  background: var(--color-text);
  color: var(--color-white);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: var(--color-taupe);
  color: var(--color-white);
  padding: 80px 30px;
  text-align: center;
}

.testimonials-section h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.testimonials-stars {
  font-size: 22px;
  color: var(--color-orange);
  margin-bottom: 30px;
  letter-spacing: 4px;
}

.testimonial-box {
  background: var(--color-white);
  color: var(--color-text);
  max-width: 700px;
  margin: 0 auto;
  padding: 50px 40px;
  min-height: 160px;
  font-style: italic;
  font-size: 17px;
  line-height: 1.8;
}

/* ===== SEEN IN ===== */
.seen-in-section {
  padding: 60px 30px 100px;
  text-align: center;
  background: var(--color-white);
}

.seen-in-section h2 {
  font-family: var(--font-script);
  font-size: 32px;
  color: var(--color-taupe);
  margin-bottom: 40px;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.5)),
    url('/images/hero_home-6977a5199911e1a46eeae659069b7d98.webp?vsn=d') center/cover no-repeat;
}

.page-hero.hero-services {
  background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.5)),
    url('/images/hero_services-87706a8e21a1d34c987c9b4319b5e609.webp?vsn=d') center/cover no-repeat;
}

.page-hero.hero-contact {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)),
    url('/images/hero_contact-b52aa0c947f2e183b0721dff40f163a6.webp?vsn=d') center/cover no-repeat;
}

.page-hero.hero-portfolio {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.45)),
    url('/images/hero_portfolio-84ebe20d0449019d57a8cd758790a7b0.webp?vsn=d') center/cover no-repeat;
}

.page-hero.hero-about {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.55)),
    url('/images/hero_about-dd3d03bf3cb718be84c81bc382539ff0.webp?vsn=d') center/cover no-repeat;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 5px;
  text-shadow: 2px 3px 8px rgba(0, 0, 0, 0.3);
}

/* ===== CONTACT PAGE ===== */
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 30px;
  text-align: center;
}

.contact-info-block h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-taupe);
  margin-bottom: 16px;
}

.contact-info-block p {
  font-size: 17px;
  margin-bottom: 6px;
}

.contact-info-block a:hover {
  color: var(--color-orange);
}

.contact-form-section {
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url('/images/restoration-1e0958344f1e4bbc009f4c7e31692cc3.png?vsn=d') center/cover no-repeat;
  padding: 80px 30px;
}

.contact-form-box {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-form-box h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--color-white);
  text-transform: uppercase;
  margin-bottom: 30px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 16px;
  border: none;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--color-text);
  background: var(--color-white);
  outline: none;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.btn-submit {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--color-orange);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-submit:hover {
  background: #e69500;
}

/* ===== PORTFOLIO ===== */
.portfolio-intro {
  padding: 60px 30px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.portfolio-intro p {
  font-size: 18px;
  color: var(--color-text-light);
  line-height: 1.8;
}

.portfolio-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto 60px;
  padding: 0 30px;
}

.btn-orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 32px;
  background: var(--color-orange);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  border: 2px solid var(--color-orange);
  box-sizing: border-box;
  transition: background 0.3s;
}

.btn-orange:hover {
  background: #e69500;
}

/* ===== BEFORE / AFTER SHOWCASE ===== */
.before-after-section {
  padding: 80px 30px;
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--color-taupe);
  margin-bottom: 10px;
}

.section-subtext {
  font-family: var(--font-script);
  font-size: 22px;
  color: #999;
  margin-bottom: 50px;
}

.before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.before-after-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.before-after-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  display: block;
  transition: transform 4s cubic-bezier(0.16, 1, 0.3, 1);
}

.before-after-card:hover img {
  transform: scale(1.04);
}

.before-after-label {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-white);
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  padding: 6px 16px;
  border-radius: 3px;
}

.before-after-label.after {
  background: rgba(255, 165, 0, 0.85);
}

@media (max-width: 600px) {
  .before-after-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== THANK YOU PAGE ===== */
.thank-you-section {
  padding: 80px 30px 100px;
  text-align: center;
  background: var(--color-white);
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-orange);
  color: var(--color-white);
  font-size: 40px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes scaleIn {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.thank-you-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-taupe);
  margin-bottom: 20px;
}

.thank-you-content p {
  font-family: var(--font-body);
  font-size: 17px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 10px;
}

.thank-you-phone {
  margin-top: 30px !important;
  font-weight: 500;
  color: var(--color-taupe) !important;
}

.thank-you-phone-link {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-orange);
  text-decoration: none;
  margin-bottom: 40px;
  transition: color 0.3s;
}

.thank-you-phone-link:hover {
  color: #e69500;
}

.thank-you-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}

.thank-you-actions a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 200px;
  height: 58px !important;
  padding: 0 32px !important;
  margin: 0 !important;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  box-sizing: border-box !important;
  border: 2px solid var(--color-orange) !important;
  transition: background 0.3s, color 0.3s;
}

.thank-you-actions a:first-child {
  background: var(--color-orange);
  color: var(--color-white);
}

.thank-you-actions a:last-child {
  background: transparent;
  color: var(--color-orange);
}

.thank-you-actions a:first-child:hover {
  background: #e69500;
  border-color: #e69500;
}

.thank-you-actions a:last-child:hover {
  background: var(--color-orange);
  color: var(--color-white);
}

/* ===== CAROUSEL ===== */
.carousel-section {
  padding: 0 30px 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.carousel {
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
  border-radius: 8px;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: 70vh;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: var(--color-white);
  border: none;
  cursor: pointer;
  font-size: 28px;
  padding: 16px 18px;
  line-height: 1;
  transition: background 0.3s;
  z-index: 2;
  border-radius: 4px;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.75);
}

.carousel-btn-prev {
  left: 12px;
}

.carousel-btn-next {
  right: 12px;
}

.carousel-counter {
  text-align: center;
  padding-top: 20px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 3px;
  color: var(--color-taupe);
}

/* ===== ABOUT ===== */
.about-content {
  padding: 60px 30px;
  max-width: 900px;
  margin: 0 auto;
}

.about-content h2 {
  font-family: var(--font-script);
  font-size: 34px;
  color: var(--color-taupe);
  margin-bottom: 20px;
}

.about-content p {
  font-size: 17px;
  color: var(--color-text-light);
  margin-bottom: 16px;
  line-height: 1.8;
}

/* ============================================================
   FOOTER — Matches Paddy Creek exactly:
   [Contact + Google G]  [Brand + Logo + Phone]  [Service Links]
   ─────────────────────   ─────────────────────
                     [fb] [ig] [email]
   ============================================================ */

.site-footer {
  background: var(--color-taupe);
  color: var(--color-white);
  margin-top: auto;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 30px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-col h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 3px;
  margin-bottom: 16px;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.footer-col p,
.footer-col a {
  font-size: 16px;
  margin-bottom: 6px;
  opacity: 0.9;
}

.footer-col a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* Google Review Badge */
.google-review-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 24px;
}

.google-g {
  width: 60px;
  height: 60px;
  background: #444;
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Georgia', serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
}

.review-text {
  font-style: italic;
  font-size: 14px;
  opacity: 0.9;
}

/* Footer Center Column */
.footer-col-center {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0 30px;
}

.footer-brand {
  font-family: var(--font-script);
  font-size: 28px;
  margin-bottom: 12px;
}

.footer-logo-img {
  width: 160px;
  height: 120px;
  object-fit: contain;
  margin: 0 auto 12px;
  filter: brightness(0) invert(1);
}

.footer-phone {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Footer Service Links */
.footer-services-list {
  text-align: left;
  width: 100%;
  max-width: 280px;
}

.footer-services-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-services-list li:last-child {
  border-bottom: none;
}

.footer-services-list a {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Footer Bottom Bar */
.footer-bottom-bar {
  padding: 0 30px 30px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-bottom-dividers {
  display: flex;
  gap: 80px;
  margin-bottom: 24px;
}

.footer-divider-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}

.footer-bottom-social {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.footer-bottom-social a {
  opacity: 0.85;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
}

.footer-bottom-social a:hover {
  opacity: 1;
}

.footer-bottom-social svg {
  fill: currentColor;
}

/* ===== RESPONSIVE ===== */

/* Tablet breakpoint */
@media (max-width: 1024px) {
  .header-nav {
    gap: 18px;
  }

  .nav-link {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .header-phone {
    display: none;
  }

  .header-divider {
    display: none;
  }

  .header-brand-name {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 12px 20px;
  }

  .site-header.scrolled .header-inner {
    padding: 8px 20px;
  }

  .header-brand-name {
    display: none;
  }

  .header-nav {
    display: none;
  }

  .header-phone,
  .header-divider,
  .header-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .split-section {
    flex-direction: column;
  }

  .split-text {
    padding: 40px 30px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-services-list {
    text-align: center;
    margin: 0 auto;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-cta-grid {
    grid-template-columns: 1fr;
  }

  .carousel-btn {
    font-size: 22px;
    padding: 12px 14px;
  }
}

/* Body scroll lock when mobile menu is open */
body.menu-open {
  overflow: hidden;
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children in grids */
.reveal-on-scroll:nth-child(2) {
  transition-delay: 0.1s;
}

.reveal-on-scroll:nth-child(3) {
  transition-delay: 0.2s;
}

/* Section-level reveals */
.section-reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Hero subtitle entrance */
.hero-subtitle {
  animation: subtitleFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

@keyframes subtitleFadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
  animation: heroTitleIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

@keyframes heroTitleIn {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Pillar card hover polish */
.pillar-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* Split section image subtle zoom */
.split-image img {
  transition: transform 6s cubic-bezier(0.16, 1, 0.3, 1);
}

.split-image:hover img {
  transform: scale(1.03);
}

/* Button hover refinement */
.btn-outline {
  transition: background 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              color 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.25s ease,
              box-shadow 0.35s ease;
}

.btn-outline:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-orange {
  transition: background 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.25s ease,
              box-shadow 0.35s ease;
}

.btn-orange:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 165, 0, 0.25);
}