* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  overflow-y: hidden;
  width: 100%;
  height: 100%;
}

body {
  font-family: 'Saira', sans-serif;
  background: white;
  color: #222;
  height: 100vh;
}

.wrapper {
  height: 100vh;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 40px 60px;
  max-width: 1280px;
  margin: 0 auto;
  gap: 60px;
  width: 100%;
  overflow: hidden;
}

.left {
  text-align: left;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}


.small-title {
  font-size: 60px;
  font-weight: 100;
  margin-bottom: 0px;
  color: #222;
  text-align: left;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1;
}

.big-title {
  font-size: 75px;
  font-weight: 400;
  line-height: 0.9;
  color: #C7A24D;
  letter-spacing: -4px;
  margin: 0;
  text-align: left;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.big-title:first-of-type {
  margin-bottom: 5px;
}
.desc-section {
  margin-top: 10px;
}
.desc {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.4;
  color: #222222ab;
  text-align: left;
  margin: 0;
}

.brand {
  display: flex;
  align-items: flex-start;
  justify-content: left;
  margin-top: 40px;
}

.logo {
  height: 60px;
  padding-bottom: 0;
  width: auto;
}

.brand-text {
  font-size: 12px;
  letter-spacing: 4px;
  font-weight: 300;
  text-transform: uppercase;
  color: #222;
}

.address {
  margin-top: 15px;
  text-align: left;
}

.address p {
  font-size: 14px;
  font-weight: 300;
  color: #222;
  line-height: 1.4;
  margin: 2px 0;
}

.address a {
  color: #222;
  text-decoration: none;
  transition: color 0.3s ease;
}

.address a:hover {
  color: #C7A24D;
}

.socials {
  display: flex;
  gap: 15px;
  margin-top: 15px;
  align-items: center;
}

.social-link {
  display: inline-block;
  width: 40px;
  height: 40px;
  padding: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  overflow: visible;
}

.social-link:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

.socials img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.right {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  min-width: 0;
  margin-top: 0;
}

.pencil-mobile {
  display: none;
}

.pencil {
  width: 100%;
  max-width: 475px;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* Responsive */
@media(max-width: 1440px) {
  .wrapper {
    padding: 35px 50px;
    gap: 50px;
  }
  
  .big-title {
    font-size: 65px;
    line-height: 0.9;
  }
  
  .big-title:first-of-type {
    margin-bottom: 6px;
  }
  
  .small-title {
    font-size: 50px;
  }
  
  .brand {
    margin-top: 35px;
  }
}

@media(max-width: 1024px) {
  .wrapper {
    padding: 30px 35px;
    gap: 40px;
  }

  .big-title {
    font-size: 55px;
    letter-spacing: -3px;
    line-height: 0.9;
  }
  
  .big-title:first-of-type {
    margin-bottom: 6px;
  }
  
  .small-title {
    font-size: 42px;
  }
  
  .desc {
    font-size: 18px;
  }
  
  .brand {
    margin-top: 30px;
  }
  
  .logo {
    height: 50px;
  }
  
  .pencil {
    max-width: 100%;
  }
}

@media(max-width: 768px) {
  html, body {
    overflow-y: auto;
    overflow-x: hidden;
    height: auto;
    min-height: 100vh;
  }
  
  body {
    height: auto;
    min-height: 100vh;
  }
  
  .wrapper {
    flex-direction: column;
    padding: 25px 20px;
    gap: 25px;
    align-items: flex-start;
    justify-content: flex-start;
    overflow-y: visible;
    overflow-x: hidden;
    min-height: 100vh;
    height: auto;
  }
  
  .left {
    width: 100%;
    max-width: 100%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    position: relative;
  }
  
  .right {
    display: none;
  }
  
  .pencil-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 30px 0;
    padding: 0;
  }
  
  .big-title {
    font-size: 42px;
    letter-spacing: -2px;
    line-height: 0.95;
  }
  
  .big-title:first-of-type {
    margin-bottom: 8px;
  }
  
  .small-title {
    font-size: 28px;
  }
  
  .desc {
    font-size: 16px;
  }
  
  .desc-section {
    margin-top: 12px;
  }
  
  .brand {
    margin: 0 0 15px;
  }
  
  .logo {
    height: 45px;
    max-width: 100%;
  }
  
  .address {
    margin-top: 0;
    margin-bottom: 15px;
  }
  
  .address p {
    font-size: 12px;
    word-wrap: break-word;
  }
  
  .socials {
    display: flex !important;
    margin-top: 15px;
    margin-bottom: 20px;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 10;
    width: 100%;
  }
  
  .social-link {
    display: inline-block !important;
    width: 35px;
    height: 35px;
    padding: 2px;
    overflow: visible;
    flex-shrink: 0;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 10;
  }
  
  .socials img {
    width: 100%;
    height: 100%;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 10;
  }
  
  .pencil-mobile .pencil {
    width: auto;
    max-width: 80%;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center;
    margin: 0 auto;
  }
}

@media(max-width: 480px) {
  html, body {
    overflow-y: auto;
    overflow-x: hidden;
    height: auto;
    min-height: 100vh;
  }
  
  body {
    height: auto;
    min-height: 100vh;
  }
  
  .wrapper {
    padding: 20px 15px;
    gap: 20px;
    overflow-y: visible;
    overflow-x: hidden;
    min-height: 100vh;
    height: auto;
  }
  
  .big-title {
    font-size: 32px;
    letter-spacing: -1.5px;
    line-height: 0.95;
  }
  
  .big-title:first-of-type {
    margin-bottom: 6px;
  }
  
  .small-title {
    font-size: 22px;
  }
  
  .desc {
    font-size: 14px;
  }
  
  .brand {
    margin: 0 0 12px;
  }
  
  .logo {
    height: 35px;
    max-width: 100%;
  }
  
  .address {
    margin-bottom: 15px;
  }
  
  .address p {
    font-size: 11px;
    word-wrap: break-word;
  }
  
  .socials {
    display: flex !important;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
    margin-bottom: 20px;
    align-items: center;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 10;
    width: 100%;
  }
  
  .social-link {
    display: inline-block !important;
    width: 30px;
    height: 30px;
    padding: 1.5px;
    overflow: visible;
    flex-shrink: 0;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 10;
  }
  
  .socials img {
    width: 100%;
    height: 100%;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 10;
  }
  
  .pencil-mobile {
    margin: 25px 0;
  }
  
  .pencil-mobile .pencil {
    width: auto;
    max-width: 75%;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center;
    margin: 0 auto;
  }
}

@media(max-width: 360px) {
  html, body {
    overflow-y: auto;
    overflow-x: hidden;
    height: auto;
    min-height: 100vh;
  }
  
  body {
    height: auto;
    min-height: 100vh;
  }
  
  .wrapper {
    padding: 18px 12px;
    gap: 18px;
    overflow-y: visible;
    overflow-x: hidden;
    min-height: 100vh;
    height: auto;
  }
  
  .big-title {
    font-size: 28px;
    letter-spacing: -1px;
    line-height: 0.95;
  }
  
  .big-title:first-of-type {
    margin-bottom: 5px;
  }
  
  .small-title {
    font-size: 20px;
  }
  
  .desc {
    font-size: 13px;
  }
  
  .brand {
    margin: 0 0 10px;
  }
  
  .logo {
    height: 30px;
  }
  
  .address {
    margin-bottom: 15px;
  }
  
  .address p {
    font-size: 10px;
  }
  
  .socials {
    display: flex !important;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 12px;
    margin-bottom: 20px;
    align-items: center;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 10;
    width: 100%;
  }
  
  .social-link {
    display: inline-block !important;
    width: 28px;
    height: 28px;
    padding: 1.5px;
    overflow: visible;
    flex-shrink: 0;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 10;
  }
  
  .socials img {
    width: 100%;
    height: 100%;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 10;
  }
  
  .pencil-mobile {
    margin: 20px 0;
  }
  
  .pencil-mobile .pencil {
    width: auto;
    max-width: 70%;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center;
    margin: 0 auto;
  }
}
