:root {
  --color-primary: #ab8f67;
  --color-secondary: #947653;
  --color-accent: #f6d7e5;
  --color-light: #f4ecdf;
  --color-muted: #d9cbaf;
  --color-dark: #3f2e23;
  --color-text: #3f3026;
  --color-background: #fffdf8;
  --shadow-soft: 0 18px 40px rgba(63, 46, 35, 0.12);
  --shadow-card: 0 12px 30px rgba(149, 118, 83, 0.12);
  --max-width: 1100px;
  --header-height: 110px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--color-text);
  background: var(--color-background);
  line-height: 1.6;
}

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

p {
  margin: 0 0 1.15rem;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.75rem;
  font-family: "Playfair Display", "Times New Roman", serif;
  color: var(--color-dark);
}

h1 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  line-height: 1.15;
}

h2 {
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  line-height: 1.2;
}

h3 {
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
}

ul {
  margin: 0;
  padding-left: 1.2rem;
}

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

.container {
  width: min(92%, var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 248, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(171, 143, 103, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 1.5rem;
}

.brand img {
  height: 90px;
  width: auto;
}

.site-nav {
  position: relative;
  display: flex;
  align-items: center;
}

.site-menu {
  display: flex;
  gap: 1.75rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.site-menu a {
  position: relative;
  padding-block: 0.25rem;
}

.site-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.site-menu a:hover::after,
.site-menu a:focus-visible::after {
  transform: scaleX(1);
}

.nav-flags {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1.25rem;
  padding-left: 1.25rem;
  border-left: 1px solid rgba(171, 143, 103, 0.25);
}

.nav-flags .flag {
  font-size: 1.4rem;
  cursor: default;
  transition: transform 0.2s ease;
}

.nav-flags .flag:hover {
  transform: scale(1.15);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}

.nav-toggle:focus-visible {
  outline: 2px dashed var(--color-primary);
  outline-offset: 4px;
}

.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  margin-bottom: 5px;
  background: var(--color-dark);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle-bar:last-child {
  margin-bottom: 0;
}

.hero {
  position: relative;
  padding-block: clamp(6rem, 10vw, 8rem);
  background: linear-gradient(135deg, rgba(246, 215, 229, 0.35), rgba(255, 233, 243, 0.9));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(171, 143, 103, 0.18), transparent 55%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(3rem, 4vw, 5rem);
  align-items: center;
}

.hero-copy {
  max-width: 520px;
}

.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: 1rem;
}

.hero-copy p {
  font-size: 1.05rem;
  color: rgba(63, 48, 38, 0.85);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-block: 1.8rem 1.2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border-radius: 999px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  padding: 0.95rem 1.8rem;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  cursor: pointer;
}

.btn.primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.btn.primary:hover,
.btn.primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(148, 118, 83, 0.3);
}

.btn.outline {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: rgba(255, 255, 255, 0.72);
}

.btn.outline:hover,
.btn.outline:focus-visible {
  color: var(--color-secondary);
  border-color: var(--color-secondary);
  background: rgba(255, 255, 255, 0.9);
}

.btn.full {
  width: 100%;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  color: var(--color-secondary);
  font-size: 0.9rem;
  font-weight: 600;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(171, 143, 103, 0.22);
}

.hero-visual {
  position: relative;
  min-height: 360px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background:
    linear-gradient(180deg, rgba(246, 215, 229, 0.35), rgba(148, 118, 83, 0.55)),
    url("7.png") center/cover no-repeat;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 22px;
}

.feature-section {
  padding-block: clamp(5.5rem, 9vw, 7rem);
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(2.5rem, 4vw, 4rem);
  align-items: center;
}

.feature-copy {
  font-size: 1.05rem;
  color: rgba(63, 48, 38, 0.88);
}

.feature-copy .text-link {
  font-weight: 600;
  color: var(--color-secondary);
  text-decoration: underline;
  text-decoration-color: rgba(148, 118, 83, 0.4);
}

.feature-copy .text-link:hover {
  text-decoration-color: var(--color-secondary);
}

.feature-media {
  position: relative;
}

.feature-media .image-carousel {
  width: 100%;
}

.feature-media .carousel-slide {
  border-radius: 24px;
  border: 6px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-soft);
}

.mosaic-collage {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(6, 60px);
  gap: 10px;
  padding: 10px;
}

