@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700&display=swap");

:root {
  --color-soft-grey: #B0BEC5;
  --color-linen: #F5F5DC;
  --color-muted-blue: #78909C;
  --color-deep-charcoal: #263238;
  --color-white: #ffffff;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
  --radius-soft: 18px;
  --transition-soft: all 0.35s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(145deg, #f7f7f3, #eceff1);
  color: var(--color-deep-charcoal);
  -webkit-font-smoothing: antialiased;
  hyphens: auto;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

button,
input,
textarea {
  font-family: inherit;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.6rem;
}

.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: rgba(176, 190, 197, 0.08);
}

.section-heading {
  text-align: center;
  margin-bottom: 2.4rem;
}

.section-kicker {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--color-muted-blue);
}

.section-title {
  font-size: 1.9rem;
  margin: 0.4rem 0 0.6rem;
}

.section-subtitle {
  max-width: 38rem;
  margin: 0 auto;
  color: rgba(38, 50, 56, 0.8);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
  transition: var(--transition-soft);
}

.btn-primary {
  background: var(--color-muted-blue);
  color: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #607684;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(38, 50, 56, 0.24);
  color: var(--color-deep-charcoal);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: rgba(245, 245, 220, 0.8);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.12rem 0.7rem;
  border-radius: 999px;
  background: rgba(245, 245, 220, 0.9);
  font-size: 0.72rem;
}

.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: linear-gradient(120deg, rgba(245, 245, 220, 0.96), rgba(236, 239, 241, 0.96));
  border-bottom: 1px solid rgba(176, 190, 197, 0.4);
  padding-inline: 20px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.86rem;
  text-transform: uppercase;
}

.brand-tagline {
  font-size: 0.7rem;
  color: rgba(38, 50, 56, 0.75);
}

.nav-toggle {
  background: var(--color-muted-blue);
  color: var(--color-white);
  border-radius: 999px;
  border: none;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-soft);
  z-index: 50;
  position: relative;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: #607684;
  transform: scale(1.05);
}

.nav-toggle i {
  font-size: 1.2rem;
  transition: opacity 0.3s ease, transform 0.3s ease;
  position: absolute;
}

.nav-toggle i.fa-bars {
  opacity: 1;
  transform: rotate(0deg);
}

.nav-toggle i.fa-times {
  opacity: 0;
  transform: rotate(90deg);
}

.nav-toggle[aria-expanded="true"] i.fa-bars {
  opacity: 0;
  transform: rotate(-90deg);
}

.nav-toggle[aria-expanded="true"] i.fa-times {
  opacity: 1;
  transform: rotate(0deg);
}

.site-nav {
  position: fixed;
  inset: 0;
  background: rgba(245, 245, 220, 0.98);
  backdrop-filter: blur(20px);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 5rem 1.8rem 2rem;
  z-index: 45;
  height: max-content;
}

.site-nav::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.site-nav.open {
  transform: translateX(0);
}

.site-nav.open::before {
  opacity: 1;
  pointer-events: auto;
}

.site-nav>* {
  position: relative;
  z-index: 1;
}

.nav-list {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  font-size: 1.05rem;
}

.nav-link {
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 0;
  height: 2px;
  background: var(--color-muted-blue);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.active::after {
  width: 1.9rem;
}

.nav-meta {
  margin-top: 3rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(176, 190, 197, 0.6);
  font-size: 0.9rem;
  display: grid;
  gap: 0.5rem;
}

.nav-meta a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero {
  padding-top: 1.4rem;
}

.hero-inner {
  display: grid;
  gap: 2.4rem;
}

.hero-copy-kicker {
  margin-bottom: 0.8rem;
}

.hero-title {
  font-size: 2.1rem;
  line-height: 1.1;
  margin: 0 0 0.8rem;
}

.hero-lead {
  margin: 0 0 1.4rem;
  color: rgba(38, 50, 56, 0.8);
}

.hero-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.hero-secondary-text {
  font-size: 0.82rem;
  color: rgba(38, 50, 56, 0.8);
}

.hero-media {
  position: relative;
}

.hero-image-card {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(176, 190, 197, 0.5);
}

.hero-fabric-badge {
  position: absolute;
  left: 8%;
  bottom: 8%;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 999px;
  padding: 0.6rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
}

.hero-fabric-badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: radial-gradient(circle at 0 0, #F5F5DC 0, #B0BEC5 40%, #78909C 100%);
}

.hero-fabric-badge-text {
  font-size: 0.78rem;
}

.hero-meta {
  margin-top: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  font-size: 0.8rem;
  color: rgba(38, 50, 56, 0.8);
}

.hero-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.pill-muted {
  border-radius: 999px;
  background: rgba(176, 190, 197, 0.15);
  padding: 0.18rem 0.7rem;
  font-size: 0.75rem;
}

.services-grid {
  display: grid;
  gap: 1.4rem;
}

.service-card {
  border-radius: var(--radius-soft);
  padding: 1.5rem 1.4rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(176, 190, 197, 0.5);
  display: grid;
  gap: 0.7rem;
}

.service-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.service-title {
  font-size: 1.1rem;
  margin: 0;
}

.service-icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(120, 144, 156, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted-blue);
}

