:root {
  --bg-main: #f8f3ef;
  --bg-soft: #f3ebe5;
  --surface: #fff9f5;
  --surface-strong: #ffffff;
  --text-main: #2d2522;
  --text-soft: #5d4e4a;
  --accent: #b56f79;
  --accent-deep: #8f4d58;
  --line: #e2d2c9;
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow: 0 18px 45px rgba(102, 72, 61, 0.13);
  --container: 1160px;
  --header-height: 78px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text-main);
  font-family: "Trebuchet MS", "Gill Sans", "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(181, 111, 121, 0.18), transparent 30%),
    radial-gradient(circle at 92% 0%, rgba(219, 186, 159, 0.22), transparent 24%),
    linear-gradient(180deg, #fffdfb 0%, var(--bg-main) 18%, #f9f4ef 100%);
}

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

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

.container {
  width: min(100% - 2.5rem, var(--container));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: var(--surface-strong);
  padding: 0.7rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  z-index: 1000;
}

.section-padding {
  padding: clamp(3.5rem, 5vw, 6rem) 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 249, 245, 0.95) 0%, rgba(243, 235, 229, 0.88) 100%);
  border-top: 1px solid rgba(226, 210, 201, 0.55);
  border-bottom: 1px solid rgba(226, 210, 201, 0.55);
}

.section-kicker {
  margin: 0 0 0.8rem;
  font-size: 0.83rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
  font-weight: 600;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: #2c1f1b;
  font-family: Didot, "Bodoni MT", "Palatino Linotype", "Book Antiqua", serif;
  line-height: 1.16;
  letter-spacing: 0.015em;
}

h1 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 5vw, 3.7rem);
  max-width: 18ch;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.55rem, 3.3vw, 2.45rem);
}

h3 {
  margin-bottom: 0.6rem;
  font-size: clamp(1.16rem, 2.2vw, 1.45rem);
}

p {
  margin: 0 0 1rem;
  color: var(--text-soft);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.25rem;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff7f2;
  background: linear-gradient(135deg, var(--accent) 0%, #aa5f6a 55%, #8d4650 100%);
  box-shadow: 0 10px 28px rgba(142, 76, 89, 0.3);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(135deg, #c07883 0%, #9f5560 55%, #7e3f48 100%);
}

.btn-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: #4c3a36;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: #cfb7aa;
  background: #fffaf6;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background-color 0.25s ease, backdrop-filter 0.25s ease, border-color 0.25s ease;
}

.site-header.scrolled {
  background: rgba(249, 242, 236, 0.92);
  backdrop-filter: blur(10px);
  border-color: rgba(210, 189, 178, 0.75);
}

.header-content {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  min-width: 0;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(180, 134, 117, 0.38);
  box-shadow: 0 10px 24px rgba(152, 109, 93, 0.2);
}

.brand span {
  font-family: Didot, "Bodoni MT", "Palatino Linotype", serif;
  font-size: 1.26rem;
  color: #2d1f1b;
  white-space: nowrap;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.main-nav a {
  position: relative;
  padding: 0.6rem 0.85rem;
  border-radius: 999px;
  font-size: 0.92rem;
  color: #4e3d39;
}

.main-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.32rem;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.main-nav a:not(.btn):hover::after,
.main-nav a:not(.btn):focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  margin-left: 0.3rem;
  padding-inline: 1rem;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  color: #3e2f2b;
  border-radius: 14px;
  padding: 0.58rem 0.68rem 0.52rem;
  line-height: 1;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 4px;
  background: #4b3632;
  margin: 0.18rem 0;
}

.menu-label {
  width: auto !important;
  height: auto !important;
  margin: 0.35rem 0 0 !important;
  font-size: 0.72rem;
  background: none !important;
}

.hero {
  padding-top: clamp(2rem, 4vw, 3.2rem);
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.4rem, 3vw, 2.7rem);
  align-items: center;
}

