:root {
  --paper: #f4f2ed;
  --paper2: #e9e6df;
  --ink: #111111;
  --muted: #77736c;
  --line: rgba(17,17,17,.15);
  --dark: #0b0b0b;
}


/* =====================================================
   RESET
===================================================== */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  background: var(--paper);
  color: var(--ink);

  font-family:
    "GFS Neohellenic",
    sans-serif;

  overflow-x: hidden;
}

body.locked {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font-family:
    "GFS Neohellenic",
    sans-serif;
}


/* =====================================================
   HEADER
===================================================== */

.site-header {
  position: fixed;

  top: 0;
  left: 0;

  width: 100%;
  height: 88px;

  padding:
    0
    4vw;

  display: flex;

  align-items: center;
  justify-content: space-between;

  z-index: 100;

  color: white;

  mix-blend-mode: difference;
}

.brand img {
  width: 135px;
}

.desktop-nav {
  display: flex;

  gap: 38px;

  font-size: 17px;
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  content: "";

  position: absolute;

  left: 0;
  right: 100%;
  bottom: -5px;

  height: 1px;

  background: currentColor;

  transition: .3s ease;
}

.desktop-nav a:hover::after {
  right: 0;
}


/* =====================================================
   MOBILE MENU
===================================================== */

.menu-toggle {
  display: none;

  width: 42px;
  height: 42px;

  padding: 10px;

  border: 0;

  background: transparent;

  cursor: pointer;
}

.menu-toggle span {
  display: block;

  height: 1px;

  background: white;

  margin: 6px 0;
}

.mobile-menu {
  display: none;
}


/* =====================================================
   HERO
===================================================== */

.hero {
  position: relative;

  height: 100svh;

  overflow: hidden;

  color: white;

  background: #111;
}

.hero-image {
  position: absolute;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,.14),
      rgba(0,0,0,.02) 55%,
      rgba(0,0,0,.48)
    );
}


/* HERO QUOTE */

.hero-content {
  position: absolute;

  inset: 0;

  z-index: 5;

  display: flex;

  align-items: flex-end;
  justify-content: center;

  padding:
    0
    30px
    200px;

  text-align: center;

  pointer-events: none;
}

.hero-quote {
  width: auto;

  max-width: 1100px;

  margin: 0;

  font-family:
    "GFS Neohellenic",
    sans-serif;

  font-size:
    clamp(36px, 3.7vw, 64px);

  font-weight: 400;

  line-height: .95;

  letter-spacing:
    -.025em;

  white-space: nowrap;

  text-shadow:
    0
    2px
    18px
    rgba(0,0,0,.28);
}

.hero-quote strong {
  font-weight: 700;
}


/* HERO FOOTER */

.hero-footer {
  position: absolute;

  left: 4vw;
  right: 4vw;

  bottom: 25px;

  z-index: 6;

  display: flex;

  justify-content: space-between;

  font-size: 13px;

  text-transform: uppercase;

  letter-spacing: .1em;
}

.hero-footer a {
  display: flex;

  gap: 18px;
}


/* =====================================================
   GENERAL SECTION HEADING
===================================================== */

.section-heading {
  display: flex;

  align-items: flex-end;

  justify-content: space-between;

  margin-bottom: 55px;
}

.section-heading > span {
  color: var(--muted);

  font-size: 11px;

  text-transform: uppercase;

  letter-spacing: .18em;
}

.section-heading h2 {
  margin: 0;

  font-size:
    clamp(52px, 7vw, 110px);

  line-height: .9;

  font-weight: 400;

  letter-spacing:
    -.045em;
}


/* =====================================================
   PROJECTS
===================================================== */

.projects-section {
  padding:
    120px
    4vw
    150px;
}

.project-cards {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0,1fr));

  gap: 18px;
}

.project-card {
  position: relative;

  width: 100%;

  height:
    min(63vw, 720px);

  max-height: 720px;

  padding: 0;

  border: 0;

  overflow: hidden;

  background: #ddd;

  cursor: pointer;

  color: white;

  text-align: left;
}

.project-card:nth-child(3),
.project-card:nth-child(4) {
  height:
    min(55vw, 650px);
}

.project-card img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform
    .8s
    cubic-bezier(.2,.7,.2,1);
}

.project-card:hover img {
  transform:
    scale(1.035);
}

.project-card-overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(0,0,0,.65),
      rgba(0,0,0,.02) 65%
    );
}

.project-card-info {
  position: absolute;

  left: 32px;
  right: 32px;
  bottom: 28px;
}