.service-copy {
  font-size: 0.9rem;
  color: rgba(38, 50, 56, 0.78);
}

.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
}

.fabric-layout {
  display: grid;
  gap: 1.8rem;
}

.fabric-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.fabric-list {
  display: grid;
  gap: 0.8rem;
}

.fabric-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.9rem;
}

.fabric-bullet {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--color-muted-blue);
  margin-top: 0.35rem;
}

.fabric-note {
  margin-top: 1.1rem;
  font-size: 0.82rem;
  color: rgba(38, 50, 56, 0.8);
}

.fabric-image-card {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(176, 190, 197, 0.6);
}

.fabric-caption {
  padding: 0.9rem 1.2rem 1.1rem;
  background: linear-gradient(135deg, rgba(245, 245, 220, 0.95), rgba(236, 239, 241, 0.96));
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
}

.guide-grid {
  display: grid;
  gap: 1.5rem;
}

.guide-steps {
  display: grid;
  gap: 0.9rem;
}

.guide-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem 0.8rem;
  align-items: flex-start;
  font-size: 0.9rem;
}

.guide-step-label {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(120, 144, 156, 0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-muted-blue);
}

.guide-note {
  font-size: 0.82rem;
  color: rgba(38, 50, 56, 0.8);
  margin-top: 0.8rem;
}

.guide-aside {
  padding: 1.2rem 1.4rem;
  border-radius: var(--radius-soft);
  background: rgba(120, 144, 156, 0.08);
  border: 1px dashed rgba(120, 144, 156, 0.7);
  font-size: 0.86rem;
}

.gallery-preview-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gallery-tile {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-label {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  padding: 0.32rem 0.8rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.56);
  color: var(--color-white);
  font-size: 0.72rem;
}

.gallery-preview-footer {
  margin-top: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.86rem;
}

.testimonial-layout {
  display: grid;
  gap: 1.6rem;
}

.testimonial-card {
  padding: 1.4rem 1.3rem;
  border-radius: var(--radius-soft);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(176, 190, 197, 0.55);
  display: grid;
  gap: 0.7rem;
}

.testimonial-stars {
  color: #f4b400;
  font-size: 0.85rem;
}

.testimonial-text {
  font-size: 0.9rem;
  color: rgba(38, 50, 56, 0.85);
}

.testimonial-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.8rem;
  font-size: 0.82rem;
}

.page-hero {
  padding: 3.5rem 0 2.2rem;
}

.page-hero-title {
  font-size: 1.9rem;
  margin: 0 0 0.6rem;
}

.page-hero-lead {
  max-width: 36rem;
  color: rgba(38, 50, 56, 0.82);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.8rem;
  margin-top: 0.6rem;
  color: rgba(38, 50, 56, 0.7);
}

.breadcrumb a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

.services-layout {
  display: grid;
  gap: 2rem;
}

.service-detail-card {
  padding: 1.7rem 1.6rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(176, 190, 197, 0.6);
  display: grid;
  gap: 0.9rem;
}

.service-detail-title {
  font-size: 1.2rem;
  margin: 0;
}

.service-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.82rem;
}

.service-detail-list {
  padding-left: 1rem;
  margin: 0.4rem 0 0.1rem;
  display: grid;
  gap: 0.24rem;
  font-size: 0.9rem;
}

.service-detail-list li {
  list-style: disc;
}

.service-detail-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  font-size: 0.85rem;
  align-items: center;
}

.gallery-page-grid {
  display: grid;
  gap: 1.1rem;
}

.gallery-page-item {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(176, 190, 197, 0.6);
}

.gallery-page-caption {
  padding: 0.9rem 1.1rem 1rem;
  background: linear-gradient(130deg, rgba(245, 245, 220, 0.96), rgba(236, 239, 241, 0.96));
  font-size: 0.86rem;
}