.hero-subtitle {
  max-width: 54ch;
  font-size: clamp(1.02rem, 1.6vw, 1.14rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.55rem 0 1.45rem;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points li {
  border: 1px solid rgba(197, 174, 163, 0.68);
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  background: rgba(255, 255, 255, 0.58);
  color: #56423d;
  font-size: 0.88rem;
}

.hero-visual {
  position: relative;
  min-height: min(80vw, 620px);
  display: grid;
  align-items: stretch;
}

.hero-main-image {
  margin: 0;
  border-radius: 34px 34px 120px 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(225, 205, 192, 0.7);
}

.hero-main-image img {
  height: 100%;
  object-fit: cover;
}

.hero-side-image {
  position: absolute;
  width: clamp(125px, 24vw, 220px);
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(220, 198, 186, 0.8);
  box-shadow: 0 14px 24px rgba(98, 74, 66, 0.24);
}

.hero-side-image img {
  height: 100%;
  object-fit: cover;
}

.hero-side-image.top {
  top: 4%;
  left: -8%;
  aspect-ratio: 4/5;
}

.hero-side-image.bottom {
  right: -5%;
  bottom: 6%;
  aspect-ratio: 1/1;
}

.section-head {
  max-width: 70ch;
  margin-bottom: 1.8rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  margin: 0;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(111, 84, 75, 0.09);
}

.service-card img {
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
}

.service-card h3,
.service-card p {
  padding-inline: 1rem;
}

.service-card h3 {
  margin: 1rem 0 0.45rem;
}

.service-card p {
  margin-bottom: 1rem;
  font-size: 0.96rem;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.9fr) 1.1fr;
  gap: 1.3rem;
  align-items: center;
}

.about-image {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(220, 197, 185, 0.74);
}

.about-image img {
  aspect-ratio: 4/5;
  object-fit: cover;
}

.portfolio {
  position: relative;
}

.portfolio-head {
  margin-bottom: 1.35rem;
}

.portfolio-filters {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  margin-bottom: 1rem;
  scrollbar-width: thin;
}

.portfolio-filter {
  border: 1px solid rgba(193, 169, 157, 0.85);
  background: rgba(255, 255, 255, 0.78);
  color: #4d3b36;
  border-radius: 999px;
  padding: 0.48rem 0.82rem;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.portfolio-filter:hover,
.portfolio-filter:focus-visible {
  border-color: #ba8a7f;
}

.portfolio-filter.is-active {
  background: linear-gradient(135deg, #b56f79 0%, #8d4650 100%);
  color: #fff;
  border-color: transparent;
}

.portfolio-immersive {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.portfolio-featured {
  background: var(--surface-strong);
  border: 1px solid rgba(220, 196, 184, 0.85);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.portfolio-featured-button {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
}

.portfolio-featured-button img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.portfolio-featured-button:hover img,
.portfolio-featured-button:focus-visible img {
  transform: scale(1.03);
}

.portfolio-caption {
  padding: 0.95rem 1rem 1.05rem;
}

.portfolio-label {
  margin: 0 0 0.32rem;
  font-family: Didot, "Bodoni MT", "Palatino Linotype", serif;
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  color: #2d201c;
}

.portfolio-caption p:last-child {
  margin: 0;
}

.portfolio-slider-wrap {
  background: rgba(255, 250, 246, 0.85);
  border: 1px solid rgba(220, 198, 187, 0.78);
  border-radius: 22px;
  padding: 0.8rem 0.8rem 0.55rem;
}

.portfolio-slider-controls {
  display: flex;
  justify-content: flex-end;
  gap: 0.48rem;
  margin-bottom: 0.55rem;
}

.portfolio-arrow {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  border: 1px solid rgba(191, 165, 152, 0.82);
  background: rgba(255, 255, 255, 0.85);
  color: #513f39;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}

.portfolio-slider {
  display: flex;
  gap: 0.72rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.45rem;
}

.portfolio-card {
  flex: 0 0 min(70%, 300px);
  border: 1px solid rgba(207, 184, 172, 0.88);
  border-radius: 18px;
  overflow: hidden;
  padding: 0;
  background: #fff;
  cursor: zoom-in;
  scroll-snap-align: start;
  box-shadow: 0 10px 24px rgba(108, 84, 75, 0.12);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.portfolio-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.portfolio-card:hover img,
.portfolio-card:focus-visible img {
  transform: scale(1.05);
}

.portfolio-card.is-active {
  border-color: #b56f79;
  transform: translateY(-1px);
}

.portfolio-card[hidden] {
  display: none !important;
}

.portfolio-note {
  margin: 0.35rem 0 0;
  font-size: 0.86rem;
  color: #6b5550;
}

.portfolio-lightbox[hidden] {
  display: none !important;
}

.portfolio-lightbox {
  position: fixed;
  inset: 0;
  z-index: 260;
}

.portfolio-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 22, 20, 0.74);
  backdrop-filter: blur(4px);
}

.portfolio-lightbox-panel {
  position: absolute;
  inset: clamp(0.7rem, 2vw, 1.35rem);
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-lightbox-figure {
  margin: 0;
  width: min(100%, 1080px);
  max-height: 100%;
  background: #181212;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 239, 231, 0.24);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.45);
}

.portfolio-lightbox-figure img {
  width: 100%;
  max-height: min(72vh, 820px);
  object-fit: contain;
  background: #181212;
}

.portfolio-lightbox-figure figcaption {
  padding: 0.85rem 1rem 1.05rem;
  background: linear-gradient(180deg, rgba(36, 27, 24, 0.94) 0%, rgba(24, 18, 18, 0.98) 100%);
}

.portfolio-lightbox-figure .portfolio-label {
  color: #f8e8dd;
}

.portfolio-lightbox-figure figcaption p {
  color: #ebd7cb;
  margin: 0;
}

.portfolio-lightbox-close,
.portfolio-lightbox-nav {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(242, 223, 214, 0.4);
  background: rgba(29, 22, 21, 0.82);
  color: #fff1e9;
  cursor: pointer;
}

.portfolio-lightbox-close {
  top: max(0.8rem, env(safe-area-inset-top));
  right: max(0.8rem, env(safe-area-inset-right));
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  font-size: 1.4rem;
  line-height: 1;
}

.portfolio-lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 999px;
  font-size: 1.5rem;
  line-height: 1;
}

.portfolio-lightbox-nav.prev {
  left: max(0.6rem, env(safe-area-inset-left));
}

.portfolio-lightbox-nav.next {
  right: max(0.6rem, env(safe-area-inset-right));
}

body.lightbox-open {
  overflow: hidden;
}

.zone-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: center;
}

.zone-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.62rem;
}

.zone-list li {
  padding: 0.56rem 0.84rem;
  border-radius: 999px;
  border: 1px solid rgba(188, 165, 152, 0.8);
  background: rgba(255, 255, 255, 0.65);
  font-size: 0.94rem;
}

.hours-card {
  max-width: 760px;
  padding: clamp(1.2rem, 4vw, 2rem);
  border-radius: 26px;
  background: linear-gradient(145deg, #fffdfa 0%, #f8ebe4 100%);
  border: 1px solid rgba(223, 199, 187, 0.88);
  box-shadow: var(--shadow);
}

.hours-time {
  margin: 0;
  font-size: clamp(1.4rem, 4vw, 2rem);
  color: #3c2a25;
  font-family: Didot, "Bodoni MT", "Palatino Linotype", serif;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 1.2rem;
  align-items: stretch;
}

.contact-main,
.contact-image {
  background: var(--surface-strong);
  border-radius: 26px;
  border: 1px solid rgba(220, 199, 188, 0.8);
  box-shadow: var(--shadow);
}

.contact-main {
  padding: clamp(1.2rem, 3vw, 2rem);
}

.contact-main p:last-of-type {
  margin-bottom: 0;
}

.contact-main a {
  color: #7f4150;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.contact-actions {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
}

.contact-image {
  overflow: hidden;
}

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

.site-footer {
  background: #2f2522;
  color: #f2e5dc;
  padding: 2.4rem 0;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.footer-main h2,
.footer-legal h3 {
  color: #fff2eb;
}

.footer-main h2 {
  margin-bottom: 0.8rem;
  font-size: 1.6rem;
}

.footer-main p {
  color: #ecdad0;
  margin-bottom: 0.45rem;
}

.footer-main a {
  color: #f9d6df;
}

.footer-legal h3 {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.footer-legal ul {
  margin: 0;
  padding-left: 1rem;
}

.footer-legal li {
  margin-bottom: 0.32rem;
  color: #efdcd2;
}

.floating-call {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 120;
  background: linear-gradient(135deg, var(--accent) 0%, #914d59 100%);
  color: #fff;
  border-radius: 999px;
  padding: 0.75rem 1rem;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(77, 39, 47, 0.32);
  border: 1px solid rgba(255, 238, 228, 0.35);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 980px) {
  .portfolio-immersive {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    align-items: stretch;
  }

  .portfolio-featured-button img {
    aspect-ratio: 4 / 3;
  }

  .portfolio-slider-wrap {
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .portfolio-slider {
    flex: 1;
    align-content: flex-start;
  }
}

@media (max-width: 1080px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-card {
    flex-basis: min(62%, 280px);
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 72px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1.25rem;
    left: 1.25rem;
    flex-direction: column;
    align-items: stretch;
    padding: 0.7rem;
    border-radius: 16px;
    border: 1px solid rgba(214, 194, 183, 0.95);
    background: rgba(255, 250, 247, 0.96);
    box-shadow: 0 18px 34px rgba(95, 71, 63, 0.17);
    transform: scale(0.98) translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: auto;
  }

  .main-nav a {
    width: 100%;
    padding: 0.72rem 0.78rem;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 0.2rem;
    text-align: center;
  }

  .hero-layout,
  .zone-layout,
  .about-layout,
  .contact-layout,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
    margin-top: 0.4rem;
  }

  .hero-main-image {
    max-height: 600px;
  }

  .hero-side-image {
    display: none;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 1.35rem, var(--container));
  }

  .brand span {
    font-size: 1.07rem;
  }

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

  .portfolio-card {
    flex-basis: 78%;
  }

  .portfolio-slider-controls {
    display: none;
  }

  .portfolio-lightbox-panel {
    inset: 0.45rem;
  }

  .portfolio-lightbox-nav {
    width: 2.2rem;
    height: 2.2rem;
    font-size: 1.35rem;
  }

  .floating-call {
    right: 0.68rem;
    left: 0.68rem;
    text-align: center;
    padding: 0.82rem 1rem;
  }
}