.project-card-info span {
  font-size: 12px;

  text-transform: uppercase;

  letter-spacing: .13em;

  opacity: .75;
}

.project-card-info h3 {
  margin:
    9px
    0;

  font-size:
    clamp(38px,4vw,70px);

  font-weight: 400;

  line-height: 1;
}

.project-card-info p {
  margin: 0;

  font-size: 15px;
}


/* =====================================================
   PROJECT VIEWER
===================================================== */

.project-viewer {
  display: none;

  position: relative;

  padding:
    110px
    4vw
    100px;

  background: #0c0c0c;

  color: white;

  overflow: hidden;
}

.project-viewer.open {
  display: block;
}

.project-viewer-header {
  position: relative;

  z-index: 5;

  display: flex;

  justify-content: space-between;

  align-items: flex-end;

  min-height: 125px;

  margin-bottom: 35px;
}

.project-viewer-header > div {
  padding-top: 15px;
}

.project-viewer-header span {
  color: #777;

  font-size: 11px;

  text-transform: uppercase;

  letter-spacing: .16em;
}

.project-viewer-header h2 {
  margin:
    5px
    0
    0;

  font-size:
    clamp(48px,5vw,85px);

  line-height: .9;

  font-weight: 400;

  letter-spacing:
    -.04em;
}

.close-project {
  border: 0;

  background: transparent;

  color: white;

  font-size: 18px;

  cursor: pointer;

  padding-bottom: 8px;
}


/* MAIN PROJECT IMAGE */

.main-project-image {
  position: relative;

  min-height: 520px;

  height: 72vh;

  overflow: hidden;

  border-radius: 22px;

  background: #060606;
}

.main-project-image img {
  width: 100%;
  height: 100%;

  object-fit: contain;
}


/* ARROWS */

.project-arrow {
  position: absolute;

  top: 50%;

  transform:
    translateY(-50%);

  z-index: 6;

  width: 60px;
  height: 60px;

  border:
    1px solid
    rgba(255,255,255,.25);

  border-radius: 50%;

  background:
    rgba(0,0,0,.28);

  color: white;

  font-size: 42px;

  cursor: pointer;
}

.project-prev {
  left: 22px;
}

.project-next {
  right: 22px;
}


/* THUMBNAILS */

.project-thumbnails {
  margin-top: 22px;

  display: flex;

  gap: 14px;

  overflow-x: auto;

  scroll-behavior: smooth;

  scrollbar-width: none;
}

.project-thumbnails::-webkit-scrollbar {
  display: none;
}

.project-thumb {
  flex:
    0
    0
    250px;

  height: 160px;

  padding: 0;

  border:
    2px solid
    transparent;

  border-radius: 15px;

  overflow: hidden;

  background: transparent;

  cursor: pointer;
}

.project-thumb.active {
  border-color: white;
}

.project-thumb img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}


/* =====================================================
   SERVICES
===================================================== */

.services-section {
  padding:
    110px
    4vw
    130px;
}

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

.service {
  border-bottom:
    1px solid
    var(--line);
}

.service-toggle {
  width: 100%;

  min-height: 155px;

  padding:
    24px
    0;

  display: grid;

  grid-template-columns:
    70px
    1fr
    1fr
    45px;

  align-items: center;

  border: 0;

  background: transparent;

  color: inherit;

  text-align: left;

  cursor: pointer;
}

.service-number {
  color: var(--muted);

  font-size: 11px;
}

.service-toggle h3 {
  margin: 0;

  font-size:
    clamp(42px,4.5vw,72px);

  line-height: 1;

  font-weight: 400;

  letter-spacing:
    -.04em;
}

.service-toggle p {
  margin: 0;

  max-width: 520px;

  color: var(--muted);

  font-size: 19px;

  line-height: 1.5;
}

.service-plus {
  justify-self: end;

  font-size: 37px;

  transition:
    transform
    .35s ease;
}

.service.open .service-plus {
  transform:
    rotate(45deg);
}


/* =====================================================
   SERVICE GALLERY
===================================================== */

.service-gallery {
  max-height: 0;

  overflow: hidden;

  opacity: 0;

  transition:
    max-height
    .65s
    cubic-bezier(.2,.7,.2,1),
    opacity
    .4s ease;
}

.service.open .service-gallery {
  max-height: 750px;

  opacity: 1;
}

.service-gallery-inner {
  position: relative;

  padding:
    20px
    0
    50px;
}

