body {
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.7;
  margin: 0;
  padding: 20px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.45), transparent 30%),
    linear-gradient(#4b9eded7, #ffffff);
  background-attachment: fixed;
  color: #222;
}

* {
  box-sizing: border-box;
}

.site-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding-bottom: 60px;
}

header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  padding: 12px 10px 18px;
  margin-bottom: 22px;
}

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

/* Social */
.social-links {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: flex-start;
}

.icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 24px rgba(27, 52, 74, 0.08);
  font-size: 24px;
  color: #243746;
  transition: transform 0.3s ease, color 0.3s ease;
}

.icon[href*="facebook"]:hover {
  color: #3b5998;
  transform: scale(1.12);
}

.icon[href*="instagram"]:hover {
  color: #e4405f;
  transform: scale(1.12);
}

.icon[href*="yelp"]:hover {
  color: #b50000;
  transform: scale(1.12);
}

/* Logo */
.logo {
  display: flex;
  justify-content: center;
}

.logo-img {
  max-height: 190px;
  width: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.logo-link:hover .logo-img {
  transform: scale(1.05);
}

/* Contact */
.contact-card-wrap {
  display: flex;
  justify-content: flex-end;
}

.contact-card {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(8px);
  min-width: 300px;
  max-width: 340px;
  width: auto;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #666;
  font-weight: 600;
  margin-bottom: 2px;
}

.contact-link {
  font-size: 13px;
  line-height: 1.4;
  font-weight: 600;
  color: #222;
  transition: color 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.contact-link:hover {
  color: #111;
  transform: translateY(-1px);
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 34px;
  align-items: center;
  margin-bottom: 58px;
}

.hero-copy h1 {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(50px, 5.8vw, 78px);
  line-height: 0.96;
  color: #1d2e3b;
}

.hero-copy p {
  max-width: 620px;
  font-size: 18px;
  color: #425568;
  margin: 0 0 26px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.primary-btn,
.secondary-link,
.quote-button {
  text-decoration: none;
  font-weight: 600;
}

.primary-btn,
.quote-button {
  display: inline-block;
  padding: 15px 26px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, #111, #2c2c2c);
  box-shadow: 0 14px 30px rgba(17, 17, 17, 0.18);
  transition: transform 0.2s ease, box-shadow 0.25s ease;
}

.primary-btn:hover,
.quote-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(17, 17, 17, 0.22);
}

.secondary-link {
  color: #2b5066;
}

.hero-panel {
  min-height: 340px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 40px rgba(27, 52, 74, 0.1);
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
}

.hero-slider {
  position: relative;
  min-height: 340px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.hero-slide.active {
  opacity: 1;
}

.mock-photo {
  background: linear-gradient(135deg, #ced8de, #f8fafb 45%, #d9e6ec);
}

.panel-caption {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
  font-weight: 600;
  color: #2d3f4d;
}

/* General sections */
section {
  margin-bottom: 58px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-head h2 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 46px;
  color: #1d2e3b;
  line-height: 1.05;
}

.section-head p {
  margin: 0;
  color: #506372;
}

.content-flow {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: start;
}

.flow-text p {
  margin-top: 0;
  color: #333;
}

.soft-panel {
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 14px 30px rgba(27, 52, 74, 0.08);
  backdrop-filter: blur(8px);
}

.soft-panel h3 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  color: #203240;
}

.service-list {
  display: grid;
  gap: 14px;
}

.service-item {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.service-item strong {
  display: block;
  margin-bottom: 4px;
}

/* Carousel */
.carousel-section {
  margin-bottom: 60px;
}

.work-carousel {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  padding: 16px 0 24px;
}

.carousel-track-wrapper {
  overflow: hidden;
  width: 100%;
}

.continuous-track {
  display: flex;
  align-items: center;
  gap: 14px;
  will-change: transform;
  padding: 8px 0;
}

.carousel-slide {
  flex: 0 0 28%;
  opacity: 0.72;
  transform: scale(0.9);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.carousel-slide img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
  display: block;
  cursor: pointer;
  transition: transform 0.28s ease, box-shadow 0.28s ease, opacity 0.28s ease;
}

.work-carousel:hover .carousel-slide {
  opacity: 0.82;
}

.work-carousel:hover .carousel-slide img:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
  opacity: 1;
}

/* CTA band */
.cta-band {
  display: grid;
  grid-template-columns: 1.1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px 30px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.52));
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 16px 34px rgba(27, 52, 74, 0.1);
  backdrop-filter: blur(10px);
}

.cta-band h2 {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 44px;
  color: #1d2e3b;
  line-height: 1.05;
}

.cta-band p {
  margin: 0;
  color: #506372;
}

/* Footer */
footer {
  padding: 18px 10px 8px;
  text-align: center;
  color: #617585;
  font-size: 14px;
}

/* Quote page */
.quote-page-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 15px;
}

