@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@700;800&display=swap');

:root {
  --blue: #003b5f;
  --dark-blue: #002f4f;
  --gold: #e9ae3f;
  --text: #6f7d86;
  --light: #faf9f6;
  --border: #e8ecef;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.w {
  width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width:1250px){
  .w{
    width: 95%;
  }
}

a {
  text-decoration: none;
  color: var(--dark-blue);
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--light);
  color: var(--dark-blue);
}

.site-header {
  width: 100%;
  height: 70px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fffdfa;
  border-bottom: 1px solid var(--border);
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 800;
  text-decoration: none;
  color: #1d2d3a;
}

.logo span {
  color: var(--gold);
}

.nav {
  display: flex;
  gap: 40px;
}

.nav a {
  text-decoration: none;
  color: #7d8790;
  font-weight: 600;
  font-size: 15px;
}

.header-btn {
  background: var(--blue);
  color: #fff;
  padding: 13px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  border: 1px solid var(--border);
  border-radius: 30px;
  color: #73808a;
  font-weight: 600;
  font-size: 14px;
  background: #fff;
  margin-bottom: 35px;
}

.tag span {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(56px, 7vw, 92px);
  line-height: 0.95;
  letter-spacing: -3px;
  color: var(--dark-blue);
  margin-bottom: 28px;
}

.hero p {
  max-width: 590px;
  color: var(--text);
  font-size: 22px;
  line-height: 1.55;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
}

.btn {
  padding: 17px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
}

.btn.primary {
  background: var(--blue);
  color: #fff;
}

.btn.secondary {
  background: #fff;
  color: #263746;
  border: 1px solid var(--border);
}

.stats {
  border-top: 1px solid var(--border);
  padding-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 570px;
}

.stats span {
  display: block;
  color: #7d8790;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.stats strong {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  color: var(--dark-blue);
}

.hero-image {
  width: 100%;
}

.hero-image img {
  width: 100%;
  max-height: 690px;
  object-fit: cover;
  border-radius: 36px;
  box-shadow: 0 35px 55px rgba(0, 0, 0, 0.13);
}

/* Tablet */
@media (max-width: 900px) {
  .site-header {
    height: auto;
    padding: 22px;
    flex-wrap: wrap;
    gap: 18px;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 70px;
    gap: 50px;
  }

  .hero-image {
    order: -1;
  }

  .hero-image img {
    max-height: 560px;
  }
}

/* Mobile 320px+ */
@media (max-width: 520px) {
  .site-header {
    padding: 18px 16px;
  }

  .logo {
    font-size: 19px;
  }

  .header-btn {
    padding: 10px 16px;
    font-size: 13px;
  }

  .nav {
    gap: 16px;
  }

  .nav a {
    font-size: 13px;
  }

  .hero {
    padding: 45px 16px 60px;
  }

  .tag {
    font-size: 12px;
    margin-bottom: 24px;
  }

  .hero h1 {
    font-size: 48px;
    letter-spacing: -2px;
  }

  .hero p {
    font-size: 17px;
  }

  .hero-actions {
    flex-direction: column;
    margin-bottom: 42px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .stats {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .stats strong {
    font-size: 27px;
  }

  .hero-image img {
    border-radius: 24px;
  }
}

/* section 02 */
.about-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 28px;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 90px;
  background: #fffdfa;
}

.section-label {
  display: block;
  color: #e9ae3f;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 22px;
}

.about-left h2 {
  font-family: 'Playfair Display', serif;
  color: #002f4f;
  font-size: clamp(46px, 5.5vw, 68px);
  line-height: 1;
  letter-spacing: -2px;
  max-width: 520px;
}

.about-right {
  max-width: 690px;
}

.about-right p {
  color: #687782;
  font-size: 24px;
  line-height: 1.45;
  margin-bottom: 30px;
}

.about-right strong {
  color: #002f4f;
  font-weight: 800;
}

.about-right blockquote {
  margin-top: 42px;
  padding-left: 28px;
  border-left: 3px solid #e9ae3f;
}

.about-right blockquote span {
  display: block;
  color: #e9ae3f;
  font-size: 42px;
  line-height: 0.7;
  font-family: 'Playfair Display', serif;
  margin-bottom: 10px;
}

.about-right blockquote p {
  font-family: 'Playfair Display', serif;
  color: #002f4f;
  font-size: 28px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 14px;
}

.about-right cite {
  color: #687782;
  font-style: normal;
  font-size: 16px;
  font-weight: 600;
}

/* Tablet */
@media (max-width: 900px) {
  .about-section {
    grid-template-columns: 1fr;
    gap: 45px;
    padding: 80px 24px;
  }

  .about-left h2 {
    max-width: 100%;
  }

  .about-right {
    max-width: 100%;
  }
}

/* Mobile 320px+ */
@media (max-width: 520px) {
  .about-section {
    padding: 60px 16px;
  }

  .section-label {
    font-size: 12px;
    letter-spacing: 4px;
  }

  .about-left h2 {
    font-size: 42px;
    letter-spacing: -1.5px;
  }

  .about-right p {
    font-size: 18px;
    line-height: 1.55;
    margin-bottom: 22px;
  }

  .about-right blockquote {
    margin-top: 32px;
    padding-left: 20px;
  }

  .about-right blockquote p {
    font-size: 23px;
  }

  .about-right cite {
    font-size: 14px;
  }
}

/* section 03 */

.achievements-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 110px 28px;
  background: #faf9f6;
}