.service-track {
  display: flex;

  gap: 18px;

  overflow-x: auto;

  scroll-snap-type:
    x mandatory;

  scroll-behavior: smooth;

  scrollbar-width: none;
}

.service-track::-webkit-scrollbar {
  display: none;
}

.service-track img {
  flex:
    0
    0
    min(71vw, 790px);

  height: 500px;

  object-fit: cover;

  border-radius: 20px;

  scroll-snap-align: start;
}


/* ARROWS */

.service-arrow {
  position: absolute;

  top: 50%;

  transform:
    translateY(-50%);

  z-index: 10;

  width: 54px;
  height: 54px;

  border: 0;

  border-radius: 50%;

  background:
    rgba(255,255,255,.93);

  color: black;

  font-size: 37px;

  cursor: pointer;

  box-shadow:
    0
    8px
    25px
    rgba(0,0,0,.12);
}

.service-prev {
  left: 25px;
}

.service-next {
  right: 25px;
}


/* =====================================================
   STUDIO — SHORTER
===================================================== */

.studio-section {
  display: grid;

  grid-template-columns:
    1.35fr
    .65fr;

  height: 62vh;

  min-height: 560px;

  overflow: hidden;
}

.studio-photo {
  height: 100%;
}

.studio-photo img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.studio-copy {
  padding:
    4vw;

  display: flex;

  flex-direction: column;

  justify-content: flex-end;

  background: var(--paper2);
}

.studio-copy > span {
  color: var(--muted);

  font-size: 11px;

  text-transform: uppercase;

  letter-spacing: .18em;
}

.studio-copy h2 {
  margin:
    30px
    0
    20px;

  font-size:
    clamp(52px,5vw,88px);

  line-height: .9;

  font-weight: 400;

  letter-spacing:
    -.045em;
}

.studio-copy p {
  margin: 0;

  color: var(--muted);

  font-size: 19px;
}


/* =====================================================
   LOCATION
===================================================== */

.location-section {
  min-height: 72vh;

  display: grid;

  grid-template-columns:
    1.1fr
    .9fr;

  border-top:
    1px solid
    var(--line);
}

.location-content {
  padding:
    85px
    4vw;

  display: flex;

  flex-direction: column;

  justify-content: space-between;
}

.location-label {
  color: var(--muted);

  font-size: 11px;

  text-transform: uppercase;

  letter-spacing: .2em;
}

.location-address h2 {
  margin: 0;

  font-size:
    clamp(52px,6vw,105px);

  line-height: .88;

  font-weight: 400;

  letter-spacing:
    -.05em;
}

.location-address h2:nth-child(2) {
  color: #918e87;
}

.location-address h2:nth-child(3) {
  color: #b1aea7;
}

.maps-button {
  width: 285px;

  padding-bottom: 13px;

  display: flex;

  justify-content: space-between;

  border-bottom:
    1px solid
    var(--ink);

  font-size: 17px;
}


/* =====================================================
   MAP
===================================================== */

.location-map {
  position: relative;

  min-height: 520px;

  overflow: hidden;

  background: #ddd9d1;
}

.location-map iframe {
  position: relative;

  z-index: 1;

  width: 100%;
  height: 100%;

  min-height: 520px;

  border: 0;

  filter:
    grayscale(.9)
    contrast(.88)
    brightness(1.05);

  transition:
    filter
    .4s ease;
}

.location-map:hover iframe {
  filter:
    grayscale(.2)
    contrast(.92);
}


/* TEKTON CUSTOM MAP MARKER */

.tekton-map-marker {
  position: absolute;

  left: 50%;
  top: 50%;

  transform:
    translate(-50%, -100%);

  z-index: 10;

  display: flex;

  flex-direction: column;

  align-items: center;

  pointer-events: none;
}

.tekton-marker-logo {
  width: 135px;

  padding:
    13px
    18px;

  background:
    #080808;

  border-radius: 7px;

  box-shadow:
    0
    15px
    40px
    rgba(0,0,0,.28);
}

.tekton-marker-logo img {
  width: 100%;
}

.tekton-marker-point {
  width: 0;
  height: 0;

  border-left:
    10px solid transparent;

  border-right:
    10px solid transparent;

  border-top:
    15px solid #080808;
}


/* =====================================================
   CONTACT
===================================================== */

.contact-section {
  min-height: 88vh;

  padding:
    75px
    4vw
    30px;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  background:
    var(--dark);

  color: white;
}

.contact-small {
  color: #777;

  font-size: 11px;

  text-transform: uppercase;

  letter-spacing: .2em;
}

