```css
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --paper: #f6f0e8;
  --surface: #fffdfc;
  --ink: #28221e;
  --wine: #6d3f37;
  --wine-dark: #52302b;
  --brass: #b28a52;
  --clay: #d9b9b0;
  --stone: #8d857b;
  --line: rgba(40, 34, 30, 0.2);
  --light-line: rgba(255, 253, 252, 0.27);
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "Manrope", sans-serif;
  --container: 1180px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--brass);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  color: var(--ink);
  background: var(--brass);
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-220%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(40, 34, 30, 0.1);
  background: rgba(246, 240, 232, 0.96);
  backdrop-filter: blur(12px);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header-inner {
  min-height: var(--header-height);
}

.brand {
  display: block;
  width: 138px;
}

.brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.main-nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.main-nav a {
  position: relative;
  color: rgba(40, 34, 30, 0.76);
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 1px;
  background: var(--wine);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--wine);
}

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

.header-call {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: var(--wine);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-align: right;
  text-decoration: none;
  text-transform: uppercase;
}

.header-call strong {
  margin-top: 0.16rem;
  color: var(--ink);
  font-size: 0.8rem;
  letter-spacing: 0.035em;
}

.hero {
  padding: 3.5rem 0 4.7rem;
}

.hero-grid {
  display: grid;
  gap: 2.6rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1.1rem;
  color: var(--wine);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 30px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 0.93;
}

h1 {
  max-width: 730px;
  margin-bottom: 1.55rem;
  font-size: clamp(3.5rem, 11vw, 7.4rem);
  letter-spacing: -0.06em;
}

h1 em,
h3 em {
  display: block;
  color: var(--wine);
  font-style: italic;
  font-weight: 500;
}

.hero-intro {
  max-width: 520px;
  margin-bottom: 2rem;
  color: rgba(40, 34, 30, 0.82);
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.15rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.15rem;
  min-height: 53px;
  padding: 0.76rem 1.05rem 0.76rem 1.25rem;
  border: 1px solid transparent;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.085em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button span {
  font-size: 1.15rem;
  line-height: 1;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--surface);
  background: var(--wine);
}

.button-primary:hover {
  background: var(--wine-dark);
}

.text-link,
.inline-call,
.service-link,
.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--wine);
  color: var(--wine);
}

.hero-note {
  margin: 2rem 0 0;
  color: var(--stone);
  font-size: 0.75rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 425px;
  overflow: hidden;
  background: var(--clay);
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
}

.hero-image-wrap::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(109, 63, 55, 0.42), transparent 55%),
    linear-gradient(0deg, rgba(40, 34, 30, 0.24), transparent 42%);
  content: "";
  pointer-events: none;
}

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

.root-lines {
  fill: none;
  stroke: var(--brass);
  stroke-linecap: round;
  stroke-width: 1.1;
}

.hero-lines {
  position: absolute;
  top: -28px;
  right: -10px;
  width: min(74%, 430px);
  height: 108%;
  opacity: 0.95;
  pointer-events: none;
}

.hero-label {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  display: grid;
  gap: 0.15rem;
  color: var(--surface);
}

.hero-label span {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-label strong {
  font-family: var(--display);
  font-size: 1.55rem;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.015em;
}

.intro-section {
  padding: 4.8rem 0;
  background: var(--surface);
}

.intro-layout {
  display: grid;
  gap: 2rem;
}

.section-mark {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: var(--brass);
}

.section-mark span {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.section-mark svg {
  width: 74px;
  height: 82px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.1;
}

.intro-content h2,
.section-heading h2,
.contact-intro h2 {
  max-width: 700px;
  margin-bottom: 1.5rem;
  font-size: clamp(2.85rem, 7vw, 5.15rem);
  letter-spacing: -0.05em;
}

.intro-content p:not(.eyebrow) {
  max-width: 600px;
  color: rgba(40, 34, 30, 0.81);
}

.inline-call {
  margin-top: 0.55rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--brass);
  color: var(--wine);
}

.intro-photo {
  margin: 0;
}

.intro-photo img {
  width: 100%;
  min-height: 315px;
  object-fit: cover;
}

.intro-photo figcaption {
  padding-top: 0.65rem;
  color: var(--stone);
  font-size: 0.74rem;
  font-weight: 700;
}

.experience-section {
  position: relative;
  overflow: hidden;
  padding: 4.8rem 0;
  color: var(--surface);
  background: var(--wine);
}

.experience-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.4rem;
}

.experience-number {
  position: absolute;
  top: -0.2em;
  right: -0.08em;
  z-index: -1;
  color: rgba(246, 240, 232, 0.1);
  font-family: var(--display);
  font-size: clamp(14rem, 42vw, 32rem);
  font-weight: 500;
  letter-spacing: -0.1em;
  line-height: 0.75;
  pointer-events: none;
}

.eyebrow-light {
  color: var(--brass);
}

.experience-copy h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(2.55rem, 6vw, 4.7rem);
  letter-spacing: -0.05em;
}

.experience-details > p {
  max-width: 455px;
  margin-bottom: 1.5rem;
  color: rgba(255, 253, 252, 0.8);
  font-size: 0.93rem;
}

.highlights {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--light-line);
}

.highlights li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--light-line);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.015em;
}

.highlights li::before {
  margin-right: 0.7rem;
  color: var(--brass);
  content: "—";
}

.services-section {
  padding: 5rem 0;
}

.section-heading {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.8rem;
}

.section-heading > p {
  max-width: 330px;
  margin: 0;
  color: var(--stone);
  font-size: 0.91rem;
}

.services-index {
  border-top: 1px solid var(--line);
}

.service-item {
  display: grid;
  gap: 1rem;
  padding: 1.9rem 0 2.2rem;
  border-bottom: 1px solid var(--line);
}

.service-number {
  color: var(--brass);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.service-title-wrap {
  position: relative;
  width: fit-content;
  max-width: 100%;
}

.service-item h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(2.6rem, 8vw, 5.2rem);
  letter-spacing: -0.06em;
}

.service-item h3 em {
  display: inline;
}

.root-underline {
  position: absolute;
  right: 2%;
  bottom: -0.32rem;
  width: 72%;
  height: 16px;
  border-top: 1px solid var(--brass);
  border-radius: 50%;
  transform: rotate(-2deg);
  transform-origin: left;
  transition: width 240ms ease, transform 240ms ease;
}

.service-item:hover .root-underline,
.service-item:focus-within .root-underline {
  width: 99%;
  transform: rotate(1deg);
}

.service-copy {
  max-width: 480px;
}

.service-copy p {
  margin-bottom: 1rem;
  color: rgba(40, 34, 30, 0.76);
  font-size: 0.92rem;
}

.service-link {
  color: var(--wine);
}

.gallery-section {
  padding: 0 0 5rem;
}

.gallery-layout {
  display: grid;
  gap: 1.1rem;
}

.gallery-layout figure {
  margin: 0;
  overflow: hidden;
}

.gallery-layout img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-main {
  min-height: 300px;
}

.gallery-copy {
  position: relative;
  min-height: 255px;
  padding: 2rem;
  overflow: hidden;
  background: var(--clay);
}

.gallery-statement {
  position: relative;
  z-index: 1;
  max-width: 400px;
  margin: 0;
  font-size: clamp(2.25rem, 6vw, 3.65rem);
  letter-spacing: -0.055em;
}

.gallery-lines {
  position: absolute;
  right: -18px;
  bottom: -16px;
  width: 86%;
  opacity: 0.9;
}

.gallery-detail {
  min-height: 230px;
}

.contact-section {
  padding: 5rem 0;
  color: var(--surface);
  background: var(--ink);
}

.contact-layout {
  display: grid;
  gap: 3rem;
}

.contact-intro h2 {
  margin-bottom: 1.2rem;
}

.contact-intro > p:not(.eyebrow) {
  max-width: 465px;
  color: rgba(255, 253, 252, 0.74);
}

.contact-phone {
  display: block;
  width: fit-content;
  margin: 2rem 0 1.25rem;
  color: var(--surface);
  font-family: var(--display);
  font-size: clamp(2.7rem, 8vw, 5rem);
  letter-spacing: -0.05em;
  line-height: 0.9;
  text-decoration: none;
}

.contact-phone span {
  color: var(--brass);
}

.contact-links {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.65rem;
}

.whatsapp-link {
  width: fit-content;
  color: var(--brass);
}

.contact-email {
  width: fit-content;
  color: rgba(255, 253, 252, 0.82);
  font-size: 0.82rem;
  overflow-wrap: anywhere;
}

address {
  margin: 0;
  color: rgba(255, 253, 252, 0.76);
  font-size: 0.9rem;
  font-style: normal;
}

address strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--surface);
}

.contact-form {
  padding: 1.5rem;
  color: var(--ink);
  background: var(--surface);
}

.form-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.7rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.form-heading p {
  margin: 0 0 0.25rem;
  font-family: var(--display);
  font-size: 2rem;
  letter-spacing: -0.04em;
  line-height: 1;
}

.form-heading div > span {
  display: block;
  color: var(--stone);
  font-size: 0.75rem;
  line-height: 1.5;
}

.form-arrow {
  color: var(--wine);
  font-size: 1.5rem;
  line-height: 1;
}

.field {
  margin-bottom: 1.2rem;
}

.field label {
  display: block;
  margin-bottom: 0.35rem;
  color: rgba(40, 34, 30, 0.8);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.55rem 0;
  border: 0;
  border-bottom: 1px solid rgba(40, 34, 30, 0.35);
  border-radius: 0;
  outline: none;
  background: transparent;
  color: var(--ink);
}

.field textarea {
  min-height: 115px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--wine);
}

.button-gold {
  width: 100%;
  color: var(--ink);
  background: var(--brass);
}

.button-gold:hover {
  background: #c39b60;
}

.site-footer {
  padding: 1.3rem 0;
  color: rgba(255, 253, 252, 0.72);
  background: #1d1916;
}

.footer-brand {
  width: 96px;
  filter: grayscale(1) brightness(3);
}

.site-footer p,
.site-footer > a {
  margin: 0;
  font-size: 0.68rem;
}

.site-footer > a {
  color: var(--brass);
  font-weight: 700;
  text-decoration: none;
}

@media (min-width: 700px) {
  .container {
    width: min(calc(100% - 4rem), var(--container));
  }

  .hero {
    padding: 5.3rem 0 6.5rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.76fr);
    align-items: center;
    gap: 3.5rem;
  }

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

  .intro-layout {
    grid-template-columns: 0.2fr minmax(0, 1fr) minmax(255px, 0.68fr);
    align-items: start;
    gap: 3rem;
  }

  .intro-photo img {
    min-height: 430px;
  }

  .experience-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(250px, 0.64fr);
    align-items: end;
    gap: 4rem;
  }

  .experience-details {
    grid-column: 2;
  }

  .section-heading {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.4fr);
    align-items: end;
  }

  .service-item {
    grid-template-columns: 0.12fr minmax(0, 1.15fr) minmax(220px, 0.62fr);
    align-items: start;
    gap: 1.45rem;
    padding: 2.5rem 0 2.8rem;
  }

  .gallery-layout {
    grid-template-columns: 1.3fr 0.78fr;
    grid-template-rows: 1fr 0.72fr;
  }

  .gallery-main {
    grid-row: span 2;
    min-height: 590px;
  }

  .gallery-copy,
  .gallery-detail {
    min-height: 0;
  }

  .contact-layout {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.76fr);
    gap: 5rem;
    align-items: start;
  }

  .contact-form {
    padding: 2.15rem;
  }
}

@media (min-width: 950px) {
  :root {
    --header-height: 86px;
  }

  .main-nav {
    display: flex;
  }

  .hero-grid {
    gap: 5rem;
  }

  .intro-section,
  .services-section,
  .contact-section {
    padding: 7rem 0;
  }

  .experience-section {
    padding: 6.3rem 0;
  }

  .gallery-section {
    padding-bottom: 7rem;
  }
}

@media (max-width: 380px) {
  .brand {
    width: 112px;
  }

  .header-call {
    font-size: 0.58rem;
  }

  .header-call strong {
    font-size: 0.69rem;
  }

  .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
```