.quote-page-card {
  width: 100%;
  max-width: 950px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.quote-page-header {
  text-align: center;
  margin-bottom: 28px;
}

.quote-page-header h1 {
  margin-bottom: 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 48px;
  line-height: 1.05;
  color: #1d2e3b;
}

.quote-page-header p {
  margin-bottom: 0;
}

.back-link {
  display: inline-block;
  margin-bottom: 18px;
  font-weight: 600;
  color: #222;
}

.back-link:hover {
  text-decoration: underline;
}

.quote-logo {
  display: block;
  margin: 0 auto 14px;
  max-height: 120px;
  width: auto;
  border-radius: 14px;
}

.quote-form {
  width: 100%;
}

.form-row {
  display: flex;
  gap: 18px;
  margin-bottom: 4px;
}

.form-group {
  width: 100%;
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 7px;
  font-weight: 600;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #d7d7d7;
  border-radius: 16px;
  font: inherit;
  background: rgba(255, 255, 255, 0.95);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #7aa6b0;
  box-shadow: 0 0 0 3px rgba(75, 158, 222, 0.12);
}

.form-group textarea {
  resize: vertical;
}

.field-note {
  font-size: 14px;
  color: #666;
  margin-top: 8px;
  margin-bottom: 0;
}

.submit-button {
  width: 100%;
  margin-top: 8px;
  padding: 15px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #111, #2d2d2d);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.25s ease;
}

.submit-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.form-status {
  margin: 10px 0 14px;
  min-height: 20px;
  font-size: 14px;
  color: #333;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.lightbox.open {
  display: block;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(2px);
}

.lightbox-content {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 90vh;
  margin: 4vh auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 86vh;
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
  display: block;
}

.lightbox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}

.lightbox-close:hover {
  background: #333;
}

/* Responsive */
@media (max-width: 920px) {
  header,
  .hero,
  .content-flow,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .social-links,
  .contact-card-wrap,
  .logo {
    justify-content: center;
  }

  .contact-card {
    max-width: 320px;
    min-width: 0;
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .contact-link {
    white-space: normal;
    word-break: break-word;
  }

  .hero-panel {
    min-height: 260px;
  }

  .carousel-slide {
    flex: 0 0 38%;
  }

  .carousel-slide img {
    height: 160px;
  }

  .hero-copy h1 {
    font-size: 52px;
  }

  .section-head h2,
  .cta-band h2 {
    font-size: 38px;
  }

  .logo-img {
    max-height: 160px;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }
}

@media (max-width: 640px) {
  .site-shell {
    padding-bottom: 44px;
  }

  body {
    padding: 14px;
    line-height: 1.6;
  }

  .hero-copy h1 {
    font-size: 40px;
  }

  .section-head h2,
  .cta-band h2,
  .quote-page-header h1 {
    font-size: 32px;
  }

  .carousel-slide {
    flex: 0 0 62%;
  }

  .carousel-slide img {
    height: 145px;
  }

  .lightbox-content {
    max-width: 94vw;
    margin: 8vh auto;
  }

  .lightbox-close {
    top: -14px;
    right: -8px;
    width: 38px;
    height: 38px;
    font-size: 24px;
  }

  .contact-card {
    max-width: 320px;
    padding: 14px 16px;
  }

  .contact-link {
    font-size: 13px;
  }

  .logo-img {
    max-height: 130px;
  }
}