.contact-main h2 {
  margin: 0;

  font-size:
    clamp(64px,8.5vw,150px);

  line-height: .82;

  font-weight: 400;

  letter-spacing:
    -.05em;
}

.contact-main h2 em {
  color: #777;

  font-weight: 400;
}

.contact-line {
  margin-top: 45px;

  display: flex;

  align-items: center;

  gap: 24px;
}

.phone {
  display: flex;

  align-items: center;

  gap: 18px;

  font-size:
    clamp(27px,3vw,48px);
}

.phone-icon {
  width: 56px;
  height: 56px;

  display: flex;

  justify-content: center;
  align-items: center;

  border:
    1px solid
    #555;

  border-radius: 50%;

  font-size: 16px;
}


/* WHATSAPP / VIBER */

.messaging-icons {
  display: flex;

  gap: 9px;
}

.messaging-icons a {
  width: 46px;
  height: 46px;

  display: flex;

  justify-content: center;
  align-items: center;

  border:
    1px solid
    #444;

  border-radius: 50%;

  font-size: 20px;

  transition:
    .3s ease;
}

.messaging-icons a:hover {
  background: white;

  color: black;

  transform:
    translateY(-3px);
}


/* INSTAGRAM */

.instagram-contact {
  margin-top: 25px;

  width: fit-content;

  display: flex;

  align-items: center;

  gap: 13px;

  color: #999;

  font-size: 18px;

  transition:
    color
    .3s ease,
    transform
    .3s ease;
}

.instagram-icon {
  width: 42px;
  height: 42px;

  display: flex;

  justify-content: center;
  align-items: center;

  border:
    1px solid
    #444;

  border-radius: 50%;

  color: white;

  font-size: 19px;
}

.instagram-contact:hover {
  color: white;

  transform:
    translateX(4px);
}


/* FOOTER */

.contact-section footer {
  padding-top: 23px;

  display: grid;

  grid-template-columns:
    1fr
    1fr
    auto;

  align-items: center;

  border-top:
    1px solid
    #2a2a2a;

  color: #777;

  font-size: 12px;
}

.contact-section footer img {
  width: 115px;
}


/* =====================================================
   REVEAL
===================================================== */

.reveal {
  opacity: 0;

  transform:
    translateY(32px);

  transition:
    opacity
    .8s ease,
    transform
    .8s ease;
}

.reveal.visible {
  opacity: 1;

  transform: none;
}


/* =====================================================
   CUSTOM CURSOR
===================================================== */

.cursor-dot,
.cursor-ring {
  position: fixed;

  top: 0;
  left: 0;

  z-index: 2000;

  pointer-events: none;

  transform:
    translate(-50%, -50%);

  border-radius: 50%;

  mix-blend-mode: difference;
}

.cursor-dot {
  width: 5px;
  height: 5px;

  background: white;
}