.mosaic-item {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(148, 118, 83, 0.18);
  border: 4px solid rgba(255, 255, 255, 0.85);
  transition: transform 0.3s ease, box-shadow 0.3s ease, z-index 0s;
  position: relative;
  z-index: 1;
}

.mosaic-item:hover {
  transform: scale(1.08);
  box-shadow: 0 24px 48px rgba(148, 118, 83, 0.35);
  z-index: 10;
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.mosaic-item:hover img {
  transform: scale(1.08);
}

.mosaic-location {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.2rem 1rem 0.9rem;
  background: linear-gradient(to top, rgba(63, 46, 35, 0.9), rgba(63, 46, 35, 0.6) 60%, transparent);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mosaic-item:hover .mosaic-location {
  opacity: 1;
  transform: translateY(0);
}

/* First item - large, top left */
.mosaic-item:nth-child(1) {
  grid-column: 1 / 7;
  grid-row: 1 / 4;
}

/* Second item - tall, top right */
.mosaic-item:nth-child(2) {
  grid-column: 7 / 10;
  grid-row: 1 / 5;
}

/* Third item - small, far right top */
.mosaic-item:nth-child(3) {
  grid-column: 10 / 13;
  grid-row: 1 / 3;
}

/* Fourth item - small, far right middle */
.mosaic-item:nth-child(4) {
  grid-column: 10 / 13;
  grid-row: 3 / 5;
}

/* Fifth item - wide, bottom left */
.mosaic-item:nth-child(5) {
  grid-column: 1 / 5;
  grid-row: 4 / 7;
}

/* Sixth item - medium, bottom center-right */
.mosaic-item:nth-child(6) {
  grid-column: 5 / 9;
  grid-row: 4 / 7;
}

/* Seventh item (if exists) - fills remaining */
.mosaic-item:nth-child(7) {
  grid-column: 9 / 13;
  grid-row: 5 / 7;
}

@media (max-width: 768px) {
  .mosaic-collage {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(8, 50px);
  }
  
  .mosaic-item:nth-child(1) {
    grid-column: 1 / 4;
    grid-row: 1 / 4;
  }
  
  .mosaic-item:nth-child(2) {
    grid-column: 4 / 7;
    grid-row: 1 / 3;
  }
  
  .mosaic-item:nth-child(3) {
    grid-column: 4 / 7;
    grid-row: 3 / 5;
  }
  
  .mosaic-item:nth-child(4) {
    grid-column: 1 / 4;
    grid-row: 4 / 6;
  }
  
  .mosaic-item:nth-child(5) {
    grid-column: 4 / 7;
    grid-row: 5 / 7;
  }
  
  .mosaic-item:nth-child(6) {
    grid-column: 1 / 7;
    grid-row: 7 / 9;
  }
}

.about-section {
  padding-block: clamp(5.5rem, 9vw, 7.5rem);
  background: linear-gradient(180deg, rgba(244, 236, 223, 0.65), rgba(255, 255, 255, 0.85));
}

.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.section-heading p {
  margin-bottom: 0.75rem;
}

.about-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.about-grid {
  display: grid;
  gap: 1.5rem;
  font-size: 1.05rem;
  color: rgba(63, 48, 38, 0.88);
}

.about-creator {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(171, 143, 103, 0.18);
  border-radius: 22px;
  box-shadow: var(--shadow-card);
  padding: 2.2rem;
  text-align: center;
}

.about-creator img {
  width: min(220px, 70%);
  border-radius: 18px;
  box-shadow: 0 16px 30px rgba(171, 143, 103, 0.22);
  margin: 0 auto 1.5rem;
}

.about-name {
  margin: 0 0 0.35rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-secondary);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.about-name span {
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(63, 48, 38, 0.6);
}

.about-quote {
  margin: 0;
  font-style: italic;
  color: rgba(63, 48, 38, 0.7);
}

.about-gallery {
  margin-top: clamp(1.6rem, 3.5vw, 2.4rem);
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.about-gallery figure {
  margin: 0;
  width: clamp(140px, 22vw, 200px);
}

.about-gallery img {
  width: 100%;
  border-radius: 18px;
  border: 4px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 12px 24px rgba(171, 143, 103, 0.18);
  object-fit: cover;
}

.services-section {
  padding-block: clamp(5rem, 8vw, 7rem);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.service-card {
  padding: 2.2rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(171, 143, 103, 0.18);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-card h3 {
  color: var(--color-secondary);
}

.service-card ul {
  list-style: none;
  padding-left: 0;
  display: grid;
  gap: 0.55rem;
  font-size: 0.95rem;
  color: rgba(63, 48, 38, 0.75);
}

.service-card li::before {
  content: "•";
  color: var(--color-accent);
  font-weight: 700;
  margin-right: 0.5rem;
}

.process-section {
  padding-block: clamp(5rem, 8vw, 7rem);
  background: linear-gradient(120deg, rgba(246, 215, 229, 0.35), rgba(244, 236, 223, 0.65));
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.process-step {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 1.9rem;
  border: 1px solid rgba(171, 143, 103, 0.18);
  box-shadow: var(--shadow-card);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-secondary);
  font-weight: 700;
  margin-bottom: 1rem;
}

.testimonial-section {
  padding-block: clamp(5rem, 8vw, 7rem);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  margin: 0;
  padding: 2rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(171, 143, 103, 0.16);
  box-shadow: var(--shadow-card);
}

.testimonial-card blockquote {
  margin: 0;
  font-style: italic;
  color: rgba(63, 48, 38, 0.85);
  line-height: 1.65;
}

.testimonial-card figcaption {
  margin-top: 1.4rem;
  font-weight: 600;
  color: var(--color-secondary);
}

.image-carousel,
.carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.image-carousel {
  margin-top: clamp(1.8rem, 4vw, 2.6rem);
}

.carousel-viewport {
  flex: 1;
  overflow-x: auto;
  scrollbar-width: none;
}

.carousel-viewport::-webkit-scrollbar {
  display: none;
}

.carousel-track {
  display: flex;
  align-items: stretch;
  gap: clamp(1rem, 3vw, 2.5rem);
  padding-inline: 0.5rem;
}

.carousel-slide {
  flex: 0 0 auto;
  min-width: clamp(220px, 30vw, 320px);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(171, 143, 103, 0.16);
  box-shadow: 0 18px 36px rgba(148, 118, 83, 0.12);
  overflow: hidden;
}

.brand-carousel .carousel-track {
  gap: clamp(1.2rem, 3vw, 2rem);
}

.image-carousel.wide .carousel-slide {
  min-width: clamp(260px, 42vw, 460px);
}

.image-carousel.compact .carousel-slide {
  min-width: clamp(180px, 26vw, 240px);
}

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

.carousel-control {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(171, 143, 103, 0.3);
  background: rgba(255, 255, 255, 0.85);
  color: var(--color-secondary);
  font-size: 1.25rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 10px 22px rgba(171, 143, 103, 0.12);
}

.carousel-control:hover,
.carousel-control:focus-visible {
  transform: translateY(-2px);
  border-color: var(--color-secondary);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 32px rgba(171, 143, 103, 0.18);
}

.brand-section {
  padding-block: clamp(4.5rem, 7vw, 6.5rem);
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.95), rgba(246, 215, 229, 0.4));
}

.brand-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.brand-heading h2 {
  margin: 0;
  max-width: 540px;
}

.brand-carousel {
  margin-top: clamp(1.8rem, 4vw, 2.4rem);
  overflow: hidden;
}

.brand-item {
  min-width: clamp(200px, 24vw, 320px);
  padding: 1.8rem 2.2rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(171, 143, 103, 0.18);
  display: grid;
  place-items: center;
  box-shadow: 0 18px 36px rgba(148, 118, 83, 0.12);
}

.brand-item img {
  height: 90px;
  max-width: 200px;
  width: auto;
  object-fit: contain;
  filter: grayscale(0.1);
  opacity: 0.88;
}

.brand-item img:hover {
  filter: none;
  opacity: 1;
}

.contact-copy .image-carousel {
  margin-top: clamp(1.4rem, 3vw, 2rem);
}

.contact-map {
  margin-top: clamp(1.4rem, 3vw, 2rem);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(148, 118, 83, 0.15);
  border: 4px solid rgba(255, 255, 255, 0.85);
}

.contact-map iframe {
  display: block;
}

.contact-email {
  margin-top: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: center;
}

.contact-email span {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-dark);
}

.contact-email a {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-secondary);
  text-decoration: none;
  transition: color 0.25s ease;
}

.contact-email a:hover {
  color: var(--color-primary);
}

.gallery-section {
  padding-block: clamp(5rem, 8vw, 7.5rem);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(246, 215, 229, 0.35));
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(4, 100px);
  gap: 12px;
  margin-top: 2rem;
}

