/* Reset */
/* Reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  text-rendering: optimizeSpeed;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* Theme */
@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../fonts/geist/geist-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../fonts/geist/geist-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/playfair-display/playfair-display-500-italic-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/playfair-display/playfair-display-500-italic-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Root */
:root {
  font-size: 16px;
  line-height: 1.3;
  --font-sans: "Geist", sans-serif;
  --font-serif: "Playfair Display", serif;
  --shiny-black: #252525;
  --dark-charocal: #333333;
  --bold-grey: #666666;
  --milky-way: #fffef2;
  --white-yellow: #f6f5e8;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 1rem;
  font-weight: 400;
}

p,
a {
  font-size: 1rem;
}

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

/* Body */
body {
  width: 100%;
  height: auto;
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--dark-charocal);
  background-color: var(--white-yellow);
}

/* Phone */
.phone {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.33s ease;
  pointer-events: none;
  z-index: 100;
}
.phone:hover {
  opacity: 0.75;
}
.phone__base, .phone__mask {
  position: absolute;
  top: 30px;
  left: 30px;
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}
.phone__base {
  color: var(--dark-charocal);
  pointer-events: auto;
  z-index: 100;
}
.phone__mask {
  color: var(--white-yellow);
  clip-path: inset(0 0 100% 0);
  pointer-events: none;
  z-index: 101;
}

/* Hero */
.hero {
  width: 100%;
  height: 100svh;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}
.hero__cover {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--milky-way);
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  will-change: clip-path;
  z-index: 3;
}
.hero__cover--source {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.hero__cover--heading {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--milky-way);
  font-family: var(--font-sans);
  font-size: 3rem;
  font-weight: 500;
  text-align: center;
  will-change: opacity;
  z-index: 1;
}
.hero__cover--heading em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
}
.hero__cover--overlay, .hero__cover--accent {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  will-change: opacity;
}
.hero__cover--overlay {
  background-color: var(--shiny-black);
}
.hero__cover--accent {
  background-color: var(--bold-grey);
}
.hero__services {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--white-yellow);
  padding: 0 30px;
  z-index: 0;
}
.hero__services--details {
  width: min(340px, 100%);
  min-height: 233px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  will-change: transform;
}
.hero__services--details h2 {
  display: block;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1;
}
.hero__gallery {
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.hero__gallery--source {
  height: 100%;
  flex: 1;
  position: relative;
  will-change: clip-path;
  overflow: hidden;
}
.hero__gallery--source:nth-child(1) {
  clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
}
.hero__gallery--source:nth-child(2) {
  clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
}
.hero__gallery--source img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__gallery--catchphrase {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  color: var(--white-yellow);
  text-align: center;
  transform: translate(-50%, -50%);
  font-family: var(--font-sans);
  font-size: 3rem;
  font-weight: 500;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  will-change: opacity, visibility;
}
.hero__gallery--catchphrase em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
}
.hero__gallery--catchphrase .line {
  position: relative;
  will-change: transform;
}

@media (max-width: 1024px) {
  .hero__cover--heading {
    padding: 0 30px;
    font-size: 1.5rem;
  }
  .hero__services {
    flex-direction: column;
    padding: 30px;
  }
  .hero__services--details {
    width: 100%;
    min-height: 0;
    flex: 1;
    justify-content: center;
    gap: 30px;
  }
  .hero__services--details h2 {
    font-size: 1.5rem;
  }
  .hero__gallery--source:first-child {
    display: none;
  }
  .hero__gallery--catchphrase {
    padding: 0 30px;
    font-size: 1.5rem;
  }
}
/* About */
.about {
  width: 100%;
  height: 100svh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 60px;
  padding: 0;
  background-color: var(--white-yellow);
}
.about__keywords {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 1;
}
.about__keywords .object {
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  padding: 8px 16px;
  color: var(--white-yellow);
  font-size: 1rem;
  background-color: var(--shiny-black);
  border-radius: 30px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: auto;
  z-index: 2;
  cursor: grab;
}
.about__keywords .object p {
  margin: 0;
}
.about__keywords .object:active {
  cursor: grabbing;
}
.about__name {
  position: absolute;
  top: 30px;
  right: 30px;
  pointer-events: auto;
  z-index: 2;
}
.about__details, .about__contact {
  width: 50%;
  padding: 0 30px;
  z-index: 2;
  pointer-events: auto;
}
.about__details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.about__details p {
  width: min(480px, 100%);
}
.about__contact {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.about__contact span {
  color: var(--bold-grey);
}
.about__contact--data {
  display: flex;
  flex-direction: column;
}
.about__contact--data a {
  transition: opacity 0.33s ease;
}
.about__contact--data a:hover {
  opacity: 0.75;
}

@media (max-width: 1000px) {
  .about {
    align-items: flex-start;
  }
  .about__details, .about__contact {
    width: 100%;
  }
}/*# sourceMappingURL=styles.css.map */