.cursor-ring {
  width: 35px;
  height: 35px;

  border:
    1px solid
    white;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 900px) {

  .site-header {
    height: 72px;

    padding:
      0
      20px;
  }

  .brand img {
    width: 110px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }


  /* MOBILE MENU */

  .mobile-menu {
    position: fixed;

    inset: 0;

    z-index: 90;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding:
      30px;

    background:
      #090909;

    color: white;

    transform:
      translateY(-100%);

    transition:
      .5s ease;
  }

  .mobile-menu.open {
    transform: none;
  }

  .mobile-menu a {
    font-size:
      13vw;

    line-height: 1;
  }

  .mobile-location {
    position: absolute;

    left: 30px;
    bottom: 30px;

    color: #777;

    font-size: 12px;

    text-transform: uppercase;
  }


  /* HERO */

  .hero-content {
    padding:
      0
      20px
      52px;
  }

  .hero-quote {
    width: 95%;

    font-size:
      clamp(31px,8vw,48px);

    white-space: normal;
  }

  .hero-footer {
    left: 20px;
    right: 20px;

    bottom: 20px;
  }

  .hero-footer > span {
    display: none;
  }


  /* PROJECTS */

  .projects-section,
  .services-section {
    padding:
      85px
      20px;
  }

  .section-heading {
    align-items:
      flex-start;

    flex-direction:
      column;

    gap: 22px;
  }

  .project-cards {
    grid-template-columns:
      1fr;
  }

  .project-card,
  .project-card:nth-child(3),
  .project-card:nth-child(4) {
    height:
      65vh;

    min-height:
      480px;
  }


  /* PROJECT VIEWER */

  .project-viewer {
    padding:
      90px
      20px
      70px;
  }

  .project-viewer-header {
    min-height:
      100px;
  }

  .project-viewer-header h2 {
    font-size:
      clamp(44px,12vw,70px);
  }

  .main-project-image {
    height:
      57vh;

    min-height:
      390px;
  }

  .project-arrow {
    width: 48px;
    height: 48px;

    font-size: 34px;
  }

  .project-thumb {
    flex-basis:
      180px;

    height:
      120px;
  }


  /* SERVICES */

  .service-toggle {
    grid-template-columns:
      40px
      1fr
      35px;

    min-height:
      auto;

    padding:
      30px
      0;
  }

  .service-toggle p {
    grid-column: 2;

    margin-top: 12px;

    font-size: 17px;
  }

  .service-plus {
    grid-column: 3;

    grid-row: 1;
  }

  .service-track img {
    flex-basis:
      88vw;

    height:
      450px;
  }

  .service-arrow {
    display: none;
  }


  /* STUDIO */

  .studio-section {
    display: block;

    height: auto;

    min-height: 0;
  }

  .studio-photo {
    height:
      48vh;
  }

  .studio-copy {
    padding:
      75px
      20px;
  }


  /* LOCATION */

  .location-section {
    display: block;

    min-height: 0;
  }

  .location-content {
    min-height:
      550px;

    padding:
      75px
      20px;
  }

  .location-address h2 {
    font-size:
      11vw;
  }

  .location-map,
  .location-map iframe {
    min-height:
      480px;
  }


  /* CONTACT */

  .contact-section {
    min-height:
      82vh;

    padding:
      65px
      20px
      25px;
  }

  .contact-main h2 {
    font-size:
      14vw;
  }

  .contact-line {
    flex-direction:
      column;

    align-items:
      flex-start;
  }

  .contact-section footer {
    grid-template-columns:
      1fr
      auto;
  }

  .contact-section footer span:nth-child(2) {
    display: none;
  }


  /* CURSOR */

  .cursor-dot,
  .cursor-ring {
    display: none;
  }

}

/* =====================================================
   FIX STUDIO IMAGE — SHOW FULL PHOTO
   Paste at the VERY BOTTOM of styles.css
===================================================== */

.studio-section {
  height: auto !important;
  min-height: 0 !important;

  display: grid !important;

  grid-template-columns:
    1.35fr
    .65fr !important;

  align-items: stretch !important;
}


.studio-photo {
  height: auto !important;
  min-height: 0 !important;

  background: #e9e6df;
}


.studio-photo img {
  width: 100% !important;

  height: auto !important;

  max-height: none !important;

  object-fit: contain !important;

  object-position: center !important;

  display: block !important;
}


/* Keep right-hand studio text matching image height */

.studio-copy {
  height: 100% !important;

  min-height: 0 !important;

  display: flex !important;

  flex-direction: column !important;

  justify-content: flex-end !important;

  padding: 4vw !important;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 900px) {

  .studio-section {
    display: block !important;
  }

  .studio-photo {
    height: auto !important;
  }

  .studio-photo img {
    width: 100% !important;
    height: auto !important;

    object-fit: contain !important;
  }

  .studio-copy {
    height: auto !important;

    padding:
      65px
      20px !important;
  }

}

/* ===== INSTAGRAM - ICON + USERNAME SIDE BY SIDE ===== */

.instagram-row {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 14px !important;
}

.instagram-row .instagram-icon {
  margin: 0 !important;
  flex-shrink: 0;
}

.instagram-row .instagram-link {
  margin: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px;
  width: auto !important;
}

/* =====================================================
   FINAL INSTAGRAM FIX
===================================================== */

.instagram-row {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  width: fit-content !important;
  margin-top: 25px !important;
}

.instagram-row .instagram-contact {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;

  gap: 14px !important;

  margin: 0 !important;
  width: auto !important;

  color: #999 !important;
  text-decoration: none !important;
}

.instagram-row .instagram-icon {
  width: 42px !important;
  height: 42px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  flex-shrink: 0 !important;

  margin: 0 !important;

  border: 1px solid #444 !important;
  border-radius: 50% !important;

  color: white !important;
  font-size: 19px !important;
}

.instagram-row .instagram-link {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;

  gap: 8px !important;

  margin: 0 !important;
  padding: 0 !important;

  width: auto !important;

  color: #ffffff !important;
  font-size: 18px !important;
  line-height: 1 !important;
}

.instagram-row .instagram-contact:hover {
  opacity: 0.7;
}