.gallery-mosaic .mosaic-item:nth-child(1) {
  grid-column: 1 / 5;
  grid-row: 1 / 3;
}

.gallery-mosaic .mosaic-item:nth-child(2) {
  grid-column: 5 / 8;
  grid-row: 1 / 4;
}

.gallery-mosaic .mosaic-item:nth-child(3) {
  grid-column: 8 / 13;
  grid-row: 1 / 3;
}

.gallery-mosaic .mosaic-item:nth-child(4) {
  grid-column: 1 / 5;
  grid-row: 3 / 5;
}

.gallery-mosaic .mosaic-item:nth-child(5) {
  grid-column: 5 / 8;
  grid-row: 4 / 5;
}

.gallery-mosaic .mosaic-item:nth-child(6) {
  grid-column: 8 / 13;
  grid-row: 3 / 5;
}

@media (max-width: 768px) {
  .gallery-mosaic {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(6, 80px);
  }
  
  .gallery-mosaic .mosaic-item:nth-child(1) {
    grid-column: 1 / 4;
    grid-row: 1 / 3;
  }
  
  .gallery-mosaic .mosaic-item:nth-child(2) {
    grid-column: 4 / 7;
    grid-row: 1 / 3;
  }
  
  .gallery-mosaic .mosaic-item:nth-child(3) {
    grid-column: 1 / 7;
    grid-row: 3 / 4;
  }
  
  .gallery-mosaic .mosaic-item:nth-child(4) {
    grid-column: 1 / 4;
    grid-row: 4 / 6;
  }
  
  .gallery-mosaic .mosaic-item:nth-child(5) {
    grid-column: 4 / 7;
    grid-row: 4 / 6;
  }
  
  .gallery-mosaic .mosaic-item:nth-child(6) {
    grid-column: 1 / 7;
    grid-row: 6 / 7;
  }
}