.contact-layout {
  display: grid;
  gap: 2rem;
}

.contact-card {
  padding: 1.7rem 1.6rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(176, 190, 197, 0.6);
}

.contact-grid {
  display: grid;
  gap: 1.2rem;
}

.contact-row {
  display: grid;
  gap: 0.3rem;
  font-size: 0.9rem;
}

.contact-label {
  font-weight: 600;
  font-size: 0.86rem;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  margin-top: 0.7rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field-label {
  font-size: 0.88rem;
  font-weight: 600;
}

.field-label span {
  color: #c62828;
}

.field-input,
.field-textarea {
  border-radius: 999px;
  border: 1px solid rgba(176, 190, 197, 0.8);
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  outline: none;
  background: rgba(255, 255, 255, 0.98);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field-textarea {
  resize: vertical;
  min-height: 120px;
  border-radius: 16px;
}

.field-input:focus-visible,
.field-textarea:focus-visible {
  border-color: var(--color-muted-blue);
  box-shadow: 0 0 0 1px rgba(120, 144, 156, 0.45);
  background: #ffffff;
}

.field-hint {
  font-size: 0.78rem;
  color: rgba(38, 50, 56, 0.7);
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.8rem;
}

.checkbox-row input {
  margin-top: 0.1rem;
}

.contact-map iframe {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.policy-layout {
  max-width: 760px;
  margin: 0 auto;
  padding-bottom: 3.5rem;
}

.policy-section {
  margin-bottom: 1.9rem;
}

.policy-section h2 {
  font-size: 1.2rem;
  margin: 0 0 0.8rem;
}

.policy-section p,
.policy-section li {
  font-size: 0.9rem;
  color: rgba(38, 50, 56, 0.9);
}

.policy-list {
  padding-left: 1.1rem;
  display: grid;
  gap: 0.3rem;
}

.policy-list li {
  list-style: disc;
}

.policy-meta {
  font-size: 0.8rem;
  color: rgba(38, 50, 56, 0.7);
}

.simple-message {
  text-align: center;
  padding: 3.6rem 1.6rem 4rem;
}

.simple-message h1 {
  font-size: 1.9rem;
  margin-bottom: 0.8rem;
}

.simple-message p {
  max-width: 420px;
  margin: 0.3rem auto;
  color: rgba(38, 50, 56, 0.85);
}

.simple-message-actions {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.site-footer {
  border-top: 1px solid rgba(176, 190, 197, 0.6);
  background: radial-gradient(circle at top left, rgba(245, 245, 220, 0.95), rgba(236, 239, 241, 0.98));
  padding: 2.1rem 0 1.5rem;
  margin-top: 3rem;
}

.footer-grid {
  display: grid;
  gap: 1.8rem;
  font-size: 0.85rem;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.footer-brand-copy {
  max-width: 220px;
  color: rgba(38, 50, 56, 0.85);
}

.footer-columns {
  display: grid;
  gap: 1.5rem;
}

.footer-column-title {
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.footer-link-list {
  display: grid;
  gap: 0.35rem;
}

.footer-link {
  text-decoration: none;
}

.footer-link:hover,
.footer-link:focus-visible {
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 1.6rem;
  border-top: 1px solid rgba(176, 190, 197, 0.5);
  padding-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(38, 50, 56, 0.7);
}

.footer-bottom a {
  text-decoration: underline;
}

.badge-soft {
  display: inline-block;
  margin-top: 1rem;
  border-radius: 999px;
  padding: 0.18rem 0.6rem;
  background: rgba(176, 190, 197, 0.16);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .section {
    padding: 4rem 0;
  }

  .gallery-preview-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .gallery-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .header-inner {
    padding: 0.8rem 0;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    transform: none;
    background: transparent;
    padding: 0;
  }

  .nav-list {
    flex-direction: row;
    align-items: center;
    gap: 1.4rem;
    font-size: 0.88rem;
  }

  .nav-meta {
    display: none;
  }

  .hero {
    padding-top: 2.4rem;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    align-items: center;
    gap: 3rem;
  }

  .hero-title {
    font-size: 2.7rem;
  }

  .hero-media {
    padding-right: 0.8rem;
  }

  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .fabric-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    align-items: center;
  }

  .guide-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    align-items: start;
  }

  .testimonial-layout {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .services-layout {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-page-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    align-items: start;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1fr);
    align-items: flex-start;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }

  .page-hero {
    padding: 4.1rem 0 2.6rem;
  }

  .section {
    padding: 4.4rem 0;
  }
}