.section-heading {
  margin-bottom: 55px;
}

.section-heading h2 {
  font-family: 'Playfair Display', serif;
  color: #002f4f;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1;
  letter-spacing: -2px;
}

.achievement-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.achievement-card {
  background: #fff;
  border: 1px solid #e7ecef;
  border-radius: 22px;
  padding: 38px;
  transition: 0.3s ease;
}

.achievement-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.icon-box {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: #f2f6f8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 28px;
}

.achievement-card h3 {
  font-family: 'Playfair Display', serif;
  color: #163752;
  font-size: 34px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.achievement-card p {
  color: #6f7d86;
  font-size: 20px;
  line-height: 1.55;
  max-width: 500px;
}

/* Tablet */
@media (max-width: 900px) {
  .achievement-grid {
    grid-template-columns: 1fr;
  }

  .achievement-card {
    padding: 34px;
  }
}

/* Mobile 320px+ */
@media (max-width: 520px) {
  .achievements-section {
    padding: 70px 16px;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section-heading h2 {
    font-size: 40px;
    letter-spacing: -1px;
  }

  .achievement-grid {
    gap: 18px;
  }

  .achievement-card {
    padding: 26px;
    border-radius: 18px;
  }

  .icon-box {
    width: 48px;
    height: 48px;
    font-size: 20px;
    margin-bottom: 22px;
  }

  .achievement-card h3 {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .achievement-card p {
    font-size: 17px;
    line-height: 1.6;
  }
}

/* section 04 */

.press-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 110px 28px 120px;
  background: #fffdfa;
}

.press-list {
  border-top: 1px solid #e7ecef;
}

.press-item {
  min-height: 130px;
  padding: 28px 0;
  border-bottom: 1px solid #e7ecef;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  text-decoration: none;
}

.press-item span {
  display: block;
  color: #7d8790;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 10px;
}

.press-item h3 {
  font-family: 'Playfair Display', serif;
  color: #172d3e;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.2;
  transition: 0.3s ease;
}

.press-item strong {
  color: #65727b;
  font-size: 32px;
  font-weight: 400;
  transition: 0.3s ease;
}

.press-item:hover h3 {
  color: #006395;
}

.press-item:hover strong {
  transform: translate(5px, -5px);
  color: #006395;
}

/* Mobile 320px+ */
@media (max-width: 520px) {
  .press-section {
    padding: 70px 16px 80px;
  }

  .press-item {
    min-height: auto;
    padding: 24px 0;
    align-items: flex-start;
  }

  .press-item span {
    font-size: 12px;
  }

  .press-item h3 {
    font-size: 25px;
  }

  .press-item strong {
    font-size: 26px;
  }
}

/* section 05 */

.contact-section {
  background: #002f4f;
  color: #ffffff;
  padding-top: 110px;
}

.contact-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px 90px;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.contact-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 6vw, 92px);
  line-height: 0.95;
  letter-spacing: -3px;
  margin-bottom: 28px;
  max-width: 600px;
}

.contact-content p {
  color: rgba(255,255,255,0.7);
  font-size: 24px;
  line-height: 1.5;
  max-width: 620px;
  margin-bottom: 48px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 22px;
  font-weight: 600;
}

.contact-item span {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  font-size: 22px;
  font-weight: 700;
  transition: 0.3s ease;
}

.social-links a:hover {
  background: #ffffff;
  color: #002f4f;
}

.contact-image img {
  width: 100%;
  border-radius: 34px;
  object-fit: cover;
  box-shadow: 0 35px 70px rgba(0,0,0,0.2);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 34px 28px;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,0.45);
  font-size: 17px;
  font-weight: 600;
}

/* Tablet */
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-image {
    order: -1;
  }

  .contact-image img {
    max-height: 650px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Mobile 320px+ */
@media (max-width: 520px) {
  .contact-section {
    padding-top: 70px;
  }

  .contact-wrapper {
    padding: 0 16px 60px;
    gap: 40px;
  }

  .contact-content h2 {
    font-size: 48px;
    letter-spacing: -2px;
  }

  .contact-content p {
    font-size: 18px;
    margin-bottom: 36px;
  }

  .contact-info {
    gap: 18px;
    margin-bottom: 36px;
  }

  .contact-item {
    font-size: 16px;
    gap: 12px;
  }

  .contact-item span {
    width: 34px;
    height: 34px;
    font-size: 15px;
  }

  .social-links a {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }

  .contact-image img {
    border-radius: 24px;
  }

  .footer-bottom {
    padding: 24px 16px;
    font-size: 14px;
  }
}