.contact-section {
  padding-block: clamp(5.5rem, 9vw, 8rem);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(2rem, 5vw, 3rem);
  align-items: start;
}

.contact-highlights {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
  font-weight: 600;
  color: var(--color-secondary);
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 2.4rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(171, 143, 103, 0.16);
  box-shadow: var(--shadow-card);
}

.contact-form label {
  display: grid;
  gap: 0.55rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-secondary);
}

.contact-form input,
.contact-form textarea {
  border-radius: 12px;
  border: 1px solid rgba(148, 118, 83, 0.25);
  padding: 0.85rem 0.95rem;
  font: inherit;
  background: rgba(255, 255, 255, 0.96);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(246, 215, 229, 0.45);
  outline: none;
}

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

.site-footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.8);
  padding-block: 2.5rem 2rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-brand img {
  height: 80px;
  width: auto;
}

.footer-brand p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer-links {
  display: flex;
  gap: 3rem;
}

.footer-links h4 {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  font-family: "Playfair Display", "Times New Roman", serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffe8f3;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #ffffff;
  text-decoration: underline;
}

.footer-note {
  width: 100%;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 900px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .footer-links {
    flex-wrap: wrap;
    gap: 2rem;
  }
  
  .footer-note {
    text-align: left;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 900px) {
  .nav-flags {
    position: absolute;
    top: calc(var(--header-height) - 0.5rem);
    right: 70px;
    margin: 0;
    padding: 0.5rem 0.75rem;
    border-left: none;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(171, 143, 103, 0.12);
  }

  .site-menu {
    position: absolute;
    top: calc(var(--header-height) - 0.5rem);
    right: 0;
    width: min(320px, 85vw);
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 18px;
    padding: 1.25rem;
    gap: 0.95rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(171, 143, 103, 0.12);
    transform: scale(0.95);
    opacity: 0;
    visibility: hidden;
    transform-origin: top right;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .site-nav.open .site-menu {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }

  .nav-toggle {
    display: inline-flex;
  }

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

  .site-nav.open .nav-toggle-bar:nth-child(2) {
    opacity: 0;
  }

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

@media (max-width: 720px) {
  .hero {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-visual::after {
    inset: 18px;
  }

  .feature-media img {
    margin-inline: auto;
  }

  .brand-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-controls {
    align-self: flex-end;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 0.98rem;
  }

  .service-card,
  .process-step,
  .testimonial-card,
  .contact-form {
    padding: 1.7rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
}

/* =====================================================
   COMPREHENSIVE MOBILE STYLES
   ===================================================== */

/* Mobile-first improvements for small screens */
@media (max-width: 480px) {
  :root {
    --header-height: 70px;
  }

  /* Typography scaling for mobile */
  h1 {
    font-size: 1.5rem;
    line-height: 1.25;
  }

  h2 {
    font-size: 1.25rem;
    line-height: 1.3;
  }

  h3 {
    font-size: 1.05rem;
  }

  .eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
  }

  /* Header mobile */
  .brand img {
    height: 55px;
  }

  .header-inner {
    padding-inline: 0.5rem;
  }

  .nav-flags {
    top: calc(var(--header-height) - 0.25rem);
    right: 55px;
    padding: 0.35rem 0.5rem;
  }

  .nav-flags .flag {
    font-size: 1.1rem;
  }

  .site-menu {
    top: calc(var(--header-height) - 0.25rem);
    width: 92vw;
    padding: 1rem;
    gap: 0.75rem;
  }

  .site-menu a {
    font-size: 0.9rem;
    padding: 0.5rem 0;
    display: block;
    border-bottom: 1px solid rgba(171, 143, 103, 0.1);
  }

  .site-menu li:last-child a {
    border-bottom: none;
  }

  /* Hero mobile */
  .hero {
    padding-block: 2.5rem 3rem;
  }

  .hero-content {
    gap: 2rem;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-copy p {
    font-size: 0.95rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-actions .btn {
    width: 100%;
    padding: 1rem 1.5rem;
  }

  .hero-visual {
    min-height: 240px;
    border-radius: 18px;
  }

  .hero-visual::after {
    inset: 12px;
    border-radius: 14px;
  }

  /* Container adjustments */
  .container {
    width: min(94%, var(--max-width));
  }

  /* Section spacing */
  .feature-section,
  .about-section,
  .services-section,
  .process-section,
  .testimonial-section,
  .gallery-section,
  .contact-section {
    padding-block: 3rem;
  }

  .brand-section {
    padding-block: 2.5rem;
  }

  /* Section headings */
  .section-heading {
    margin-bottom: 2rem;
    text-align: left;
  }

  /* Feature section */
  .feature-copy {
    font-size: 0.95rem;
  }

  .feature-copy .text-link {
    display: inline-block;
    margin-top: 0.5rem;
  }

  /* Mosaic collage mobile */
  .mosaic-collage {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 100px);
    gap: 8px;
    padding: 0;
  }

  .mosaic-item {
    border-width: 2px;
    border-radius: 12px;
  }

  .mosaic-item:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
  }

  .mosaic-item:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }

  .mosaic-item:nth-child(3) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }

  .mosaic-item:nth-child(4) {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
  }

  .mosaic-item:nth-child(5) {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
  }

  .mosaic-item:nth-child(6) {
    grid-column: 1 / 3;
    grid-row: 4 / 5;
  }

  .mosaic-item:nth-child(7) {
    display: none;
  }

  .mosaic-location {
    font-size: 0.7rem;
    padding: 0.8rem 0.6rem 0.5rem;
    opacity: 1;
    transform: none;
  }

  /* About section mobile */
  .about-layout {
    gap: 1.5rem;
  }

  .about-grid {
    font-size: 0.95rem;
    gap: 1rem;
  }

  .about-creator {
    padding: 1.5rem;
    border-radius: 16px;
  }

  .about-creator img {
    width: 60%;
    max-width: 160px;
    margin-bottom: 1rem;
  }

  .about-name {
    font-size: 1rem;
  }

  /* Service cards mobile */
  .service-grid {
    gap: 1rem;
  }

  .service-card {
    padding: 1.4rem;
    border-radius: 16px;
    gap: 0.75rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }

  .service-card ul {
    font-size: 0.85rem;
    gap: 0.4rem;
  }

  /* Process section mobile */
  .process-grid {
    gap: 1rem;
  }

  .process-step {
    padding: 1.4rem;
    border-radius: 14px;
  }

  .step-number {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
  }

  .process-step h3 {
    margin-bottom: 0.5rem;
  }

  .process-step p {
    font-size: 0.9rem;
  }

  /* Testimonials mobile */
  .testimonial-grid {
    gap: 1rem;
  }

  .testimonial-card {
    padding: 1.4rem;
    border-radius: 16px;
  }

  .testimonial-card blockquote {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .testimonial-card figcaption {
    margin-top: 1rem;
    font-size: 0.9rem;
  }

  /* Carousels mobile */
  .image-carousel,
  .carousel {
    gap: 0.5rem;
  }

  .carousel-control {
    width: 36px;
    height: 36px;
    font-size: 1rem;
    flex-shrink: 0;
  }

  .carousel-track {
    gap: 0.75rem;
    padding-inline: 0.25rem;
  }

  .carousel-slide {
    min-width: 200px;
    border-radius: 14px;
  }

  .image-carousel.wide .carousel-slide {
    min-width: 260px;
  }

  /* Brand carousel mobile */
  .brand-heading {
    margin-bottom: 1.5rem;
  }

  .brand-heading h2 {
    font-size: 1.1rem;
  }

  .brand-item {
    min-width: 150px;
    padding: 1rem 1.2rem;
    border-radius: 12px;
  }

  .brand-item img {
    height: 60px;
    max-width: 140px;
  }

  /* Contact section mobile */
  .contact-grid {
    gap: 1.5rem;
  }

  .contact-copy p {
    font-size: 0.95rem;
  }

  .contact-highlights {
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.85rem;
  }

  .contact-highlights span {
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(171, 143, 103, 0.15);
  }

  .contact-map {
    border-radius: 14px;
    border-width: 3px;
  }

  .contact-map iframe {
    height: 220px;
  }

  .contact-email {
    margin-top: 0.75rem;
  }

  .contact-email a {
    font-size: 0.95rem;
  }

  .contact-form {
    padding: 1.25rem;
    border-radius: 16px;
    gap: 0.85rem;
  }

  .contact-form label {
    font-size: 0.85rem;
    gap: 0.4rem;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 0.75rem 0.85rem;
    border-radius: 10px;
    font-size: 16px; /* Prevents zoom on iOS */
  }

  .contact-form textarea {
    min-height: 100px;
  }

  .btn {
    font-size: 0.8rem;
    padding: 0.9rem 1.5rem;
  }

  /* Gallery section mobile */
  .gallery-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 100px);
  }

  .gallery-mosaic .mosaic-item:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }

  .gallery-mosaic .mosaic-item:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }

  .gallery-mosaic .mosaic-item:nth-child(3) {
    grid-column: 1 / 3;
    grid-row: 2 / 3;
  }

  .gallery-mosaic .mosaic-item:nth-child(4) {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
  }

  .gallery-mosaic .mosaic-item:nth-child(5) {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
  }

  .gallery-mosaic .mosaic-item:nth-child(6) {
    display: none;
  }

  /* Footer mobile */
  .site-footer {
    padding-block: 2rem 1.5rem;
  }

  .footer-inner {
    gap: 1.5rem;
  }

  .footer-brand {
    gap: 1rem;
  }

  .footer-brand img {
    height: 55px;
  }

  .footer-brand p {
    font-size: 0.85rem;
    max-width: 100%;
  }

  .footer-links {
    gap: 1.5rem;
    width: 100%;
  }

  .footer-links h4 {
    font-size: 0.8rem;
    margin-bottom: 0.4rem;
  }

  .footer-links a {
    font-size: 0.8rem;
  }

  .footer-note {
    padding-top: 1rem;
    font-size: 0.75rem;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .mosaic-item:hover {
    transform: none;
    box-shadow: 0 12px 28px rgba(148, 118, 83, 0.18);
  }

  .mosaic-item:hover img {
    transform: none;
  }

  .mosaic-location {
    opacity: 1;
    transform: none;
  }

  .btn.primary:hover,
  .btn.outline:hover {
    transform: none;
  }

  .carousel-control:hover {
    transform: none;
  }

  /* Make tap targets larger */
  .site-menu a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .footer-links a {
    min-height: 40px;
    display: flex;
    align-items: center;
  }
}

/* Landscape phone orientation */
@media (max-width: 812px) and (max-height: 420px) and (orientation: landscape) {
  .hero {
    padding-block: 2rem;
  }

  .hero-visual {
    min-height: 180px;
  }

  .section-heading {
    margin-bottom: 1.5rem;
  }
}