@import url("https://fonts.googleapis.com/css?family=Roboto:400%7CRubik:300,400,500%7CCormorant+Garamond:400,500&display=swap");

:root {
  --text: #2d2d2d;
  --muted: #9a9a9a;
  --gold: #bfa27a;
  --line: #ededed;
  --footer: #232323;
  font-family: Rubik, Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }
body { margin: 0; color: var(--text); background: #fff; font-size: 15px; line-height: 1.65; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 90px;
  display: flex;
  align-items: center;
  padding: 0 55px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 1px 18px rgba(0,0,0,.035);
}

.logo { width: 158px; flex: 0 0 auto; }
.main-nav {
  margin-left: 42px;
  display: flex;
  align-items: stretch;
  gap: 39px;
  height: 100%;
  font-family: Rubik, Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
}
.main-nav > a, .nav-item > button {
  height: 100%;
  display: inline-flex;
  align-items: center;
  border: 0;
  background: transparent;
  color: #303030;
  font: inherit;
  cursor: pointer;
}
.main-nav > a:not(.flag):not(.dot),
.nav-item > button {
  font-family: Rubik, Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.nav-item > button::after { content: "⌄"; margin-left: 7px; color: #777; font-size: 12px; }
.nav-item { position: relative; }
.dropdown {
  position: absolute;
  top: 90px;
  left: -18px;
  width: 270px;
  max-height: 72vh;
  overflow: auto;
  padding: 18px 0;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .16s ease, transform .16s ease;
}
.nav-item:hover .dropdown, .nav-item:focus-within .dropdown { opacity: 1; pointer-events: auto; transform: translateY(0); }
.dropdown a { display: block; padding: 8px 22px; color: #666; font-size: 12px; line-height: 1.35; letter-spacing: 1px; }
.dropdown a:hover { color: var(--gold); }
.flag { font-size: 12px; letter-spacing: 0; align-self: center; }
.flag.active { color: #000; font-weight: 500; }
.dot { letter-spacing: 0; }
.search-button {
  position: relative;
  width: 28px;
  height: 28px;
  margin-left: auto;
  border: 0;
  background: transparent;
}
.search-button::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1px solid #111;
  border-radius: 50%;
  top: 5px;
  left: 4px;
}
.search-button::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 1px;
  background: #111;
  transform: rotate(45deg);
  left: 17px;
  top: 19px;
}
.hamburger { display: none; margin-left: auto; border: 0; background: transparent; }
.hamburger span { display: block; width: 24px; height: 2px; margin: 5px; background: #222; }

.hero {
  position: relative;
  background: #000;
  height: 715px;
  min-height: 520px;
  overflow: hidden;
}
.hero-track {
  position: relative;
  height: 100%;
}
.hero-slide-pair {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-slide-pair.active,
.hero-slide-pair.leaving {
  opacity: 1;
}
.hero-slide-pair.active {
  pointer-events: auto;
  z-index: 2;
}
.hero-slide-pair.leaving {
  z-index: 1;
}
.hero-panel {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.hero-panel img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateY(0);
  transition: transform 1000ms cubic-bezier(.22, .61, .36, 1);
  will-change: transform;
}
.hero-slide-pair:not(.active):not(.leaving) .hero-panel-left img {
  transform: translateY(-100%);
}
.hero-slide-pair:not(.active):not(.leaving) .hero-panel-right img {
  transform: translateY(100%);
}
.hero-slide-pair.leaving .hero-panel-left img {
  transform: translateY(-100%);
}
.hero-slide-pair.leaving .hero-panel-right img {
  transform: translateY(100%);
}
.hero-slide-pair.active .hero-panel img {
  transform: translateY(0);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 34px;
  gap: 0;
}
.shop-grid.flush { max-width: none; padding: 0; }
.shop-grid.compact { padding-top: 24px; }
.product-card { position: relative; min-width: 0; overflow: hidden; background: #f8f8f8; aspect-ratio: 1; }
.product-photo, .product-photo img { width: 100%; height: 100%; }
.product-photo img { object-fit: cover; transition: transform .3s ease; }
.product-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 28px;
  text-align: center;
  background: rgba(255,255,255,.88);
  opacity: 0;
  transition: opacity .2s ease;
}
.product-card:hover .product-overlay { opacity: 1; }
.product-card:hover img { transform: scale(1.035); }
.product-overlay h3 { margin: 0 0 8px; font-size: 20px; font-weight: 400; }
.product-overlay p { margin: 0 0 18px; color: #8f8f8f; font-size: 11px; line-height: 1.45; text-transform: uppercase; }
.button { display: inline-block; padding: 10px 22px; border: 1px solid #222; color: #222; font-size: 12px; text-transform: uppercase; background: transparent; }
.button:hover { background: #222; color: #fff; }

.page { min-height: 60vh; }
.title-band { padding: 75px 34px; text-align: center; background: #f7f7f7; }
.title-band h1 { margin: 0; font-size: clamp(32px, 4vw, 54px); font-weight: 300; text-transform: uppercase; }
.intro, .content {
  max-width: 980px;
  margin: 0 auto;
  padding: 58px 34px 18px;
  color: #686868;
}
.content p, .intro p { margin: 0 0 16px; }
.empty { grid-column: 1 / -1; text-align: center; color: var(--muted); }

.about-page {
  min-height: calc(100vh - 90px);
  padding: 46px 24px 92px;
  background: #fff;
}
.about-copy {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  color: #8d8d8d;
}
.script-title {
  height: 44px;
  margin: 0 0 -12px;
  color: #d8dbe2;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
  transform: rotate(-7deg);
}
.about-copy h1 {
  margin: 0 0 24px;
  color: #000;
  font-family: Rubik, Arial, sans-serif;
  font-size: 29px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 3px;
}
.about-copy p {
  max-width: 680px;
  margin: 0 auto 3px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.28;
}

.contact-hero {
  height: 330px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  color: #fff;
  background: linear-gradient(rgba(0,0,0,.18), rgba(0,0,0,.18)), url("https://hanhospitality.com.tr/wp-content/uploads/2023/10/iletisim.jpg") center/cover no-repeat;
  text-align: center;
}
.contact-hero h1 {
  margin: 0;
  font-family: Rubik, Arial, sans-serif;
  font-size: 50px;
  font-weight: 300;
  letter-spacing: 1px;
}
.breadcrumbs {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 17px;
}
.breadcrumbs strong { font-weight: 400; }
.contact-info-band {
  padding: 107px 24px 145px;
  background: #fff9f8;
  text-align: center;
  color: #6f6f6f;
}
.contact-info-band h2 {
  margin: 0 0 24px;
  color: #222;
  font-family: Rubik, Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
}
.contact-info-band p {
  margin: 0 0 5px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 19px;
}
.contact-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 50px 34px 96px;
}
.contact-form-block {
  padding: 8px 0 0;
}
.contact-tagline {
  display: block;
  height: 42px;
  margin-bottom: -7px;
  color: #e5e5e5;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 40px;
  line-height: 1;
  transform: rotate(-6deg);
}
.contact-form-block h2 {
  margin: 0 0 5px;
  color: #222;
  font-family: Rubik, Arial, sans-serif;
  font-size: 36px;
  font-weight: 300;
}
.contact-form-block h3 {
  margin: 0 0 45px;
  color: #777;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 20px;
  font-weight: 400;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #e7e7e7;
  background: #fff;
  color: #777;
  font-family: Rubik, Arial, sans-serif;
  font-size: 13px;
  outline: none;
}
.contact-form input {
  height: 48px;
  padding: 0 18px;
}
.contact-form textarea {
  min-height: 178px;
  margin-top: 18px;
  padding: 16px 18px;
  resize: vertical;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.form-row-single {
  grid-template-columns: 1fr 1fr;
}
.submit-wrap { text-align: center; margin-top: 22px; }
.contact-form button {
  min-width: 116px;
  height: 44px;
  border: 1px solid #222;
  background: #222;
  color: #fff;
  font-family: Rubik, Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.contact-map iframe {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}

.documents-page {
  background: #fff;
  color: #222;
}
.documents-title {
  height: 240px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  text-align: center;
  background: #fff;
}
.documents-title h1 {
  margin: 0;
  font-family: Rubik, Arial, sans-serif;
  font-size: 50px;
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 1px;
}
.documents-title .breadcrumbs {
  color: #777;
}
.documents-intro {
  padding: 100px 24px 80px;
  text-align: center;
}
.documents-intro .script-title {
  margin-inline: auto;
}
.documents-intro h2 {
  margin: 0;
  font-family: Rubik, Arial, sans-serif;
  font-size: 36px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 1px;
}
.documents-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 40px 34px 92px;
}
.documents-grid figure {
  margin: 0;
  background: #f8f8f8;
}
.documents-grid img {
  width: 100%;
  height: auto;
  display: block;
}

.product-page { max-width: 1300px; margin: 0 auto; padding: 72px 34px; }
.product-detail { display: grid; grid-template-columns: minmax(280px, 610px) 1fr; gap: 58px; align-items: start; }
.gallery { background: #f7f7f7; }
.gallery img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.summary h1 { margin: 0 0 12px; font-size: clamp(32px, 4vw, 48px); font-weight: 300; }
.categories { margin-bottom: 28px; color: var(--gold); font-size: 12px; text-transform: uppercase; }
.description { color: #666; }
.description p { margin: 0 0 14px; }
.related-title { margin: 72px 0 0; text-align: center; font-size: 30px; font-weight: 300; }

.footer {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 70px;
  min-height: 612px;
  padding: 112px 16.2vw 86px;
  background: #000;
  color: #c8c8c8;
  border-bottom: 3px solid #eee;
}
.footer h2 {
  margin: 0 0 58px;
  color: #fff;
  font-family: Rubik, Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 2px;
}
.footer p {
  margin: 0 0 31px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 17px;
  line-height: 1.35;
}
.footer a:hover { color: #fff; }
.footer-contact { max-width: 370px; }
.footer-center { text-align: center; }
.footer-center img {
  width: 184px;
  margin: 0 auto 34px;
  filter: grayscale(1) brightness(.32);
  opacity: .88;
}
.footer-note {
  max-width: 370px;
  margin: 0 auto 54px !important;
  color: #d1d1d1;
  font-style: italic;
  font-size: 22px !important;
  line-height: 1.18 !important;
}
.socials {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid #444;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
}
.footer-collections { text-align: right; }
.footer-collections h2 { margin-bottom: 24px; }
.footer-collections p {
  margin: 0 0 8px;
  color: #d5d5d5;
  font-size: 18px;
}
.to-top {
  position: absolute;
  right: 56px;
  bottom: 33px;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid #4c4c4c;
  color: #8a8a8a;
  font-family: Rubik, Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
}

@media (max-width: 1100px) {
  .site-header { height: 70px; }
  .logo { width: 125px; }
  .hamburger { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    height: auto;
    max-height: calc(100vh - 70px);
    overflow: auto;
    padding: 16px 26px;
    background: #fff;
    border-top: 1px solid var(--line);
    letter-spacing: 2px;
  }
  .main-nav.open { display: block; }
  .main-nav > a, .nav-item > button { height: auto; width: 100%; padding: 13px 0; justify-content: space-between; }
  .dropdown { position: static; width: auto; max-height: none; display: none; padding: 0 0 12px 12px; border: 0; box-shadow: none; opacity: 1; pointer-events: auto; transform: none; }
  .nav-item:hover .dropdown, .nav-item:focus-within .dropdown { display: block; }
  .hero { height: 450px; min-height: 0; }
  .about-page { min-height: calc(100vh - 70px); padding-top: 38px; }
  .contact-main { grid-template-columns: 1fr; }
  .documents-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .shop-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .product-detail { grid-template-columns: 1fr; }
  .footer { grid-template-columns: 1fr; min-height: auto; padding: 64px 34px; text-align: left; }
  .footer-collections { text-align: left; }
  .to-top { right: 24px; bottom: 24px; }
}

@media (max-width: 640px) {
  .hero { height: 280px; min-height: 0; }
  .shop-grid { grid-template-columns: 1fr; padding: 38px 20px; }
  .shop-grid.flush { padding: 0; }
  .product-page { padding: 42px 20px; }
  .about-copy h1 { font-size: 24px; }
  .about-copy p { font-size: 17px; }
  .contact-hero h1 { font-size: 38px; }
  .contact-info-band { padding: 64px 20px 78px; }
  .documents-title h1 { font-size: 38px; }
  .documents-intro { padding: 64px 20px 42px; }
  .documents-grid { grid-template-columns: 1fr; padding: 28px 20px 64px; }
  .form-row, .form-row-single { grid-template-columns: 1fr; }
}
